
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h4, h5, h6 {
  font-family: 'Cinzel', serif;
}

p, li {
  font-family: 'Merriweather', serif;
}

button, a {
  font-family: 'Quicksand', sans-serif;
}


body {
 font-family: 'Lora', serif;
  background: linear-gradient(45deg, #ffffff 25%, #f8f8f8 50%, #ffffff 75%);
  background-size: 200% 200%;
  animation: gradientBranco 15s ease infinite;
  
   overflow-x: hidden;
}

@keyframes gradientBranco {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


  h3.text-center.mb-4 {
  font-size: 2.5rem;   /* maior tamanho para "Benefícios" */
  color: #000000;      /* preto */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h5.text-center.mb-4 {
  font-size: 1rem;     /* menor tamanho para o subtítulo */
  color: #555555;      /* cinza escuro */
  font-weight: 400;
  margin-top: 0;
}


/* Navbar fixa em altura */
#mainNav {
  background-color: transparent;
  transition: background-color 0.3s ease;
  height: 100px; /* altura fixa */
  display: flex;
  align-items: center;
}

/* Container da navbar - controla alinhamento */
#mainNav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Ajuste da logo */
#mainNav .navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
}

#mainNav .navbar-brand img {
  max-height: 90%; /* logo ocupa quase toda a altura da navbar */
  height: auto;
  width: auto;
}

/* Botão Profissionais (só no mobile) */
#mainNav .btn-profissionais {
  background-color: #0abab5;   /* Tiffany */
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}


#mainNav .btn-profissionais:hover {
  background-color: #D4AF37;
  border-color: #0abab5;
  color: #fff;
}

/* Desktop */
@media (min-width: 992px) {
  /* Links centralizados com mais espaço entre eles */
  #mainNav .navbar-nav {
    margin: 0 auto;
    gap: 32px; /* aumenta espaçamento entre links */
  }

  /* Margens extras nas laterais do container */
  #mainNav .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  /* Botão agendar mais afastado */
  #mainNav .btn-outline-light {
    margin-left: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #mainNav {
    height: 100px; /* navbar menor no mobile */
  }

  #mainNav .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* centraliza logo */
  }

  #mainNav .navbar-brand img {
    max-height: 60px; /* menor no mobile */
  }

  /* botão profissionais à esquerda */
  #mainNav .btn-profissionais {
    position: absolute;
    left: 20px;
  }

  /* botão hamburguer à direita */
  #mainNav .navbar-toggler {
    position: absolute;
    right: 20px;
  }
}


/* Navbar ao rolar */
#mainNav.scrolled-navbar {
  background-color: #0abab5 !important;
  border-bottom: 1px solid #81D8D0;
}

/* Estilo links */
.nav-link {
  color: white !important;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Linha dourada no link ativo */
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: gold;
  border-radius: 2px;
}

/* Offcanvas */
.offcanvas {
  background-color: #0abab5 !important;
}
.offcanvas-header {
  border-bottom: 1px solid #81D8D0;
}

/* Botão "Agendar Consulta" no desktop */
.btn-outline-light {
  border-radius: 0;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: #D4AF37;
  color: white;
  border-color: #D4AF37;
}

/* Barra fixa inferior (somente mobile) */
.mobile-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.40);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  z-index: 1055;
  backdrop-filter: blur(6px);
}


/* Scroll suave */
html {
  scroll-behavior: smooth;
}


.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Cor escura com opacidade */
  z-index: 0;
}

.banner-content {
  position: absolute;
  z-index: 2;
  color: white;
  padding: 20px;
}

.btn-banner {
  background-color: #0ABAB5;   /* Tiffany */
  border: 2px solid #D4AF37;   /* Dourado */
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-banner:hover {
  background-color: #D4AF37;   /* Dourado no hover */
  color: white;
  border-color: #0ABAB5;       /* Borda Tiffany */
}


/* Cor personalizada da seção */
.bg-fundo {
  background-color: #F5F5F5;
  border-top: 1px solid #ccc; 
  border-bottom: 1px solid #ccc; 
}

/* Sobre o Pilates */
.sobre-section {
  margin: 0;
  padding-top: 80px;
}

.sobre-img-wrapper {
  position: relative;
  margin-top: -100px;
  text-align: center;
}

.sobre-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border: none;

}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .sobre-img-wrapper {
    margin-top: -60px;
    padding: 0;
  }

  .sobre-img {
    max-width: 100%;
    width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 200px;
  gap: 0.5rem;
}


/* Desktop */
@media(min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
  }
  .beneficios-grid > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .beneficios-grid > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .beneficios-grid > div:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 2; /* ocupa duas linhas */
  }
  .beneficios-grid > div:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
}

.beneficio-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.beneficio-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beneficio-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  background-color: transparent; /* fundo sem cor */
  border: 2px solid white;       /* borda branca */
  color: white;                  /* texto branco */
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  box-shadow: none;              /* sem sombra */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.beneficio-btn:hover {
  background-color: #D4AF37; /* dourado */
  color: white;
  border-color: #D4AF37;
}


.professionals-section {
  position: relative;
  z-index: 0;
}

.professionals-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #0abab5; /* variação suave do Tiffany */
  z-index: -1;
}

.professionals-section {
  padding: 60px 0;
}

.professionals-section h3,
.professionals-section h5,
.professionals-section p {
  color: #fff;
}

