* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }


  html{
    scroll-behavior: smooth;
     overflow-x: hidden;
  }

  body {
    color: #333;
    /* background-color: #f9f9f9; */
    /* background-color: #f4f2e6; */
    background-color: #f7fbfc;
    scroll-behavior: smooth;
     
  }

  /* ===== BANNER PROMOCIONAL ===== */
.promo-banner {
    background: linear-gradient(135deg, #0093ab, #004e64);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 78, 100, 0.3);
}

.promo-banner p {
    margin: 0;
}

  /* HEADER GERAL */
.main-header {
  height: 100vh;
  background-image: url('Imagens/Homecarol.png');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo {
  /* border: solid 1px red; */
  width: 400px;
  margin-left: 50px;
  margin-top: -50px;
}
@media (max-width: 850px) {
    .logo {
     width: 200px;
     margin-right: 0 auto;
     display: block;
  }
} 

/* ÍCONES SOCIAIS */
.nav-center {
  display: flex;
  gap: 20px;
}

.fa-brands fa-instagram{
  width: 50px;
}

.social-icon img {
  width: 40px;
  /* filter: brightness(0) invert(1); */
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.15);
}

/* CONTATO */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone {
  font-weight: 500;
  font-size: 1.5rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2));
  border-radius: 20px;
}

.btn-whats {
  background: #25D366;
  color: white;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-whats:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

/* HERO */
/* ==== HERO CONTENT (ajustes para frase e CTA) ==== */

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 67%;
  left: 12%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 5;
  color: #fff;
  margin-right: 0;
  margin-bottom: 120px;
}
/* .hero-content {
  position: absolute;
  z-index: 2; /* acima do overlay */


.hero-text h1 {
  /* font-size: 5.2rem; */
  font-size: 3.5rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-block;
  background: #0093ab;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 147, 171, 0.4);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #007d94;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 147, 171, 0.5);
}

/* RESPONSIVO */
@media (max-width: 850px) {
    .main-header {
    background-image: url('Imagens/home2.png');
    background-position: center top;
    background-size: cover;
    background-attachment: scroll; /* remove o efeito fixo em mobile, melhora desempenho */
  }
  
  .navbar {
    flex-direction: column;
    gap: 20px;
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 15px;
  }

  .logo {
    width: 350px;
    /* margin: auto; Garante centralização */
    margin-left: 35px;
    display: block;
  }

  .nav-right {
    flex-direction: column;
  }
  .hero-content {
    position: static;
    transform: none;
    text-align: center;
    padding: 0 1.5rem;
    margin-right: 60px;
    margin-top: 10%;
    margin-bottom: 450px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
  .hero-text h1,
.hero-text p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 5);
}
   .btn-cta {
    padding: 12px 28px;
    font-size: 1rem;
  }
   .btn-whats {
    display: none;
  }
  .phone {
  display: none;
}
}

                         /* ------------------ Whatsapp Flutuante------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: invert(1); /* deixa o ícone branco */
}

                           /* ------------------ FIM Whatsapp Flutuante------------- */
  .hero {
    background-image: url('Imagens/img2.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;

    height: 92vh; /* 100% da altura da viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* para o texto aparecer na imagem */

    /* position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background: linear-gradient(120deg, #d0e6ff, #ffffff);
    text-align: left; */
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-img {
    position: absolute;
    bottom: 0;
    left: 70px;
    max-height: 100%;
    width: auto;
    z-index: 1;
    opacity: 0.9;
  }

  .hero h1 {
    font-size: 2.5rem;
    color: #d4a15d;
  }

  .hero p {
    margin-top: 10px;
    font-size: 1.2rem;
    max-width: 600px;
  }
  /* ==== SEÇÃO AVALIAÇÕES ==== */
#avaliacoes.section {
  padding: 4rem 2rem;
  /* background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%); */
  background-color: #f7fbfc;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

#avaliacoes h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #004e64;
  margin-bottom: 2.5rem;
  position: relative;
}

#avaliacoes h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0093ab;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ==== CONTAINER ==== */
.avaliacoes-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.avaliacoes-wrapper {
  display: flex;
  gap: 1.5rem;
  animation: scroll 15s linear infinite;
}

/* ==== CARD ==== */
.avaliacao-card {
  flex: 0 0 calc(25% - 1.5rem); /* 4 por tela */
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: left;
  min-height: 250px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.avaliacao-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 147, 171, 0.15);
}

