@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("header.css");
@import url("home.css");
@import url("menu.css");
@import url("about.css");
@import url("testimonials.css");
@import url("footer.css");

:root {
  --color-primary-1: #dcdad1;
  --color-primary-2: #ad9f85;
  --color-primary-3: #98c1ba;
  --color-primary-4: #414a51;
  --color-primary-5: #ad9f85;
  --color-primary-6: #a29688;

  --color-neutral-0: #fff;
  --color-neutral-1: #1d1d1d;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-primary-1);
}

section {
  padding: 28px 8%;
}

.btn-default {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-5);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-default:hover {
  background-color: var(--color-primary-3);
}

.social-media-buttons {
  display: flex;
  gap: 18px;
}

.social-media-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  background-color: var(--color-neutral-0);
  font-size: 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-neutral-1);
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.social-media-buttons a:hover {
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: var(--color-primary-6);
  font-size: 1.563rem;
}

.section-subtitle {
  font-size: 2.1875rem;
}

/* ===== GALERIA / CARROSSEL ===== */
.galeria {
  background: #8c5a45;
  padding: 80px 5%;
  text-align: center;
}

.galeria h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 30%;
  border-radius: 16px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Setas */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -10px;
}
.next {
  right: -10px;
}

/* Bolinhas */
.dots {
  margin-top: 25px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #fff;
}

/* Responsivo */
@media (max-width: 1024px) {
  .slide {
    min-width: 45%;
  }
}

@media (max-width: 600px) {
  .slide {
    min-width: 90%;
  }
  .slide img {
    height: 300px;
  }
}

/* ===== LOCALIZAÇÃO ===== */
#location {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
}

.location-box {
  width: 100%;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#location .title {
  font-size: 36px;
}

#location .title span {
  color: var(--color-primary-5); /* ou a cor do seu tema */
}

#location .description {
  font-size: 18px;
  opacity: 0.9;
}

/* Mapa responsivo */
#location iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
  border-radius: 16px;
  border: 0;
}

/* Botões */
#location #cta_buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Redes sociais */
#location .social-media-buttons {
  justify-content: center;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  #location .title {
    font-size: 28px;
  }

  #location iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  #location {
    padding: 40px 5%;
  }

  #location .title {
    font-size: 24px;
  }

  #location iframe {
    height: 260px;
  }
}

/* ===== BOTÃO DO VÍDEO NA HOME ===== */
.btn-video {
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--color-primary-5),
    var(--color-primary-3)
  );
  color: #fff;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ===== MODAL DO VÍDEO ===== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-video {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
