/* Reset básico */
* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
}
ul {
    list-style: none;
}
p {
    color: #444;
    font-size: 14px;
    letter-spacing: 0.25px;
    line-height: 24px;
}
a {
  color: #444;
  text-decoration: none;
}
a:hover {
  color: #7bbf9c;
}
body {
  user-select: none;
}

/* Botões */
.primary-button a {
    display: inline-block;
    background-color: #7bbf9c; /* verde suave */
    padding: 12px 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.primary-button a:hover {
    background-color: #5a9d7d;
}

/* Títulos de seção */
.section-heading h4 {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #222;
}
.section-heading .line-dec {
    width: 60px;
    height: 3px;
    background-color: #7bbf9c;
    margin: 0 auto;
}

/* Navbar transparente no topo */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent !important;
    min-height: 80px;
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

/* Navbar ativa (após rolagem) */
.navbar.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo */
.logo-img {
    max-height: 50px;   /* controla altura da logo */
    width: auto;        /* mantém proporção */
    object-fit: contain;
}

/* Links da navbar */
.navbar-brand {
    font-weight: 900;
    font-size: 20px;
    color: #7bbf9c;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.navbar-nav li {
    margin-left: 30px;
}

/* Links brancos quando transparente */
.navbar .nav-link {
    color: #fff !important;
    font-weight: 100;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.navbar .nav-link:hover {
    color: #7bbf9c !important;
}

/* Links escuros quando fundo branco */
.navbar.scrolled .nav-link {
    color: #333 !important;
}
.navbar.scrolled .nav-link:hover {
    color: #7bbf9c !important;
}
.navbar .navbar-toggler-icon {
  filter: invert(100%);
  transition: filter 0.3s ease; /* animação suave */
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(0%);
}
/* Borda branca por padrão (topo da página) */
.navbar .navbar-toggler {
  border: 1px solid #fff;
  transition: border-color 0.3s ease;
}

/* Borda preta quando navbar ganha a classe .scrolled */
.navbar.scrolled .navbar-toggler {
  border: 1px solid #000;
}

/* Links brancos por padrão (navbar transparente/topo) */
.navbar .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}

/* Links escuros quando navbar ganha .scrolled */
.navbar.scrolled .nav-link {
  color: #000;
}

/* Links escuros quando o menu hamburguer está aberto */
.navbar-collapse.show .nav-link {
  color: #000; /* cor escura para contraste */
}



/* Hero / Carrossel */
.carousel-item {
  position: relative;
  height: 100vh;
}

#pilatesCarousel .carousel-caption {
  position: relative;       
  left: auto !important;   
  right: auto !important;
  width: 100%;              
  max-width: none;         
  height: auto;             
  padding: 0;             
  display: flex;            
  flex-direction: column;
  justify-content: center;  
  align-items: center;     
  text-align: center;
  z-index: 2;
}

#pilatesCarousel .carousel-item {
  display: flex;
  justify-content: center;  
  align-items: center;      
}

.carousel-caption span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.carousel-caption h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}
.carousel-caption p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f1f1f1;
}

/* Slides com background + overlay fumê */
.slide-bg-1 {
  position: relative;
  background: url('../img/aparelhos1.webp') center center / cover no-repeat;
  height: 100vh;
}
.slide-bg-2 {
  position: relative;
  background: url('../img/solo1.webp') center center / cover no-repeat;
  height: 100vh;
}
.slide-bg-3 {
  position: relative;
  background: url('../img/vista1.webp') center center / cover no-repeat;
  height: 100vh;
}

/* Slides com background + overlay fumê */
.slide-bg-1,
.slide-bg-2,
.slide-bg-3 {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.slide-bg-1::before,
.slide-bg-2::before,
.slide-bg-3::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* fumê */
  z-index: 1;
}

/* Seções */
.page-section {
    padding: 100px 0;
}



/* SOBRE */
#sobre .row {
  display: flex;
  flex-wrap: wrap;
}

#sobre .service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* força ocupar altura igual */
  margin-bottom: 20px;
}

#about {
  background-color: #f4f4f4;
  padding: 80px 0;
}

#about .section-heading {
  margin-bottom: 60px;
}

/* Card principal */
.service-item {
  background: linear-gradient(135deg, #f9fff9, #eafaf4); /* degrade suave */
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg); /* leve movimento */
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Ícone */
.service-item .icon {
  font-size: 42px;
  color: #7bbf9c; /* verde Pilates */
  margin-bottom: 15px;
  background: rgba(123,191,156,0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.service-item:hover .icon {
  background: #7bbf9c;
  color: #fff;
  transform: rotate(8deg) scale(1.2); /* sensação de movimento */
}

.service-item:hover .icon i {
  color: #f1f1f1; /* ícone fica mais claro */
}

/* Título e texto */
.service-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c3e50;
}

.service-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}



/* STATS */

#pilates-stats {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

#pilates-stats .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* todos os cards com mesma altura na linha */
}