/* ==== TOPO ==== */
.avaliacao-topo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid #0093ab;
}

.info h3 {
  font-size: 1.05rem;
  color: #004e64;
}

.info p {
  color: #0093ab;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* ==== TEXTO ==== */
.texto {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==== ANIMAÇÃO DO CARROSSEL ==== */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==== RESPONSIVO ==== */
@media (max-width: 1024px) {
  .avaliacao-card { flex: 0 0 calc(33.33% - 1rem); }
}

@media (max-width: 768px) {
  .avaliacao-card { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 480px) {
  .avaliacao-card { flex: 0 0 100%; }
}

/* ==== MOBILE: Carrossel com dedo, 1 card por tela ==== */
@media (max-width: 768px) {

  /* Remove animação no mobile */
  .avaliacoes-wrapper {
    animation: none !important;
    transform: translateX(0) !important;
  }

  /* Container do carrossel */
  .avaliacoes-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 25px; /* espaço pro indicador */
    position: relative;
  }

  /* Linha de cards */
  .avaliacoes-wrapper {
    display: flex;
    gap: 1.2rem;
    width: max-content;
  }

  /* 1 CARD POR TELA */
  .avaliacao-card {
    flex: 0 0 88vw; /* quase full width, dá respiro lateral */
    max-width: 88vw;
    scroll-snap-align: center;
  }

  /* Indicador UI/UX "Arraste para o lado" */
  .arraste-indicador {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  z-index: 50;
  position: relative;
  opacity: 0.9;
  animation: fadeSwipe 2s infinite;
}
  .arraste-indicador span {
    font-size: 40px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
  }

  /* animação suave para chamar atenção */
  @keyframes fadeSwipe {
    0% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.9; transform: translateX(5px); }
    100% { opacity: 0.3; transform: translateX(0); }
  }

  /* Ocultar scrollbar */
  .avaliacoes-container::-webkit-scrollbar {
    display: none;
  }
}




  /* ------------------------- FIM FEEDBACK ------------------ */


    /* ------------------------- MAPA ------------------------------ */

    .contato {
  padding: 2rem;
  /* background-color: #f9f9f9; */
  background-color: #f7fbfc;
  text-align: center;
}

.contato h2 {
  margin-bottom: 0.5rem;
}

.contato p {
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.mapa iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border: 0;
}
/* ------------------------- FIM MAPA ------------------------------ */

  .section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }



  .section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
  }

/* ==== ESTILO GERAL DA SEÇÃO ==== */
#tratamentos.section { 
  padding: 4rem 2rem;
  /* background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%); */
  background-color: #f7fbfc;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

#tratamentos h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #004e64;
  margin-bottom: 2.5rem;
  position: relative;
}

#tratamentos h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0093ab;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ==== GRID DOS TRATAMENTOS ==== */
.tratamentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==== CARD ==== */
.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 147, 171, 0.2);
}
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0093ab;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    /* Animação */
    animation: pulseBadge 1.2s infinite ease-in-out;
}

/* Animação pulsante */
@keyframes pulseBadge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0px rgba(0, 147, 171, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(0, 147, 171, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0px rgba(0, 147, 171, 0.6);
  }
}
/* ==== IMAGEM ==== */
.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* ==== TÍTULO E TEXTO ==== */
.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #006778;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==== BOTÃO WHATSAPP ==== */
.btn-whatsapp {
  display: inline-block;
  background: #006778;
  color: #fff;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 179, 126, 0.3);
}

.btn-whatsapp:hover {
  background: #009b6e;
  box-shadow: 0 6px 16px rgba(0, 179, 126, 0.4);
  transform: scale(1.05);
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
  #tratamentos {
    padding: 3rem 1.5rem;
  }

  #tratamentos h2 {
    font-size: 1.8rem;
  }

  .card {
    padding: 1.2rem;
  }

  .btn-whatsapp {
    width: 100%;
    border-radius: 10px;
    padding: 0.9rem;
  }
}

/* ==== ANIMAÇÃO SUAVE DE ENTRADA ==== */
.card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /* ==== SEÇÃO RESULTADOS ==== */
#resultados.section {
  padding: 4rem 2rem;
  /* background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%); */
  background-color: #f7fbfc;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* ==== TÍTULO ==== */
#resultados h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #004e64;
  margin-bottom: 2.5rem;
  position: relative;
}

