* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  background-image: url('assets/fundopagina2.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* ====== HEADER CABECALHO ====== */

.header {
  background-color: #0D1E11;
  padding: 20px 40px;
}

.container-header {
  background-color: #0D1E11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  border-radius: 80px 0 80px;
  width: 220px;
  height: auto;
}

/* Navegação principal */
.nav {
  font-size: 24px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #D4AF37;
  }

.nav a:hover {
  text-decoration: underline;
}

/* Ícones sociais */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  width: 30px;
  color: #D4AF37;
  font-size: 35px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #005f2f;
}

/* ===== INICIO NUTRICAO ONCOLOGICA ===== */

.imagem-texto-section {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  padding: 4rem 0;
  display: flex;
  justify-content: center;
}

.imagem-texto-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 40px;
  padding: 0 20px;
}

.imagem-texto-conteudo {
  flex: 1;
  max-width: 600px;
  text-align: justify;
}

.imagem-texto-conteudo h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2e7d32;
  text-align: center;
}

.imagem-texto-conteudo p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.imagem-texto-conteudo .btn {
  display: block;
  width: max-content;
  margin: 1rem auto 0 auto;
  background-color: #2e7d32;
}

.imagem-texto-conteudo .btn:hover {
  background-color: #bf360c;
}

.imagem-texto-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagem-texto-imagem img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* ANIMAÇÕES */
.imagem-texto-section .imagem-texto-conteudo,
.imagem-texto-section .imagem-texto-imagem {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease;
}

.imagem-texto-section.active .imagem-texto-conteudo {
  opacity: 1;
  transform: translateX(0);
}

.imagem-texto-section.active .imagem-texto-imagem {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

/* ====== SECTION: PROPOSITO ====== */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4rem 0;
  background-color: #e8f5e9;
}

.hero-texto {
  flex: 1;
}

.hero-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e7d32;
  text-align: center;
}

.hero-texto p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.btn {
  background-color: #2e7d32;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;

}

.btn:hover {
  background-color: #1b5e20;
}

.hero-texto {
  max-width: 50%;
  /* Limita a largura do texto, para que ele não ocupe toda a largura */
}

.hero-img {
  display: flex;
  justify-content: flex-end;
  /* Alinha a imagem à direita */
  flex: 1;
  /* Garante que o espaço seja distribuído entre o texto e a imagem */
}

.hero-img img {
  width: 550px;
  height: 310px;
  max-width: 100%;
  border-radius: 1rem;
}

.hero-texto .btn {
  display: block;
  width: max-content;
  margin: 1rem auto 0 auto;
  /* 1rem de margem em cima, centralizado horizontalmente */
}

/* Animação vinda da esquerda */
@keyframes entrar-esquerda {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação vinda da direita */
@keyframes entrar-direita {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Aplica a animação aos textos */
.hero-texto h1,
.hero-texto p,
.hero-texto .btn {
  opacity: 0;
  animation: entrar-esquerda 0.8s ease-out forwards;
}

.hero-texto h1 {
  animation-delay: 0.2s;
}

.hero-texto p {
  animation-delay: 0.4s;
}

.hero-texto .btn {
  animation-delay: 0.6s;
}

/* Aplica a animação à imagem */
.hero-img img {
  opacity: 0;
  animation: entrar-direita 1s ease-out forwards;
  animation-delay: 0.8s;
}

/* ESTADO INICIAL (invisível e fora do lugar) */
.proposito-section .hero-texto,
.proposito-section .hero-img {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease;
}

/* Texto vem da esquerda */
.proposito-section.active .hero-texto {
  opacity: 1;
  transform: translateX(0);
}

/* Imagem vem da direita */
.proposito-section.active .hero-img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
  /* leve atraso pra imagem */
}

/* ====== SECTION: NUTRICAO FUNCIONAL ====== */

.nutricao-funcional {
  background-color: #f5f9f5;
  padding: 60px 20px;
}

.container-nutricao-funcional {
  display: flex;
  flex-direction: row; /* mudar de column para row */
  align-items: center; /* opcional para alinhar verticalmente */
  justify-content: space-between; /* opcional para distribuir o espaço */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
  flex-wrap: wrap; /* garante que funcione bem em telas menores */
}

.box {
  flex: 1; /* divide o espaço entre texto e imagem */
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  }

.img-nutri {
  width: 100%;
  max-width: 550px;
  height: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 15px 0;

}

h2,
h3 {
  color: #007f3f;
  margin-top: 10px;
}

.titulo-clinica {
  color: #d46a00;
}

.titulo-servicos {
  color: #cc5f00;
}

ul {
  padding-left: 20px;
  list-style-type: disc;
}

.quote-box {
  background-color: #007f3f;
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin: 2rem auto;
  
 }

.box p {
  text-align: justify;
  
}

.quote-box p {
  font-size: 1.2rem;
  color: white;
}

.quote-box cite {
  display: block;
  margin-top: 15px;
  font-size: 1.1rem;
  font-style: normal;
  color: white;
}

/* ========== ANIMAÇÕES ========== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.quote-box {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.5s ease-out;
  color: white;
}


/* ====== SECTION: SOBRE MIM ====== */

.sobre .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #F1F8E9, #FFF9C4);
  padding: 2rem;
}