.stat-card {
aspect-ratio: 1 / 1; 
width: 200px; 
border-radius: 50%; 
display: flex; 
flex-direction: column; 
justify-content: center; 
align-items: center; 
background: radial-gradient(circle at 30% 30%, #ffffff, #b2bc80); 
margin: 10px; 
box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.7), inset 8px 8px 16px rgba(19, 138, 100, 0.25), 0 6px 12px rgba(178, 188, 128, 0.4); 
text-align: center; 
padding: 20px; 
flex: 0 0 auto;
flex-shrink: 0;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-card .counter {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #023047;
  white-space: nowrap;   /* nunca quebra linha */
}

.counter::before {
  content: "+ de ";
}
.counter.media::before {
  content: "Média de ";
}

.stat-card span {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #023047;
}

.stars {
  white-space: nowrap; /* nunca quebra linha */
  color: #ffb703;
  font-size: 1.3rem;
  margin-bottom: 10px;
}


/* AULAS*/
#aulas { 
	position: relative; 
	padding: 100px 0; 
	background: url('../img/clinica1.png') no-repeat center center; 
	background-size: cover; color: #fff; 
} 
#aulas::before { 
	content: ""; 
	position: absolute; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	background: rgba(44, 62, 80, 0.6); 
	z-index: 1; 
} 
#aulas .container { 
	position: relative; 
	z-index: 2; 
}

#aulas .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.flow-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 50px 0;
  flex-wrap: wrap; /* permite quebra em telas menores */
}

.flow-line::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 4px;
  background: #7bbf9c;
  z-index: -1;
}

/* Itens */
.flow-item {
  text-align: center;
  flex: 1;
  min-width: 180px; /* largura mínima para não esmagar */
  margin: 20px 0;
  position: relative;
}

.flow-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  border: 4px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.flow-item h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff; /* mantém branco para contraste */
}

/* Responsividade */


/* --- TABLET: Grid 2x2 com conexão --- */
@media (max-width: 991px) and (min-width: 768px) {
  .flow-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Linha Horizontal Superior (conecta item 1 e 2) */
  .flow-line::before {
    content: "";
    position: absolute;
    top: 80px; /* Ajuste conforme o padding/margem do grid */
    left: 10%;
    right: 25%;
    height: 4px;
    background: #7bbf9c;
    z-index: -1;
  }

  /* Linha Horizontal Inferior (conecta item 3 e 4) */
  .flow-line::after {
    content: "";
    position: absolute;
    bottom: 100px; /* Ajuste para alinhar com o centro das fotos de baixo */
    left: 10%;
    right: 25%;
    height: 4px;
    background: #7bbf9c;
    z-index: -1;
  }

  /* Linha Vertical de conexão central (Opcional: cria o caminho em 'S') */
  .flow-item:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 60px;
    right: 50%;
    width: 4px;
    height: 150%; /* Faz a ponte entre as linhas horizontais */
    background: #7bbf9c;
    z-index: -2;
  }
}

/* Configuração para telas pequenas */
@media (max-width: 767px) {
  .flow-line {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Espaçamento entre os círculos */
  }

  /* A Linha Vertical */
  .flow-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px; /* Espessura da linha */
    height: 100%;
    background-color: #7bbf9c;
    transform: translateX(-50%);
    z-index: -1;
  }
}





.flow-item p {
  font-size: 13px;
  color: #555;
  margin: 5px 0 0;
}

.extra {
  margin-top: 30px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.extra span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.extra img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 2px solid #fff;
}

.divider {
  font-size: 22px;
  font-weight: 700;
  color: #7bbf9c; /* verde Pilates */
}

.btn-agende {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #7bbf9c, #5a9d7d); /* degradê verde Pilates */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px; /* formato pill */
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-agende:hover {
  background: linear-gradient(135deg, #5a9d7d, #7bbf9c); /* inverte o degradê */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn-agende:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.modal-backdrop.show {
  background-color: rgba(0,0,0,0.3); /* mais claro */
}
.modal-body {
  text-align: left; /* texto alinhado à esquerda para melhor leitura */
  padding: 20px;
}

.modal-body img {
  max-width: 70%;   /* limita a largura da imagem */
  height: auto;     /* mantém proporção */
  display: block;
  margin: 0 auto 20px; /* centraliza e dá espaço abaixo */
  border-radius: 8px;  /* cantos arredondados */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* sombra leve */
}

.modal-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}


/* Section Galeria */
#galeria {
  text-align: center;
  padding: 60px 0;
  background-color: #f9f9f9; /* fundo claro */
}