#resultados h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0093ab;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ==== GALERIA ==== */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==== FOTO ==== */
.foto {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.foto:nth-child(1) { animation-delay: 0.1s; }
.foto:nth-child(2) { animation-delay: 0.2s; }
.foto:nth-child(3) { animation-delay: 0.3s; }
.foto:nth-child(4) { animation-delay: 0.4s; }
.foto:nth-child(5) { animation-delay: 0.5s; }
.foto:nth-child(6) { animation-delay: 0.6s; }

.foto:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 147, 171, 0.2);
}

/* ==== IMAGEM ==== */
.foto img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Mantém quadrada */
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.foto:hover img {
  transform: scale(1.08);
}

/* ==== ANIMAÇÃO DE ENTRADA ==== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
  #resultados {
    padding: 3rem 1.5rem;
  }

  #resultados h2 {
    font-size: 1.8rem;
  }

  .galeria {
    gap: 1rem;
  }
}



  /* ==== SEÇÃO SOBRE ==== */
#sobre.section {
  padding: 4rem 2rem;
  /* background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%); */
  background-color: #f7fbfc;
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* Título principal */
#sobre h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #004e64;
  margin-bottom: 2.5rem;
  position: relative;
}

#sobre h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0093ab;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ===== CONTAINER PRINCIPAL ===== */

.sobre-container {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* ===== TEXTO ===== */
.sobre-texto {
  flex: 1 1 55%;
}

.sobre-texto h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

/* ===== IMAGEM ===== */
.sobre-imagem {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-imagem img {
  width: 100%;
  /* max-width: 420px; */
  min-height: 650px;
  aspect-ratio: 1 / 1; /* Imagem quadrada */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.sobre-imagem img:hover {
  transform: scale(1.03);
}

/* ===== LINHAS (hr) ===== */
#sobre hr {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 2rem auto;
  width: 80%;
  max-width: 1000px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
  .sobre-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sobre-texto {
    flex: 1 1 100%;
  }

  .sobre-texto h3 {
    text-align: left;
  }

  .sobre-imagem img {
    max-width: 320px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  #sobre h2 {
    font-size: 1.8rem;
  }

  .sobre-texto h3 {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .sobre-imagem img {
    max-width: 280px;
  }
}

/* ==== SEÇÃO FAQ ==== */
#faq.section {
  padding: 4rem 2rem;
  /* background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%); */
  background-color: #f7fbfc;
  font-family: "Poppins", sans-serif;
}

/* ==== TÍTULO ==== */
#faq h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #004e64;
  margin-bottom: 2.5rem;
  position: relative;
}

#faq h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #0093ab;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ==== CONTAINER ==== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==== ITEM ==== */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 147, 171, 0.1);
}

/* ==== BOTÃO PERGUNTA ==== */
.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  color: #004e64;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-pergunta:hover {
  background: #f0f9fb;
}

.faq-pergunta .icon {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0093ab;
  transition: transform 0.3s ease;
}

/* ==== RESPOSTA ==== */
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-resposta p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0.8rem 0 1rem;
}

/* ==== ITEM ATIVO ==== */
.faq-item.ativo .faq-resposta {
  max-height: 400px;
  padding: 1rem 1.5rem 1.2rem;
}

.faq-item.ativo .faq-pergunta .icon {
  transform: rotate(180deg);
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
  #faq {
    padding: 3rem 1.5rem;
  }

  #faq h2 {
    font-size: 1.8rem;
  }

  .faq-pergunta {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }

  .faq-resposta p {
    font-size: 0.9rem;
  }
}


  /* ===== Rodapé ===== */
#footer {
  background-color: #004c6d; /* mesmo azul do navbar */
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

/* Colunas */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-insta{
  padding-left: 25px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Atendimento */
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 0.8;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 10px 0;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.footer-hours {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Links Rápidos */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.7;
}

.insta{
  width: 40px;
  align-items: center;
  text-align: center;
}

.footer-insta i {
  font-size: 60px; /* AUMENTE AQUI O TAMANHO */
  color: white;
  transition: 0.3s ease;
}

.footer-insta i:hover {
  color: #00c6d3; /* cor ao passar o mouse */
  transform: scale(1.15);
}

.politica{
  color: white;
}

/* .fa-brands fa-instagram{
  width: 40px;
  align-items: center;
  text-align: center;
} */

/* Direitos Reservados */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    min-width: 100%;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
