/*****************************************************
 * THEME CONFIGURATION (HOTSPOT)
 *****************************************************/
:root {
    /* === Cores === */
    --color-primary: #4F423A;
    --color-secondary: #caa287;
    --color-white: #fff6ef;
    --color-detail:#f3cf98;
    --color-gray: #555;
    --color-black: #3e3e3e;

    /* === Gradientes e fundos === */
    --gradient-dark-overlay: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));

    /* === Tipografia === */
    --font-family-base: "Montserrat", sans-serif;
    --font-family-destaque: "Playfair Display", sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;

    /* === Espaçamentos === */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 5rem;

}

* {
  box-sizing: border-box;
}


section {
  scroll-margin-top: 70px; /* ajuste conforme a altura do seu header */
}

#espaco {
  scroll-margin-top: -20px; /* ajuste conforme a altura do seu header */
}

.bg-marrom {
    background-color: var(--color-primary);
}

.fundobg1 {
  background-image: url('/img/fundobg1.webp');
  background-repeat: no-repeat;         /* Impede que a imagem se repita */
  background-size: cover;               /* Faz a imagem cobrir todo o contêiner */
  background-position: left;
}

.fundobg2 {
  background-image: url('/img/fundobg2.webp');
  background-repeat: no-repeat;         /* Impede que a imagem se repita */
  background-size: cover;               /* Faz a imagem cobrir todo o contêiner */
  background-position: left;  /* Centraliza a imagem no contêiner */
}


.topbar-custom {
    background-color: var(--color-primary);
}

.btn-voltar {
    background-color: var(--color-white);  /* Fundo branco */
    border-radius: 8px;  /* Borda arredondada */
    color: transparent;  /* Texto transparente para aplicar o gradiente */
    background-image: linear-gradient(to bottom left, #ECD5B4, #836B57);  /* Gradiente no texto */
    -webkit-background-clip: text;  /* Necessário para o gradiente no texto */
    background-clip: text;  /* Para o texto, funciona no Firefox */
    border: 2px solid transparent;  /* Borda transparente para o efeito */
    padding: 10px 20px;  /* Ajuste o padding conforme necessário */
    transition: all 0.3s;  /* Transição suave */
    font-size: 18px;
}

.btn-voltar:hover {
    color: var(--color-white);  /* Texto branco no hover */
}



.btn-agendardegrade {
    background-image: linear-gradient(to bottom right, #836B57, #ECD5B4);
    border-radius: 8px;
    color: var(--color-white); /* texto branco */
    border: none; /* opcional, remove a borda padrão do Bootstrap */
    transition: all 0.3s;
    font-size: 18px;
    padding: 10px 20px; /* Ajuste o padding conforme necessário */
}

.btn-agendardegrade:hover {
    background-image: linear-gradient(to bottom left, #ECD5B4, #836B57); /* Inverte a direção no hover */
    color: var(--color-white);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .btn-agendardegrade {
        font-size: 14px;      /* um pouco maior */
        padding: 12px 26px;   /* proporcional ao tamanho maior da tela */
        border-radius: 10px;  /* opcional */
    }
}


/* Faz o carrossel ocupar toda a altura da tela */
#header-carousel,
#header-carousel .carousel-inner,
#header-carousel .carousel-item {
    height: 95vh;         /* Altura total desejada */
}

#header-carousel .carousel-item img {
    height: 95vh;         /* Faz a imagem ocupar todo o item */
    object-fit: cover;     /* Preenche sem distorcer */
    object-position: 52% center;
}

@media (max-width: 767px) {
  #header-carousel .carousel-item img {
    object-position: 83% center; /* ajuste o valor como quiser */
  }
}

/* Fonte principal apenas para o título */
.banner-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.3;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 1rem; /* tamanho menor em tablets e celulares */
  }
}