/* Filtros */
.filter-categories {
  margin: 40px 0 20px;
}

.filter-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-categories ul li {
  display: inline-block;
  margin: 0 12px 15px;
}

.filter-categories ul li span {
  cursor: pointer;
  color: #555;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.filter-categories ul li span:hover,
.filter-categories ul li.active span {
  background-color: #7bbf9c;
  color: #fff;
}

/* Itens da galeria */
.project-item {
  margin-top: 30px;
}

.project-item .thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  height: 220px; /* altura fixa para uniformizar */
}

.project-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* garante que a imagem preencha sem distorcer */
  transition: transform 0.5s ease;
}

.project-item:hover .thumb img {
  transform: scale(1.05);
}


/* Hover effect */
.project-item .hover-effect {
  position: absolute;
  inset: 0; /* substitui top/left/width/height */
  background-color: rgba(123, 191, 156, 0.9);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-item .hover-effect i {
  width: 50px;
  height: 50px;
  background-color: #fff;
  line-height: 50px;
  color: #7bbf9c;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.project-item .hover-effect i:hover {
  background-color: #5a9d7d;
  color: #fff;
}

.project-item:hover .hover-effect {
  opacity: 1;
}

/* =========================================================
   MODAL GALERIA (apenas para #galeria)
========================================================= */
#galleryModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  flex-direction: column; /* garante que tudo fique em coluna */
}

#galleryModal.show {
  display: flex;
}

#galleryModal h3 {
  color: #7bbf9c;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center; /* centraliza o título */
}

#galleryModal .modal-content {
  background-color: #000; /* fundo preto atrás da imagem */
  padding: 8px;           /* pequena margem */
  border-radius: 10px;
  max-width: 80%;
  max-height: 75vh;
  object-fit: contain;    /* mantém proporção */
}


#galleryModal #caption {
  margin-top: 12px;
  text-align: center;
  color: #eee;
  font-size: 14px;
  font-style: italic;
  max-width: 70%;
}


#galleryModal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
#galleryModal .close:hover { 
  color: #7bbf9c; 
}
#galleryModal .prev,
#galleryModal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px; /* tamanho do ícone */
  transition: all 0.3s ease;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

#galleryModal .prev { left: 15px; }
#galleryModal .next { right: 15px; }

#galleryModal .prev:hover,
#galleryModal .next:hover {
  background: #7bbf9c;
  color: #fff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.95); } to { transform: scale(1); } }


/* =========================================================
   MODAL
========================================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.7); /* overlay escuro */
  backdrop-filter: blur(4px);   /* efeito vidro fosco */
  animation: fadeIn 0.4s ease; /* animação de entrada */
}

.modal-dialog {
  max-width: 500px;
  margin: 60px auto;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0); /* animação suave ao abrir */
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  animation: scaleUp 0.3s ease;
}

.modal-header {
  background: linear-gradient(135deg, #7bbf9c, #5a9d7d);
  color: #fff;
  padding: 15px 20px;
  border-bottom: none;
}
.modal-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.btn-close:hover { opacity: 1; }

.modal-body {
  padding: 25px;
  text-align: center;
}
.modal-body img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.modal-body img:hover {
  transform: scale(1.03);
}
.modal-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}

/* Navegação (prev/next) */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  user-select: none;
  transition: all 0.3s ease;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover {
  background: #7bbf9c;
  color: #fff;
  transform: scale(1.1);
}

/* Caption */
#caption {
  margin: 15px auto;
  text-align: center;
  color: #555;
  font-size: 16px;
  font-style: italic;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleUp {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

/*   FAQ    */
#faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #d4f1e1, #7bbf9c);
}

/* Container das perguntas */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Pergunta */
.faq-question {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  padding-right: 25px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  color: #7bbf9c;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* altura suficiente para expandir */
  opacity: 1;
}


 /*   DEPOIMENTOS  */
#depoimentos {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9, #e6f7f1); /* fundo suave */
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  height: 370px;              /* altura fixa */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribui conteúdo */
}


.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-icon {
  font-size: 26px;   
  margin-right: 12px;
  color: #7bbf9c;   
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid #7bbf9c;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  font-size: 24px;
  color: #7bbf9c;
  margin-right: 5px; /* espaço entre aspas e texto */
}