.professionals-section .nome-profissional {
  background-color: #D4AF37;
}

/* Profissionais */
.professional-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 20px;
    border: 2px solid #ccc; /* Dourado */
}

/* Card dos profissionais */
.card-profissional {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* imagem, nome e cargo centralizados */
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center; /* centraliza título e nome */
  min-height: 480px;
  transition: transform 0.3s ease;
}

.card-profissional:hover {
  transform: translateY(-5px);
}

/* Nome e cargo */
.nome-profissional {
  background-color: #0abab5; /* Tiffany */
  color: white;
  display: inline-block;
  padding: 6px 12px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 6px;
}

.cargo {
  color: #4D4D4D;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Descrição alinhada à esquerda */
.card-profissional .descricao {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 10px;
  color: #4D4D4D;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left; /* alinha texto apenas à esquerda */
  width: 100%;
}

.card-profissional .descricao li + li {
  margin-top: 0.4rem;
}

/* Destaque para o card da proprietária */
.card-profissional.proprietaria {
  border: 3px solid #D4AF37; /* borda dourada mais visível */
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); /* sombra mais intensa */
  transform: scale(1.05); /* leve aumento de tamanho */
  z-index: 2;
}

/* Mantendo alinhamento interno */
.card-profissional.proprietaria .descricao {
  text-align: left;
}


/* === Comentários dos Clientes === */
.comentarios-section {
  background-color: #ffffff;
}

.card-comentario {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 20px;
  min-height: 250px;          /* Altura mínima padrão */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-comentario:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.icone-comentario {
  font-size: 2.5rem;
  color: #0abab5;
  margin-bottom: 10px;
}

.nome-cliente {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: #0abab5;
  margin-bottom: 12px;
}

.comentario-texto {
  font-family: 'Merriweather', serif;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 15px;
  text-align: center;
}

/* Responsivo: cards um embaixo do outro no mobile */
@media (max-width: 768px) {
  .card-comentario {
    min-height: 220px;
  }
}


    .carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}


    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-item-custom {
      flex: 0 0 20%; /* 5 imagens no desktop */
      max-width: 20%;
      height: 300px;
      cursor: pointer;
    }

    .carousel-item-custom img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 0 15px;
      cursor: pointer;
      z-index: 10;
    }

    .carousel-btn.prev {
      left: 0;
    }

    .carousel-btn.next {
      right: 0;
    }

 @media (max-width: 767px) {
  /* Ajusta os itens do carrossel */
  .carousel-item-custom {
    flex: 0 0 50%;       /* 2 por vez no mobile */
    max-width: 50%;
    height: auto;        /* altura ajusta automaticamente */
  }

 

  /* Modal do carrossel */
  #galeriaModal .carousel-item img.modal-img {
    width: 100%;         /* ocupa toda largura da tela */
    height: auto;        /* mantém proporção */
    object-fit: contain; /* evita corte */
  
  }

  /* Se tiver texto abaixo das imagens, empilha */
  .carousel-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}

    
#galeriaModal .carousel-item img.modal-img {
  width: 100%;         /* quadrado baseado na altura */
  height: 100%;
  object-fit: cover;   /* corta para preencher */
  margin: auto;
  display: block;
  
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1050; /* garante que fique acima do modal */
  line-height: 1;
}
.close-modal-btn:hover {
  color: #D4AF37; /* dourado ao passar o mouse */
}




/* Footer geral */
footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;

}

/* Footer geral */
footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center; /* centraliza tudo */
}

/* Colunas do footer */
footer .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza conteúdo verticalmente */
  text-align: center;  /* centraliza textos */
  margin-bottom: 20px;
}

/* Títulos das colunas */
footer h5 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

/* Lista de contatos ou links */
footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

/* Links do WhatsApp ou outros */
footer a {
  color: #fff;
  text-decoration: none; /* remove underline */
  transition: all 0.3s ease;
}

footer a:hover {
  color: #0ABAB5;
}

/* Social Footer: ícones lado a lado e centralizados */
.social-footer {
  display: flex;
  flex-direction: row;
  gap: 15px; /* espaço entre os ícones */
  margin-top: 10px;
  justify-content: center; /* centraliza ícones */
  padding-left: 0;
  list-style: none;
}

/* Ícones */
.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-footer a:hover {
  color: #0ABAB5;
  transform: scale(1.2);
}

/* Direitos reservados */
footer .text-center.mt-4 {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}


/* Mobile: centraliza os ícones */
@media (max-width: 767px) {
  .social-footer {
    justify-content: center;
  }
}

/* Botões de Profissionais no Rodapé */
.btn-profissional {
  display: inline-flex;         /* flex para ícone + texto */
  align-items: center;          /* alinha ícone e texto verticalmente */
  gap: 8px;                     /* espaço entre ícone e texto */
  padding: 8px 16px;            /* espaçamento interno */
  border: 2px solid #ffffff;    /* borda Tiffany */
  border-radius: 0px;           /* cantos arredondados */
  background-color: transparent; /* sem fundo */
  color: #ffffff;               /* cor do texto */
  text-decoration: none;         /* remove underline */
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 250px;
}

.btn-profissional:hover {
  background-color: #0ABAB5;    /* muda fundo ao passar o mouse */
  color: #fff;                  /* texto branco no hover */
  transform: translateY(-2px);  /* leve animação */
}