/* Destaque para a palavra "beleza" */
.text-highlight {
  background-image: linear-gradient(to bottom right, #836B57, #ECD5B4); /* Gradiente diagonal */
    -webkit-background-clip: text; /* Para Chrome e Safari */
    background-clip: text; /* Para Firefox */
    color: transparent; /* Torna o texto transparente para que o gradiente apareça */
    font-weight: bold; /* Deixe o texto mais destacado, se desejar */
    transition: all 0.3s ease; /* Transição suave */
}

.image-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity; /* mais suave */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.image-carousel img {
  flex: 0 0 auto;
  width: 80%;
  height: 500px;
  object-fit: cover;
  scroll-snap-align: center;
  border-radius: 10px;
}

h1, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
  color: var(--color-primary) !important;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--color-primary);
}


/*****************************************************
 * NOSSO ESPAÇO
 *****************************************************/

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}


/*****************************************************
 * SERVIÇOS HORIZONTAIS - MESMO FORMATO EM MOBILE
 *****************************************************/

/* Container da lista de cards: grid para desktop */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* cards lado a lado */
  gap: 20px;
  margin-top: 20px;
}

/* Card horizontal */
.service-card-horizontal {
  display: flex;
  flex-direction: row; /* sempre horizontal */
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 150px; /* altura fixa */
}

.service-card-horizontal:hover {
  transform: translateY(-5px);
}

/* Imagem do lado esquerdo */
.service-image {
  width: 40%;
  background-size: cover;
  background-position: center;
  min-height: 150px; /* garante que a imagem apareça */
}

/* Conteúdo do lado direito */
.service-content {
  width: 60%;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.service-content p {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #333;
}

.service-btn {
  display: inline-block;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  text-decoration: none;
  align-self: flex-start;
  font-weight: 400;

  /* Aplicando o gradiente no fundo do botão */
  background-image: linear-gradient(to bottom right, #836B57, #ECD5B4); /* Gradiente do fundo */
  color: #ffffff; /* Texto branco */
  background-clip: padding-box; /* Aplica o gradiente ao fundo, não ao texto */
  border: 2px solid transparent; /* Borda invisível para o efeito de gradiente no fundo */
  transition: all 0.3s ease; /* Transição suave */
}

.service-btn:hover {
  background-image: linear-gradient(to bottom left, #ECD5B4, #836B57); /* Inverte o gradiente no hover */
  color: #ffffff; /* Mantém o texto branco durante o hover */
  background-clip: padding-box; /* Aplica o gradiente ao fundo durante o hover */
  border-color: transparent; /* Borda permanece invisível */
}



/* Responsividade */
@media (max-width: 992px) {
  .service-card-horizontal {
    height: 140px;
  }

  .service-image {
    min-height: 140px;
  }
}

@media (max-width: 768px) {
  .service-card-horizontal {
    height: 130px;
  }

  .service-image {
    min-height: 130px;
  }

  .service-content h5 {
    font-size: 14px;
  }

  .service-content p {
    font-size: 12px;
  }

  .service-btn {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 576px) {
  .service-card-horizontal {
    height: 120px;
  }

  .service-image {
    min-height: 120px;
  }

  .service-content h5 {
    font-size: 13px;
  }

  .service-content p {
    font-size: 11px;
  }

  .service-btn {
    font-size: 10px;
    padding: 3px 8px;
  }
}


/*****************************************************
 * PROCEDIMENTOS
 *****************************************************/

.procedimento-banner {
  max-width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  height: 450px;
  overflow: hidden;
}

.procedimento-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}

.procedimento-info {
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--color-secondary);
  text-align: left;
}


.procedimento-info h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white)!important;
}

.procedimento-info p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}


/*****************************************************
 * ESTETICA CORPORAL
 *****************************************************/

/* Estilo para as imagens na pirâmide */
.pyramid-container {
  position: relative;
  width: 200px;  /* Ajuste conforme necessário */
  height: 300px; /* Ajuste conforme necessário */
  margin: 20px auto;
}

.pyramid-image {
  position: absolute;
  width: 170px;  /* Tamanho das imagens */
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  animation: moveImages 6s infinite ease-in-out;
  transition: transform 1s ease, opacity 1s ease; /* Para transições suaves */
}