.testimonial-text::after {
  content: "”";
  font-size: 24px;
  color: #7bbf9c;
  margin-left: 5px; /* espaço entre texto e aspas */
}

.btn-google {
  display: inline-block;       /* garante que só ocupe o conteúdo */
  background-color: #7bbf9c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;      /* alinha à esquerda sem expandir */
  width: auto;                 /* força largura apenas do conteúdo */
}


.btn-google:hover {
  background-color: #5a9d7d;
}

/* CONTACT US */

.map iframe {
  width: 100%;        /* ocupa toda a largura da coluna */
  height: 400px;      /* altura fixa mais elegante */
  border: none;
  border-radius: 8px; /* cantos arredondados para combinar com o estilo */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* sombra leve */
}

#contact {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-info {
  font-size: 16px;
  color: #2c3e50;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-logo {
  max-width: 300px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 120px auto; /* primeira coluna fixa, segunda flexível */
  gap: 8px 20px; /* espaçamento entre linhas e colunas */
  font-size: 16px;
  color: #2c3e50;
}

.contact-grid .label {
  font-weight: 700;
  text-align: left; /* títulos alinhados à direita */
}

.contact-grid .value {
  line-height: 1.5;
}

.btn-whatsapp {
  display: inline-block;
  padding: 12px 25px;
  background: #4CAF50; /* verde mais suave e harmonioso */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 18px;
}

.btn-whatsapp:hover {
  background: #43a047; /* tom mais escuro no hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* FOOTER */

footer {
	background-color: #202628;
	padding: 20px;
}

footer p {
	font-size: 12px;
	color: #fff;
	margin-bottom: 0px;
	margin-top: 20px;
}

footer em {
	font-style: normal;
	font-weight: 700;
	color: #a2cf8d;
}

footer ul {
	margin-top: 15px;
	float: right;
}

footer ul li {
	display: inline-block;
	margin-left: 5px;
}

footer ul li a {
	font-size: 16px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	display: inline-block;
	background-color: #a2cf8d;
	color: #202628;
	border-radius: 50%;
}

footer ul li a:hover {
	color: #202628;
	background-color: #5c9d7d;
	transition: all 0.5s;
}
/*---------------------------------------
  Valtar ao topo              
-----------------------------------------*/
#backToTopBtn {
  display: none; /* escondido por padrão */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #f9fff9;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background: 7bbf9c;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

#backToTopBtn .arrow-up {
  display: inline-block;
  transition: transform 0.3s ease;
}

#backToTopBtn:hover .arrow-up {
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (min-width: 990px) and (max-width: 1200px) {
  #pilates-stats .row { 
    justify-content: center;
    }
  .stat-card {
    width: 190px;

    padding: 15px;
  }
  .stat-card .counter {
    font-size: 1.0rem;
  }
  .stat-card span {
    font-size: 0.6rem;
  }
  .stars {
    font-size: 1.0rem;
  }
}
@media (max-width: 900px) {
  .slide-bg-1,
  .slide-bg-2,
  .slide-bg-3 {
    height: 75vh;
    background-position: top center;
  }
  .carousel-caption h2 { font-size: 30px; }
  .carousel-caption p { font-size: 14px; }
}
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
  }
  .navbar-nav li { margin: 10px 0; }
  .logo-img { max-height: 40px; }

  .carousel-caption h2 { font-size: 26px; }
  .carousel-caption p { font-size: 13px; }

  .slide-bg-1,
  .slide-bg-2,
  .slide-bg-3 { height: 65vh; }

  .map iframe { height: 280px; }

  #pilates-stats .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-card {
    aspect-ratio: 1 / 1;
    width: min(40vw, 180px);
  }
  .contact-logo {
  margin-top: 30px;
}
}
@media (max-width: 576px) {
  .slide-bg-1,
  .slide-bg-2,
  .slide-bg-3 { height: 60vh; }

  .carousel-caption h2 { font-size: 22px; }
  .carousel-caption p { font-size: 12px; line-height: 1.4; }

  .primary-button a {
    padding: 8px 14px;
    font-size: 11px;
  }

  .service-item .icon {
    width: 60px; height: 60px;
  }
  .service-item .icon i { font-size: 24px; }

  .map iframe { height: 250px; }

  #pilates-stats .row {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    width: 70vw;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    margin: 15px auto;
  }
  .stat-card .counter {
    font-size: clamp(1rem, 5vw, 1.4rem);
  }
  .stat-card span {
    font-size: clamp(0.7rem, 3.5vw, 1rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .contact-grid .value { margin-bottom: 15px; }
  #contato img { max-width: 200px; }
}