/* Cor de fundo da section (fallback caso container não cubra tudo) */
.sobre {
  background: linear-gradient(135deg, #F1F8E9, #FFF9C4);
}

/* Imagem da nutricionista */
.sobre img {
  max-width: 400px;
  width: 100%;
  border-radius: 1rem;
  flex-shrink: 0;
}

.sobre-texto {
  flex: 1;
}

/* Título */
.sobre h1 {
  color: #00695c;
  margin-bottom: 1rem;
}

.sobre p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  animation: subir-suave 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  /* começa invisível */
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 25px;
  background-color: #1f3c44;
  /* azul escuro */
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.whatsapp-btn:hover {
  background-color: #29545e;
  /* cor mais escura */
  transform: scale(1.06);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

@keyframes subir-suave {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*complemento nova alterarção */

.sobre-texto ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.sobre-texto ul li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #444;
  display: flex;
  align-items: center;
}

.sobre-texto ul li::before {
  content: "✔️";
  margin-right: 10px;
  color: #00695c;
}

/* ========== SEÇÃO SERVIÇOS ========== */

.servicos-section {
  background-color: #e8f5e9;
  padding: 4rem 0;
}

.cards-servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;

}

/* ========== CARDS DE SERVIÇO ========== */

.card-servico {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  max-width: 300px;
  width: 280px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.card-servico img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card-servico h3 {
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.card-servico p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== ANIMAÇÃO AO APARECER E HOVER ========== */

.card-servico.active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico.active:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

/* ========== SEÇÃO DEPOIMENTOS ========== */

.depoimentos {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(to bottom, #D4E6B5, #F5E5B8, #F9D976);
}

.depoimentos h2 {
  color: #00695c;
  margin-bottom: 2rem;
}

/* ========== CARROSSEL DE DEPOIMENTOS ========== */

.carrossel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease, transform 1.5s ease;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  pointer-events: none;
}

.slide.ativo {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: all;
}

/* ========== CARTÃO DE COMENTÁRIO ========== */

.comentario {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 40%;
  min-width: 280px;
}

.estrelas {
  color: #B8860B;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

cite {
  display: block;
  font-weight: bold;
  color: #004d40;
}

/* ========== BOTOES DE NAVEGACAO ========== */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #c62828;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* ========== ANIMAÇÃO DE ENTRADA ========== */

@keyframes entrar-direita {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.depoimentos.active {
  animation: entrar-direita 1s ease-out forwards;
}

/* ======= FORMULÁRIO DE CONTATO - LAYOUT GERAL ========= */

.container-contato {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
  margin-bottom: 25px;
}


.form-box {
  background-color: #edf2f4;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 600px;
  }

/* ======= FORMULÁRIO CAMPOS E ESTILOS ======= */

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-weight: bold;
  color: #1b1b1b;
}

form input,
form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

form button {
  align-self: flex-start;
  background-color: #81c784;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #66bb6a;
}


/* ========= RODAPE FOOTER ============ */

.footer {
  color: #fff;
  padding: 2rem 1rem;
  margin-top: 5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0D1E11
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background-color: #0D1E11
}

.logo-footer {
  flex: 1 1 200px;
}

.logo-footer img.logo {
  max-width: 160px;
  height: auto;
  border-radius: 80px 0 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

}

.footer-info {
  flex: 2 1 300px;
  text-align: left;
}

.footer-info p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #D4AF37;
}

.footer-info .dev {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #D4AF37;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  margin-right: 12px;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #D4AF37;
}

/* Linha de separação */

.footer hr {
  border: none;
  height: 1px;
  width: 60%;
  margin-left: 0;
  margin-top: 1rem;
  margin-bottom: 0.05rem;
  background: linear-gradient(to right, #ffffffcc, #ffffff66, #ffffff00);
}

/* ==== BOTÃO FIXO DO WHATSAPP ==== */

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 40px;
  padding: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-fixo img {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Animação de entrada: botão "sobe" suavemente ao aparecer */

@keyframes subir-whats {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aplicando a animação ao botão */
.whatsapp-fixo {
  opacity: 0;
  animation: subir-whats 0.7s ease-out forwards;
  animation-delay: 1.0s;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    
  }

  /* Reorganiza a ordem dos elementos */
  .logo {
    order: 1;
    width: 140px;
  }

  .social-icons {
    order: 2;
    display: flex;
    gap: 10px;
  }

  .menu-toggle {
    order: 3;
    display: block;
    font-size: 30px;
    color: #D4AF37;
    cursor: pointer;
  }

  .nav {
    order: 4;
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background-color: #0D1E11;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    font-size: 20px;
  }

  .sobre {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
     }

     .sobre-texto ul li {
      font-size: 1.0rem;
      margin-bottom: 10px;
      color: #444;
      display: flex;
      align-items: center;
    }
 
  .sobre img  {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  .nav.active {
    display: flex;
  }
}

/* RESPONSIVO */

@media screen and (max-width: 768px) {
  .imagem-texto-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .imagem-texto-conteudo {
    order: 2;
  }

  .imagem-texto-imagem {
    order: 1;
    width: 100%;
  }

  .imagem-texto-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .imagem-texto-conteudo h1 {
    font-size: 24px;
  }

  .imagem-texto-conteudo p {
    font-size: 16px;
    line-height: 1.5;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
/* responsivo PROPOSITO */

@media screen and (max-width: 768px) {
  #proposito .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .hero-img {
    order: 1;
    width: 100%;
  }

  .hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .hero-texto {
    order: 2;
  }

  .hero-texto h1 {
    font-size: 24px;
  }

  .hero-texto p {
    font-size: 16px;
    line-height: 1.5;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* responsivo NUTRICAO FUNCIONAL */

@media screen and (max-width: 768px) {
  .container-nutricao-funcional {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  .container-nutricao-funcional .box:nth-child(1) {
    order: 2; /* texto vem depois */
  }

  .container-nutricao-funcional .box:nth-child(2) {
    order: 1; /* imagem vem primeiro */
  }
  .nutricao-funcional .box {
    width: 100%;
  }

  .nutricao-funcional h1 {
    font-size: 24px;
    order: 2;
  }

  .nutricao-funcional h2 {
    font-size: 20px;
    margin-top: 10px;
  }

  .nutricao-funcional ul {
    padding-left: 20px;
    text-align: left;
    order: 2;
  }

  .nutricao-funcional li {
    font-size: 16px;
    order: 2;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .img-nutri {
    order: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .quote-box {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
  }

  .quote-box p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
  }

  .quote-box cite {
    font-size: 14px;
    color: white
  }
}

/* RESPONSIVO: nossos servicos */

@media screen and (max-width: 768px) {
  .servicos-section {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
  }
  
  .servicos-section .container {
    display: flex;
    flex-direction: column;
  }
  
  .servicos-section h2 {
    order: -1; /* Garante que o h2 fique primeiro */
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
  }
  
  .cards-servicos {
    flex-direction: column;
    gap: 25px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .card-servico {
    width: 100%;
    margin-bottom: 0;
  }
  
  .card-servico img {
    height: 180px;
  }
  
  .card-servico h3 {
    font-size: 1.3rem;
    padding: 12px 15px 0;
  }
  
  .card-servico p {
    padding: 8px 15px 15px;
    font-size: 0.95rem;
  }
}
  


/* RESPONSIVO: DEPOIMENTOS */

@media screen and (max-width: 768px) {
  .depoimentos {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #f9f9f9, #fff); /* Fundo gradiente sutil */
  }

  .depoimentos .container {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
  }

  .depoimentos h2 {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 1.8rem;
    width: 100%;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
  }

  .depoimentos h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
  }

  .carrossel {
    width: 100%;
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* Para efeitos 3D */
  }

  .slide {
    display: none;
    animation: fadeIn 0.5s ease-out; /* Animação de entrada */
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .slide.ativo {
    display: block;
  }

  .comentario {
    background: #fff;
    padding: 25px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3498db;
  }

  .comentario:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .slide.ativo .comentario {
    display: none;
  }

  .slide.ativo .comentario:first-child {
    display: block;
  }

  .estrelas {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }

  blockquote {
    font-style: italic;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
    position: relative;
    padding-left: 15px;
  }

  blockquote::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 2rem;
    color: #3498db;
    opacity: 0.3;
  }

  cite {
    font-weight: 600;
    font-style: normal;
    display: block;
    text-align: right;
    font-size: 0.95rem;
    color: #2c3e50;
  }

  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
  }

  .prev:hover, .next:hover {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    transform: translateY(-50%) scale(1.1);
  }

  .prev:active, .next:active {
    transform: translateY(-50%) scale(0.95);
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  /* Efeito de onda ao clicar nos botões */
  @keyframes ripple {
    to {
      transform: scale(1.5);
      opacity: 0;
    }
  }

  .prev::after, .next::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    opacity: 1;
  }

  .prev:active::after, .next:active::after {
    animation: ripple 0.6s linear;
  }
}

/* RESPONSIVO: FORMULARIOs */

@media screen and (max-width: 768px) {
  .contato {
    padding: 20px 15px;
  }

  .container-contato {
    max-width: 100%;
    padding: 0 10px;
  }

  .form-box {
    padding: 20px 15px;
  }

  .form-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  form label {
    font-size: 0.9rem;
  }

  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }


  form button[type="submit"] {
    font-size: 1rem;
    padding: 12px 0;
  }
}


/* RESPONSIVO: LOCALIZACAO MAPAS */
@media screen and (max-width: 768px) {
  .mapas {
    padding: 40px 15px !important;
  }

  .mapas h2 {
    font-size: 1.6rem !important;
  }

  .mapas p {
    font-size: 1rem !important;
    margin-bottom: 30px !important;
  }

  .mapas div[style*="height: 400px"] {
    height: 300px !important;
  }

  .mapas iframe {
    width: 100% !important;
    height: 100% !important;
  }
}

/* RESPONSIVO: rodapé empilhado em telas menores */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .logo-footer {
    margin-bottom: 10px; /* margem mais próxima */
  }

  .logo-footer img {
    max-width: 120px;
    height: auto;
  }

  .footer-info {
    text-align: center;
  }

  .footer-info p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 5px 0;
  }

  .footer-info hr {
    margin: 15px 0;
    width: 80%;
  }

  .footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px; /* menor espaçamento entre os ícones */
    margin-bottom: 1px;
  }

  .footer-social a {
    font-size: 1.1rem;
  }
}