/* Posicionamento das imagens em formato de pirâmide */
.image-1 {
  top: 50%;
  left: 50%;
  transform: translateX(-80%);
  animation-delay: 0s; /* Início imediato */
  z-index: 3; /* A imagem começa no topo */
}

.image-2 {
  top: -5%;
  left: 0;
  transform: translateX(-80%);
  animation-delay: 0s; /* Atraso para fazer o movimento circular */
  z-index: 2; /* Imagem abaixo da 1 */
}

.image-3 {
  top: -5%;
  left: 100%;
  transform: translateX(-80%);
  animation-delay: 0s; /* Atraso para o ciclo de troca */
  z-index: 1; /* Imagem começa no fundo */
}

/* Animação para o movimento das imagens e troca de lugares */
@keyframes moveImages {
  0%, 100% {
    /* Imagem 1 está no topo, imagem 2 no meio e imagem 3 no fundo */
    transform: translateX(-50%) translateY(0);
    z-index: 3; /* Garante que a imagem 1 fique no topo */
  }
  33% {
    /* Troca de lugares: a imagem 1 vai para o fundo, a 2 vai para o topo, a 3 vai para o meio */
    transform: translateX(-50%) translateY(40px);
    z-index: 2;
  }
  66% {
    /* A imagem 1 vai para o meio, a 2 vai para o fundo e a 3 vai para o topo */
    transform: translateX(-50%) translateY(-40px);
    z-index: 1;
  }
}


/*****************************************************
 * BLOG
 *****************************************************/

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-item {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding-bottom: 15px;
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item h3 {
  margin: 15px 0 8px;
  font-size: 1.1rem;
}

.blog-item p {
  font-size: 0.95rem;
  color: var(--color-gray);
  padding: 0 10px;
}

/* .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
} */

/* Responsivo */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/*****************************************************
 * FASES HORIZONTAIS
 *****************************************************/

/* Container da lista de cards */
.fase-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Card horizontal */
.fase-card-horizontal {
  display: flex;
  flex-direction: row;
  background: linear-gradient(to bottom, #836B57, #ECD5B4); /* Degradê do escuro para o claro */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 220px;
}

.fase-card-horizontal:hover {
  transform: translateY(-5px);
}

/* Imagem */
.fase-image {
  width: 50%;
  background-size: cover;
  background-position: center;
  min-height: 150px;
}

/* Conteúdo */
.fase-content {
  width: 60%;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fase-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--color-white)!important;
}

.fase-content p {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--color-white)!important;
}

/* Responsividade */
@media (max-width: 992px) {
  .fase-card-horizontal {
    height: 240px;
  }

  .fase-image {
    min-height: 140px;
  }
}

@media (max-width: 768px) {
  .fase-card-horizontal {
    height: 330px;
  }

  .fase-image {
    min-height: 130px;
  }

  .fase-content h5 {
    font-size: 14px;
  }

  .fase-content p {
    font-size: 12px;
  }

}

@media (max-width: 576px) {
  .fase-card-horizontal {
    height: 200px;
  }

  .fase-image {
    min-height: 120px;
  }

  .fase-content h5 {
    font-size: 13px;
  }

  .fase-content p {
    font-size: 11px;
  }

  .fase-btn {
    font-size: 10px;
    padding: 3px 8px;
  }
}


/*****************************************************
 *  VÍDEO
 *****************************************************/

/* Vídeo central */
.insta-video video {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  height: 300px; /* Mantendo a altura do vídeo como antes */
  background-color: #000;
}

/* Cards de diferenciais */
.insta-card {
  min-height: 250px;
  background: linear-gradient(to bottom, #836B57, #ECD5B4); /* Degradê do escuro para o claro */
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;  /* Texto branco para contraste com o fundo */
}

/* Título dentro dos cards */
.insta-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff!important;  /* Título branco para contraste */
}

/* Texto dentro dos cards */
.insta-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #fff;  /* Texto branco para contraste */
}


/* Responsividade mobile */
@media (max-width: 768px) {
  .col-md-3, .col-md-6 {
    width: 100%; /* colunas empilhadas verticalmente */
  }

  .insta-video video {
    height: 500px; /* altura reduzida no mobile */
  }

  .insta-card {
    min-height: auto; /* altura automática no mobile */
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .insta-video video {
    height: 300px;
  }

  .insta-card {
    min-height: 140px;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .insta-video video {
    height: 320px;
  }

  .insta-card {
    min-height: 150px;
  }
}

/*****************************************************
 * SERVIÇOS HORIZONTAIS - MESMO FORMATO EM MOBILE
 *****************************************************/

/* Container da lista de cards: grid fixo */
.acidos-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards por linha no desktop */
  gap: 20px;
  margin-top: 20px;
}

/* Responsividade: 2 por linha em telas médias (tablet) */
@media (max-width: 992px) {
  .acidos-list {
    grid-template-columns: repeat(3, 1fr); /* 2 cards por linha */
  }
}

/* Responsividade: 1 card por linha em telas pequenas (mobile) */
@media (max-width: 576px) {
  .acidos-list {
    grid-template-columns: repeat(2, 1fr); /* 2 cards por linha */
  }
}

/* Card vertical */
.acido-card {
  display: flex;
  flex-direction: column; /* imagem em cima, conteúdo embaixo */
  background-image: linear-gradient(to bottom right, #836B57, #ECD5B4);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%; /* garante altura igual para todos cards na mesma linha */
}

.acido-card:hover {
  transform: translateY(-5px);
}

/* Imagem do card */
.acido-image {
  width: 100%;
  height: 290px;
  background-size: cover;
  background-position: center;
}

/* Conteúdo do card */
.acido-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* garante que o conteúdo ocupe o restante do card */
}

.acido-content h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-white)!important;
}

.acido-content p {
  font-size: 13px;
  color: var(--color-white);
  line-height: 1.4;
}

/* Ajustes de altura da imagem e texto para responsividade */
@media (max-width: 992px) {
  .acido-image {
    height: 260px;
  }

  .acido-content h5 {
    font-size: 15px;
  }

  .acido-content p {
    font-size: 12px;
  }

  .acido-btn {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 576px) {
  .acido-image {
    height: 220px;
  }

  .acido-content h5 {
    font-size: 14px;
  }

  .acido-content p {
    font-size: 11px;
  }

  .acido-btn {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/*****************************************************
 * argilas
 *****************************************************/

.argilas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.argila-item {
  display: flex;
  align-items: center;
}

.argila-item img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

/* MOBILE E TABLET */
@media (max-width: 768px) {
  .argilas-grid {
    grid-template-columns: 1fr;
  }

  .argila-item {
    flex-direction: row; /* <-- mantém a imagem ao lado */
    text-align: left;
    justify-content: center;
    gap: 15px;
  }

  .argila-item img {
    width: 200px; /* menor para caber melhor */
    height: 200px;
    object-fit: cover;

  }
}



/*****************************************************
 * tendencias
 *****************************************************/
/* Fotos quadradas */
.foto-item {
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsivo */
@media (max-width: 768px) {
  .foto-item {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .foto-item {
    width: 100%;
    height: 260px;
  }
}



/*****************************************************
 * tendencia
 *****************************************************/

 /* Container do mosaico de tendências */
.tendencias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}

/* Item do mosaico */
.tendencia-item {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tendencia-item:hover {
  transform: scale(1.05);
}

/* Tamanhos diferentes */
.tendencia-item.grande {
  grid-column: span 2;
  grid-row: span 2;
}

.tendencia-item.pequena {
  grid-column: span 1;
  grid-row: span 1;
}

/* Texto abaixo do mosaico */
.tendencias-text p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
  .tendencias-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .tendencia-item.grande {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .tendencias-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .tendencia-item.grande,
  .tendencia-item.pequena {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .tendencia-item {
    height: 250px; /* garante que o mosaico apareça */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tendencia-item {
    height: 220px; /* pode ajustar o tamanho pro mobile */
  }
}

/*****************************************************
 * skincare
 *****************************************************/

 /* Imagens horizontais */
.skincare-img {
  width: 48%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.skincare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parágrafo centralizado */
.skincare-text {
  max-width: 700px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .skincare-img {
    width: 100%;
    height: 220px;
  }
}

/*****************************************************
 * skin steps
 *****************************************************/

/* Grid 2x2 */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 30px;
}

/* Item */
.step-item {
  padding: 20px;
}

/* Números grandes */
.step-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #b88c7a; /* tom suave, ajustável */
  display: block;
  margin-bottom: 10px;
}

/* Parágrafo final */
.final-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr; /* vira 1 por linha no mobile */
  }
  .step-number {
    font-size: 3rem;
  }
}

/*****************************************************
 * before-after steps
 *****************************************************/

/* Grid 2x2 */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 30px;
}

/* Item */
.before-after-item {
  padding: 20px;
}

/* Imagem dos passos */
.before-after-img {
  width: 480px;
  height: 480px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Texto final */
.before-after-final-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}

/* Tablet (tela média) — agora vira 1 coluna */
@media (max-width: 1024px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .before-after-img {
    width: 330px;
    height: 330px;
  }
}



/*****************************************************
 * FAQ E MAPA
 *****************************************************/

/* Seção FAQ com gradiente de fundo */
.faq-map-section {
  position: relative;
  background-image: linear-gradient(to bottom right, #836B57, #ECD5B4); /* Gradiente de fundo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white); /* Cor do texto */
}

.faq-map-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(255, 243, 222, 0.4); /* Overlay para dar contraste ao texto */
  z-index: 0;
}

.faq-map-section .container.position-relative {
  position: relative;
  z-index: 1; /* Conteúdo acima do overlay */
}

/* Itens da FAQ com gradiente de fundo */
.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  background-image: linear-gradient(to bottom right, #836B57, #ECD5B4); /* Gradiente de fundo */
  color: var(--color-white); /* Texto branco */
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-image 0.3s ease; /* Transição suave no hover */
}

.faq-item:hover {
  background-image: linear-gradient(to bottom left, #ECD5B4, #836B57); /* Inverte o gradiente no hover */
}

.faq-question {
  font-weight: 400;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s;
  color: var(--color-white);
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 10px;
}



/* Mapa */
.map-container iframe {
  border-radius: 20px;
  width: 100% !important;
  height: 430px;
  display: block;
  margin: 0 auto;
}

/*****************************************************
 * BOTÃO WHATSAPP
 *****************************************************/

/* Estilo para o botão flutuante */
.whatsapp-float-btn {
    position: fixed;
    bottom: 100px; /* Distância do fundo da tela */
    right: 20px;  /* Distância da lateral direita */
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    width: 60px; /* Tamanho fixo do botão */
    height: 60px; /* Tamanho fixo do botão */
    border-radius: 50%;  /* Garantir o formato redondo */
    font-size: 30px;  /* Tamanho do ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;  /* Remove o sublinhado do link */
    animation: pulse 1.5s infinite; /* Efeito de pulsação */
    z-index: 1000;
}

/* Efeito de pulsação */
@keyframes pulse {
    0% {
        transform: scale(1); /* Tamanho normal */
    }
    50% {
        transform: scale(1.1); /* Aumenta um pouco */
    }
    100% {
        transform: scale(1); /* Volta ao normal */
    }
}

/* Ícone do WhatsApp */
.whatsapp-float-btn i {
    font-size: 35px; /* Tamanho do ícone */
    color: white; /* Garante que o ícone fique sempre branco */
}

/* Garantindo que o link e ícone não sofram hover */
.whatsapp-float-btn:hover,
.whatsapp-float-btn:active {
    background-color: #25D366; /* Não altera cor no hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Não altera sombra no hover */
}

.whatsapp-float-btn:hover i,
.whatsapp-float-btn:active i {
    color: white; /* Garante que o ícone não mude de cor ao passar o mouse */
}


/*****************************************************
 * GLOBAL CLASSES
 *****************************************************/
body {
    background-color: #EFE5DC;
    overflow-x: hidden; /* Impede rolagem lateral */
}

body.blog {
  background-color: #EFE5DC;
  overflow-x: hidden; /* Impede rolagem lateral */
}

/* Back to top */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* Font weights */
.fw-medium {
    font-weight: var(--font-weight-medium);
}

/* Spacing helpers */
.mt-6 { margin-top: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-xl); }
.pt-6 { padding-top: var(--space-xl); }
.pb-6 { padding-bottom: var(--space-xl); }


/*****************************************************
 * NAVBAR
 *****************************************************/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 35px;
    padding: 25px 0;
    font-size: 14px;
    text-transform: none;
    font-weight: var(--font-weight-normal);
    outline: none;

    /* Aplicando o gradiente desejado nas letras */
    background-image: linear-gradient(to bottom right, #836B57, #fff3e1); /* Gradiente diagonal */
    -webkit-background-clip: text; /* Necessário para o efeito no Chrome e Safari */
    background-clip: text; /* Para Firefox */
    color: transparent; /* Torna o texto transparente para o gradiente aparecer */

    /* Transição suave ao passar o mouse */
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover {
    color: #fff; /* Caso queira mudar para branco ou outra cor ao passar o mouse */
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid var(--color-secondary);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*****************************************************
 * HERO / CAROUSEL (mantido como estava)
 *****************************************************/

#header-carousel,
#header-carousel .carousel-inner,
#header-carousel .carousel-item {
    height: 95vh;
}

#header-carousel .carousel-item img {
    height: 95vh;
    object-fit: cover;
    object-position: 52% center;
}

@media (max-width: 767px) {
  #header-carousel .carousel-item img {
    object-position: 83% center;
  }
}

/*****************************************************
 * CAPTION (apenas alinhamento com container)
 *****************************************************/
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    text-align: left;

    /* Zera o padding para o container alinhar com o resto do site */
    padding: 0;
}

/* Mantém SEU alinhamento lateral interno */
.carousel-caption .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/*****************************************************
 * TÍTULO – mantém exatamente como estava
 *****************************************************/
.carousel .carousel-caption h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--color-secondary);
    font-weight: 400;
}

/* Mobile */
@media (max-width: 767px) {
  .carousel .carousel-caption {
    justify-content: flex-start;
    padding-top: 2rem;
    margin-top: 0;
  }

  .carousel .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel .carousel-caption a.btn {
    margin-top: 25rem; /* MANTIDO */
  }
}

/* Tablets */
@media (min-width: 768px) {
  .carousel .carousel-caption {
    justify-content: flex-end;
    padding: 4rem 3rem; /* MANTIDO */
    margin-top: 20rem; /* MANTIDO */
  }

  .carousel .carousel-caption h1 {
    font-size: 3rem;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .carousel .carousel-caption h1 {
    font-size: 4rem;
  }
}

/* Desktop médio */
@media (min-width: 768px) and (max-width: 991px) {
  .carousel .carousel-caption {
    top: 2rem;
    bottom: auto;
    padding-top: 0;
    justify-content: flex-start;
  }

  .carousel .carousel-caption h1 {
    font-size: 3rem;
  }
}



p {
  margin-bottom: 0;
}

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px 0;
}

.footer .footer-col {
    margin-bottom: 30px; /* Espaço entre as colunas */
}

.footer .footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Links */
.footer .footer-link {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    margin-bottom: 10px;
}

/* Remover efeito de hover */
.footer .footer-link:hover {
    color: var(--color-secondary);
}

/* Alinhamento de texto à esquerda */
.footer .footer-link,
.footer .footer-title {
    text-align: left; /* Garante que o texto vai para a esquerda */
}

/* Redes sociais */
.footer .social-icons {
    margin-top: 15px;
    text-align: left; /* Alinha os ícones sociais à esquerda */
}

.footer .social-btn {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: var(--color-secondary);
    background-color: var(--color-gray);
    padding: 10px;
    border-radius: 50%;
}

/* Configurações para mobile (até 768px) */
@media (max-width: 768px) {
    .footer .footer-col {
        text-align: left; /* Alinha o conteúdo das colunas à esquerda */
        margin-bottom: 20px; /* Ajuste o espaçamento entre as colunas */
    }

    .footer .footer-title {
        margin-bottom: 20px;
    }

    /* Redes sociais continuam alinhadas à esquerda */
    .footer .social-icons {
        text-align: left;
    }

    .footer .social-btn {
        margin-bottom: 10px;
    }

    /* Manter o tamanho das colunas no mobile */
    .footer .col-lg-4, .footer .col-md-6 {
        width: 100%; /* Cada coluna ocupa 100% da largura disponível */
    }
}


/*****************************************************
 * Copyright
 *****************************************************/

.copyright {
    background: var(--color-white);
    padding: 15px 0;
    width: 100%;            /* garante que ocupe toda a largura */
    position: relative;     /* evita sobreposição */
    text-align: center;
    box-sizing: border-box; /* inclui padding no tamanho total */
    margin-top: 0;          /* remove possíveis margens extras */
}

.copyright p {
    margin: 0;              /* remove margem do <p> */
    font-size: 14px;
    color: var(--color-secondary);
}

.copyright a {
    color: var(--color-secondary);
    transition: color 0.3s;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}



/*****************************************************
 * FAIXA ANIMADA ENTRE SEÇÕES
 *****************************************************/

.secao-faixa {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-primary);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faixa {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.faixa-track {
    display: flex;
    flex-wrap: nowrap;
    /* animação agora percorre 100% da tela em vez de 50% da faixa */
    animation: scroll-horizontal 10s linear infinite;
    will-change: transform;
}

.logo {
    height: 40px;
    margin: 0 20px;
    flex-shrink: 0;
}

/* animação baseada na largura da tela */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100vw);
    }
}

/* Ajustes de velocidade por breakpoint, se quiser mais rápido em mobile */
@media (min-width: 576px) {
    .faixa-track {
        animation-duration: 12s;
    }
}

@media (min-width: 768px) {
    .faixa-track {
        animation-duration: 14s;
    }
}

@media (min-width: 1200px) {
    .faixa-track {
        animation-duration: 26s;
    }
}

/*****************************************************
 * Cookies Botão – iOS SAFE
 *****************************************************/

/* Banner */
.cookie-card {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%); /* Centraliza */
  -webkit-transform: translateX(-50%); /* Garantir compatibilidade no Safari iOS */
  background-color: rgba(39, 39, 39, 0.95);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  width: 90%;
  max-width: 360px;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 9999;  /* Certifique-se de que o banner não seja coberto por outros elementos */
  font-size: 0.8rem;

  /* 🔑 iOS FIX */
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent; /* Remover o efeito de toque padrão no iOS */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Suavizar a borda com sombra */
}

/* Texto */
.cookie-card p {
  margin-bottom: 12px;
  font-size: 13px;
}

.cookie-card a {
  color: #a9a9a9;
  text-decoration: underline;
}

/* Área dos controles */
.cookie-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Permite que os botões se ajustem em dispositivos menores */
}

/* Botões (CRÍTICO no iOS) */
.cookie-card button {
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent; /* Garantir nenhum destaque após o toque */
  font-family: 'Arial', sans-serif; /* Definir uma fonte mais compatível */
}

/* Recusar (link puro) */
.cookie-link {
  background: none;
  border: none;
  padding: 8px 16px; /* Aumentando o tamanho da área de clique */
  margin: 0;
  color: #a9a9a9;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

/* Efeito hover sobre o link de Recusar */
.cookie-link:hover {
  color: #ffffff;
}

/* Aceitar – botão com estilo */
.btn-accept {
  background-color: #9f9f9f;
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
}

/* Efeito de hover no botão de Aceitar */
.btn-accept:hover {
  background-color: #d4d4d4; /* Alterando para uma cor mais escura ao passar o mouse */
  transform: scale(1.05); /* Aumenta ligeiramente o botão */
}

/* Efeito de clique (active) no botão de Aceitar */
.btn-accept:active {
  transform: scale(0.98); /* Dá um efeito de compressão quando o botão é pressionado */
}

