/* No topo do seu arquivo CSS, adicione esta linha */
html {
  font-size: 16px; /* Garante que 1rem = 16px para cálculos consistentes */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 0; /* altura da navbar */ /*apagar*/
  font-family: 'Baloo 2', cursive;
  background: #fdfdfd;
  color: #333;
  overflow-x: hidden;
}

.sidebar-invisible {
  display: none !important;
}

/* Header e Navegação */
/*header {} Verificar depois isso*/

/* Barra de navegação fixa */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem; /* 80px convertido para rem (80/16) */
  background-color: #002B7F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  z-index: 1000;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2); /* 0 2px 8px */
}

/* Logo à esquerda com 70px */
.logo img {
  height: 4.375rem; /* 70px convertido para rem (70/16) */
}

/* Links do menu */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3125rem; /* 21px convertido para rem (21/16) */
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #00BFFF;
}

/* Ícone hambúrguer (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}


.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
    transition: 0.3s ease;
}
/* ===== Responsividade ===== */
/* Responsividade para telas pequenas */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #002B7F;
    position: absolute;
    top: 3.75rem; /* 60px convertido para rem (60/16) */
    right: 0;
    width: 12.5rem; /* 200px convertido para rem (200/16) */
    padding: 0.9375rem; /* 15px convertido para rem (15/16) */
    border-radius: 0 0 0 0.625rem; /* 10px convertido para rem */
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }
}



/* Estilos responsivos para mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 5rem; 
     width: 12.5rem; 
    right: 0;
    background-color: #002B7F;
    flex-direction: column;
    display: none;
    padding: 1.25rem 0; 
    text-align: center;
    border-radius: 0 0 0 0.625rem;
  }

  .nav-links.show {
    display: flex;
  }

  /*.nav-links {
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  width: 100vw; 
  background-color: #002B7F;
  flex-direction: column;
  display: none;
  padding: 20px 0;
  text-align: center;
  border-radius: 0; 
  z-index: 1000;
}
.nav-links.show {
  display: flex;
}*/

  .nav-links li {
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }
}
/*Final da NAVBAR*/


/* Seção Hero (banner/slideshow) */

.hero {
  text-align: center;
  padding: 0;
  padding-top: calc(5rem); /* Altura da navbar (5rem) + um extra (20px = 1.25rem) */
  padding-bottom: 1.25rem; /* 20px convertido para rem */
  background: none;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
    /*aspect-ratio: 3 / 4;*/
  width: 100%;
  height: auto;
  display: block;
  /*border-radius: 10px;*/
  
  max-height: 700px;
  object-fit: cover;
}

.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero {
    margin-top: 3.125rem; /* 50px convertido para rem (50/16) */
    padding-top: 3.75rem; /* 60px convertido para rem (60/16) */
    padding-bottom: 3.125rem; /* 50px convertido para rem (50/16) */
  }

  .slideshow-container {
  position: relative;
  width: 100%;
  height: auto;
  /*max-height: 900px;*/
  overflow: hidden;
    aspect-ratio: 3 / 4;
      background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;


  }
.slide {
  display: none;
  width: 100%;
}
  .slide img {
     
  /*border-radius: 10px;*/
  
  max-height: none;
  object-fit: contain;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

.slideshow-container {
  aspect-ratio: 3 / 4;
  max-height: none; /* ou calcule dinamicamente */
}

  .slide img {
    object-fit: cover;
    max-height: none;
  }
}

/*Final Seção Hero (banner/slideshow) */

/*@media (max-width: 768px) {
  .slide img {
    object-fit: contain; 
    max-height: none; 
    height: auto;
    aspect-ratio: 3 / 4;
  }
}*/
/* Container de seções */

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  /*margin-top: 60px; *//* aumenta o espaço acima do título */
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/*Aqui foi alterado*/
.titulo, .titulo1 {
  font-family: 'Luckiest Guy', cursive;
  color: #002B7F;
  /* min-size (36px), viewport-relative-size (5vw), max-size (64px) */
  /*font-size: clamp(36px, 5vw, 90px); */
  font-size: clamp(2.25rem, 5vw, 5rem); /* Convertido de 36px-96px para rem. 1.5rem (24px) - 
  6rem (96px) para uma boa escala. Ajustado para 2.25rem (36px) min. */
  line-height: 1.1;
}/*Aqui foi alterado*/


/* Cards */
/*.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
   margin: 30px 20px 0 20px; 
}

.card {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  gap: 20px;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}



.card img {
  width: 80px;
  height: 80px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}
.card:hover img {
  transform: scale(1.1);
}

.card-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-texto h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: #333;
}
.card:nth-child(1) {
  background-color: #f8f0c5; 
}
.card:nth-child(2) {
  background-color: #b3e5fc; 
}
.card:nth-child(3) {
  background-color: 	#f8bbd0; 
}
.card-texto p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 480px) {
  .card {
    flex-direction: column;
    text-align: center;
  }

  .card-texto {
    align-items: center;
  }

  .card img {
    margin-bottom: 15px;
  }
}*/

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 30px 20px 0 20px; /* topo 30px, laterais 20px, sem margem embaixo */
}

/* Ajuste do grid para telas maiores, aumentando o mínimo da coluna */
@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.card {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  gap: 20px;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.card img {
  width: 80px;
  height: 80px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}


/*.card img {
  width: 100%;
  max-width: 60px; 
  height: auto;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}*/

/* Telas pequenas até 480px */
@media (max-width: 480px) {
  .card img {
    max-width: 120px;
  }
}

/* Telas médias a partir de 481px */
@media (min-width: 481px) and (max-width: 1023px) {
  .card img {
    max-width: 120px;
  }
}

/* Telas grandes a partir de 1024px */
@media (min-width: 1024px) and (max-width: 1439px) {
  .card img {
    max-width: 80px;
  }
}

/* Telas extra grandes a partir de 1440px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .card img {
    max-width: 90px;
  }
}

/* Telas muito grandes (Full HD e acima) */
@media (min-width: 1920px) {
  .card img {
    max-width: 100px;
  }
}


@media (hover: hover) and (pointer: fine) {
  .card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
  }
  .card:hover img {
    transform: scale(1.1);
  }
}

.card-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-texto h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: #333;
}

.card-texto p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

/* Cores diferentes para os três primeiros cards */
.card:nth-child(1) {
  background-color: #f8f0c5; /* amarelo claro */
}
.card:nth-child(2) {
  background-color: #b3e5fc; /* azul claro */
}
.card:nth-child(3) {
  background-color: #f8bbd0; /* rosa claro */
}

/* Responsividade para telas pequenas */
@media (max-width: 480px) {
  .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 30px 20px 0 20px; /* topo 30px, laterais 20px, sem margem embaixo */
}

  .card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .card-texto {
    align-items: center;
  }

  .card img {
    width: 120px;
    height: 120px;
    margin-bottom: 5px;
  }

  .card-texto h3 {
    font-size: 1.1rem;
  }

  .card-texto p {
    font-size: 0.9rem;
  }
}





/* CTA Section */
  /* Resetando margens e padding globais */
  /** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }*/

  body {
    width: 100%;
    overflow-x: hidden; /* Impede estouro horizontal */
  }
/*
  .cta-section {
  background-image: url('/solzinho_florescer/CTAfig1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  padding: 60px 5vw;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 5vh; 
}

.cta-buttons a {
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-whatsapp {
  background-color: #0e8405;
  color: #fff;
}

.btn-agendar {
  background-color: #ee9211;
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .cta-section {
    padding: 80px 10vw;
    min-height: 600px;
  }

  .cta-section h2 {
    font-size: 3em;
  }

  .cta-section p {
    font-size: 1.4em;
  }

  .cta-buttons a {
    font-size: 1.5em;
    padding: 20px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .cta-section {
    padding: 50px 6vw;
  }

  .cta-section h2 {
    font-size: 2.2em;
  }

  .cta-section p {
    font-size: 1.3em;
  }

  .cta-buttons a {
    font-size: 1.2em;
    padding: 18px 35px;
  }
}


@media screen and (max-width: 768px) {
  .cta-section {*/
    /*padding: 40px 5vw;*/
 /*   background-size: contain;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .cta-section p {
    font-size: 1.1em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .cta-buttons a {
    font-size: 1.1em;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
  }
}*/

  .cta-section {
       background-image: url('/solzinho_florescer/CTA_fig_rev.webp');
  background-size: contain; 
min-height: 500px; 
 background-position: center center; 
  background-repeat: no-repeat;
    padding: 60px 5vw;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
      margin-top: 30px;

  }

  .cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
     
  }

  .cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 280px; 
  }

  .cta-buttons a {
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    cursor: pointer;
  }

  .btn-whatsapp {
    background-color: #0e8405;
    
    color: #fff;
  }

  .btn-agendar {
    background-color: #ee9211;
    color: #fff;
  }
/*Techo alterado, Adição*/
   @media (min-width: 1024px) {
  cta-section {
    padding: 40px 4vw;
    background-size: contain; /* sempre mostra a imagem inteira */
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 400px;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .cta-section p {
    font-size: 1em;
  }

  .cta-buttons {
    margin-top: 230px;
  }

  .cta-buttons a {
    font-size: 1.1em;
    padding: 12px 24px;
  }
}

@media screen and (min-width: 1600px) {
    .cta-section {
      padding: 60px 10vw;
    }

    .cta-section h2 {
      font-size: 3em;
    }

    .cta-section p {
      font-size: 1.4em;
    }

    .cta-buttons a {
      font-size: 1.5em;
      padding: 20px 40px;
    }
  }
/* Telas muito grandes - Full HD (1920px a 2559px) */
@media screen and (min-width: 1920px) {
  .cta-section {
    padding: 80px 12vw;
    min-height: 700px;
    background-size: contain;
  }

  .cta-section h2 {
    font-size: 3.5em;
  }

  .cta-section p {
    font-size: 1.6em;
  }

  .cta-buttons {
    margin-top: 350px;
    gap: 25px;
  }

  .cta-buttons a {
    font-size: 1.6em;
    padding: 24px 48px;
    max-width: 350px;
  }
}

/* Telas 2K - WQHD (2560px a 3839px) */
@media screen and (min-width: 2560px) {
  .cta-section {
    padding: 100px 14vw;
    min-height: 900px;
  }

  .cta-section h2 {
    font-size: 4.2em;
  }

  .cta-section p {
    font-size: 1.8em;
  }

  .cta-buttons {
    margin-top: 450px;
    gap: 30px;
  }

  .cta-buttons a {
    font-size: 1.8em;
    padding: 28px 54px;
    max-width: 400px;
  }
}

/* Telas 4K e acima (3840px ou mais) */
@media screen and (min-width: 3840px) {
  .cta-section {
    padding: 120px 16vw;
    min-height: 1200px;
  }

  .cta-section h2 {
    font-size: 5em;
  }

  .cta-section p {
    font-size: 2.2em;
  }

  .cta-buttons {
    margin-top: 600px;
    gap: 40px;
  }

  .cta-buttons a {
    font-size: 2.2em;
    padding: 36px 64px;
    max-width: 500px;
  }
}

   
   
@media (max-width: 768px) {
  .cta-section {
    position: relative; /* Necessário para posicionar o botão em relação ao container */
    height: auto;
    aspect-ratio: 3 / 4;
    background-image: url('/solzinho_florescer/Cta_celular.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px 0;
    width: 100%;
  }

  .cta-buttons {
    position: absolute;
    bottom: 40px; /* distancia do rodapé da imagem */
    left: 30%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 70%;
    max-width: 180px;
  }

  .cta-buttons a {
    padding: 15px;
    font-size: 1.1em;
    border-radius: 8px;
    text-align: center;
  }

  .btn-whatsapp {
    background-color: #0e8405;
    
    color: #fff;
  }

  .btn-agendar {
    background-color: #ee9211;
    color: #fff;
  }

  
}
@media (max-width: 480px) {
  .cta-section {
    padding: 20px 5vw;
    min-height: 300px;
  }

  .cta-section h2 {
    font-size: 1.3em;
  }

  .cta-section p {
    font-size: 0.9em;
  }

  .cta-buttons {
    margin-top: 120px;
    gap: 12px;
  }

  .cta-buttons a {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}


  /* Formulário */
  #formulario-agendamento {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 20px;
  }
  #formulario-agendamento.show {
    display: block;
    opacity: 1;
  }

  form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  form input,
  form textarea {
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #000;
  }

  form button {
    padding: 15px;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }


/* Galeria e cartões */
/*.seccao-cartoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}

.lista-cartoes {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
  flex: 1;
  flex-wrap: wrap;
}

.cartao-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column-reverse; 
  align-items: center;
  gap: 50px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center; 
  
}

.cartao-item:nth-child(1) img {
 width: 250px;
  height: 400px;
     flex-shrink: 0;
     
 
}
.cartao-item:nth-child(2) img {
   width: 370px;
  height: 370px;
   flex-shrink: 0;
    margin-bottom: 30px; 
 
}
.cartao-item:nth-child(3) img {
  width: 250px;
  height: 400px;
   flex-shrink: 0;
   margin-left: 30px; 
 
}
.cartao-item:nth-child(4) img {
  width: 420px;
  height: 370px;
   flex-shrink: 0;
    margin-bottom: 30px; 
 
}

.icone-lateral {
  background: transparent; 
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px; 
  height: 220px; 
   border: none; 
  margin-left: 0; 
}

.icone-lateral img {
  width: 300px;
  height: 550px;
  display: block;
  }
.cartao-item:nth-child(1) {
  background-color: #ffb29a; 
}

.cartao-item:nth-child(2) {
  background-color: #aaf9f1; 
}

.cartao-item:nth-child(3) {
  background-color: #c1a1f8; 
}
.cartao-item:nth-child(4) {
  background-color: #fba6c3; 
}

@media (max-width: 768px) {
  .seccao-cartoes {
    flex-direction: column;
    align-items: center;
  }

  .icone-lateral {
    margin-top: 30px;
  }
}*/

/* ===== Estilo base (Desktop médio ~1920px recomendado) ===== */
.seccao-cartoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}

.lista-cartoes {
  display: flex;
  margin-bottom: 20px;
  gap: 40px; /* aumenta o espaço entre os cards */
  flex: 1;
  flex-wrap: wrap;
}

.cartao-item {
  background: white;
  padding: 30px; /* mais respiro interno */
  border-radius: 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px; /* aumenta espaço entre imagem e texto */
  min-width: 320px; /* cards mais largos */
  flex: 1 1 320px;
  text-align: center;
  max-width: 460px; /* cards mais largos/altos */
}

/* Área da imagem padronizada */
.cartao-item img {
  width: 100%;
  aspect-ratio: 4 / 5;   /* mantém todos iguais */
  object-fit: cover;     /* preenche cortando o excesso */
  border-radius: 12px;
}

.icone-lateral {
  background: transparent; 
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px; 
  height: 220px; 
  border: none; 
  margin-left: 0; 
}

.icone-lateral img {
  width: 300px;
  height: 550px;
  display: block;
}

.cartao-item:nth-child(1) { background-color: #ffb29a; }
.cartao-item:nth-child(2) { background-color: #aaf9f1; }
.cartao-item:nth-child(3) { background-color: #c1a1f8; }
.cartao-item:nth-child(4) { background-color: #fba6c3; }

.texto-cartao {
  margin-bottom: 10px;
  font-family: 'Luckiest Guy', cursive;
  font-size: 30px;
  color: #002B7F;
}

  /*.seccao-cartoes {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    width: 100%;  
    padding: 20px 40px;
    box-sizing: border-box;
    gap: 40px;
  }

  .lista-cartoes {
    display: flex;
    margin-bottom: 20px;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center; 
  }

  .cartao-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    width: 400px;   
    height: 600px;  
    text-align: center;
  }


  .cartao-item h3,
  .cartao-item p {
    margin: 0;
    align-self: flex-start;
  }

  
  .cartao-item img {
    width: 100%;
    height: 70%;       
    object-fit: cover;
    border-radius: 12px;
  }

  .cartao-item:nth-child(1) { background-color: #ffb29a; }
  .cartao-item:nth-child(2) { background-color: #aaf9f1; }
  .cartao-item:nth-child(3) { background-color: #c1a1f8; }
  .cartao-item:nth-child(4) { background-color: #fba6c3; }
}*/
@media (min-width: 1920px) and (max-width: 3000px) {
  .seccao-cartoes {
    display: flex;
    justify-content: space-between;
    align-items: center; /* manter o ícone lateral alinhado */
    width: 100%;  
    padding: 20px 40px;
    box-sizing: border-box;
    gap: 40px;
  }

  .lista-cartoes {
    display: flex;
    margin-bottom: 20px;
    gap: 40px;
    flex: 1;
    flex-wrap: wrap;
  }

  .cartao-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column; /* texto no topo */
    /*align-items: center;*/
    align-items: stretch; /* ocupa toda a largura */
    gap: 35px;
    min-width: 320px;
    max-width: 460px;
    width: 400px;   /* largura fixa */
    height: 600px;  /* altura fixa */
      justify-content: flex-start; /* força o texto para o topo */

    text-align: center;
  }

  .cartao-item h3,
  .cartao-item p {
    margin: 0;
    align-self: flex-start; /* texto no topo */
  }

  .cartao-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
  }

  /* ícone lateral mantém o mesmo CSS */
  .icone-lateral {
    background: transparent; 
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px; 
    height: 220px; 
    border: none; 
    margin-left: 0; 
  }

  .icone-lateral img {
    width: 300px;
    height: 550px;
    display: block;
  }

  .cartao-item:nth-child(1) { background-color: #ffb29a; }
  .cartao-item:nth-child(2) { background-color: #aaf9f1; }
  .cartao-item:nth-child(3) { background-color: #c1a1f8; }
  .cartao-item:nth-child(4) { background-color: #fba6c3; }

  .cartao-item .texto-cartao {
  margin-bottom: 10px;
  font-family: 'Luckiest Guy', cursive;
  font-size: 30px;
  color: #002B7F;
}

}


@media (min-width: 1600px) and (max-width: 1919px) {
  .seccao-cartoes {
  display: flex;
  justify-content: flex-start; /* mantém os itens juntos à esquerda */
  align-items: center;
  gap: 40px; /* espaço entre cards e ícone */
}
  .lista-cartoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 com colunas iguais */
    gap: 36px;
    max-width: 940px; /* 2 cards de 460px + 36px gap */
    justify-content: center; /* centraliza */
  }

  .cartao-item {
    width: 460px; /* força largura exata */
    padding: 30px;
    gap: 35px;
  }

  .cartao-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    max-height: 450px;
  }

  .icone-lateral {
    margin-left: 150px;
  }

  .icone-lateral img {
    width: 450px;
    height: auto;
  }
}

/* --- responsividade abaixo de 1600px --- */
/* --- responsividade abaixo de 1600px --- */
@media (max-width: 1600px) {
  .lista-cartoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 */
    gap: 36px; /* espaçamento horizontal/vertical entre os cards */
    max-width: 1000px; /* aumenta a largura da grid para caber cards maiores */
    justify-content: center; /* centraliza os cards */
  }

  .cartao-item {
    width: 100%;
    max-width: 460px; /* tamanho máximo do card */
    padding: 30px;    /* aumenta respiro interno */
    gap: 35px;        /* aumenta distância entre imagem e texto */
  }

  .cartao-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    max-height: 450px; /* controla altura da imagem */
  }

  /* professora mantém posição */
  .icone-lateral {
    margin-left: 20px; /* aproxima da grid */
    width: auto;
    height: auto;
  }

  .icone-lateral img {
    width: 380px;
    height: auto;
  }
}

@media (max-width: 1600px) {
  .lista-cartoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 */
    gap: 36px; /* espaçamento horizontal/vertical entre os cards */
    max-width: 1000px; /* aumenta a largura da grid para caber cards maiores */
    justify-content: center; /* centraliza os cards */
  }

  .cartao-item {
    width: 100%;
    max-width: 460px; /* tamanho máximo do card */
    padding: 30px;    /* aumenta respiro interno */
    gap: 35px;        /* aumenta distância entre imagem e texto */
  }

  .cartao-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    max-height: 450px; /* controla altura da imagem */
  }

  /* professora mantém posição */
  .icone-lateral {
    margin-left: 20px; /* aproxima da grid */
    width: auto;
    height: auto;
  }

  .icone-lateral img {
    width: 380px;
    height: auto;
  }
}

/* tablets/celulares */
@media (max-width: 900px) {
  .lista-cartoes {
    grid-template-columns: 1fr; /* 1 por linha */
    max-width: 100%;
    gap: 28px;
  }

  .cartao-item {
    max-width: 90%;
  }

  .icone-lateral {
    margin: 0 auto;
  }

  .icone-lateral img {
    width: 250px;
  }
}


/* tablets/celulares */
@media (max-width: 900px) {
  .lista-cartoes {
    grid-template-columns: 1fr; /* 1 por linha */
    max-width: 100%;
    gap: 28px;
  }

  .cartao-item {
    max-width: 90%;
  }

  .icone-lateral {
    margin: 0 auto;
  }

  .icone-lateral img {
    width: 250px;
  }
}


/* ===== Mobile (até 768px) ===== */
@media (max-width: 768px) {
  .seccao-cartoes {
    flex-direction: column;
    align-items: center;
  }

  .lista-cartoes {
    justify-content: center;
    gap: 20px;
  }

  .cartao-item {
    min-width: 90%;
    max-width: 400px;
    gap: 30px;
  }

  .cartao-item img {
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
  }

  .icone-lateral {
    width: 220px; 
    height: 350px; 
    margin-bottom: 20px;
  }

  .icone-lateral img {
    width: 200px;
    height: 400px;
  }
}

/* ===== Tablets e notebooks pequenos (até 1024px) ===== */
/*@media (max-width: 1024px) {
  .cartao-item {
    flex: 1 1 45%;
    min-width: 260px;
  }
  .cartao-item img {
    max-width: 90%;
    height: auto;
  }
}


@media (max-width: 1440px) {
  .cartao-item {
    flex: 1 1 48%;
  }
  .seccao-cartoes {
    gap: 30px;
    padding: 20px;
  }
  .cartao-item img {
    max-width: 80%;
    height: auto;
  }
}


@media (min-width: 1920px) {
  .seccao-cartoes {
    padding: 40px 80px;
    gap: 60px;
  }

  .cartao-item {
    gap: 60px;
    max-width: 500px;
  }
}


@media (min-width: 2560px) {
  .seccao-cartoes {
    max-width: 2200px;
    margin: 0 auto;
    gap: 80px;
  }
  .cartao-item {
    max-width: 600px;
  }
}


@media (min-width: 3840px) {
  .seccao-cartoes {
    max-width: 3200px;
    margin: 0 auto;
  }
  .cartao-item {
    max-width: 700px;
  }
}*/

/* Vídeo explicativo */
/*.video-explicativo {
  text-align: center;
  padding: 5vw 3vw;
  background-color:   #002B7F;
  color: #f0f0f0;
}

.video-explicativo h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 2.5vw;
  color: #FFD700;
}

.video-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.video-container iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 8px;
}


@media (max-width: 768px) {
  .video-explicativo {
    padding: 5vw 5vw;
  }

  .video-explicativo h1 {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 4vw;
  }

  .video-container iframe {
    max-width: 100%;   
    width: 100% !important;  
    height: auto;      
      display: block;

  }
}

@media (max-width: 480px) {
  .video-explicativo {
    padding: 2vw; 
  }

  .video-explicativo h1 {
    font-size: clamp(18px, 7vw, 28px);
    margin-bottom: 5vw;
  }

  .video-container {
    max-width: 100%; 
    overflow-x: hidden;
  }

  .video-container iframe {
    width: 100% !important; 
  max-width: 100%;
  height: auto;
  display: block;
  }

}*/

/* Vídeo explicativo */
/* Vídeo explicativo */
.video-explicativo {
  text-align: center;
  padding: 2vw 3vw;
  background-color:   #002B7F;/*  #003366; Remova ou altere se o fundo do site for diferente */
  color: #f0f0f0;
}

.video-explicativo h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 2.5vw;
  color: #FFD700;
}

.video-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  
}

.video-container iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 8px;
}
/* Media query para telas grandes (resolução maior que 1680x1050) */
@media (min-width: 1681px) {
.video-explicativo {
    padding: 2vw 3vw;
    max-height: calc(450px + 5vw + 10vw); /* altura do vídeo + padding aproximado */
    overflow: hidden;
  }
}


/* Ajustes para telas menores */
@media (max-width: 768px) {
  .video-explicativo {
    padding: 3vw;
  }

  .video-explicativo h1 {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 4vw;
  }
}

@media (max-width: 480px) {
  .video-explicativo {
    padding: 2vw;
  }

  .video-explicativo h1 {
    font-size: clamp(18px, 7vw, 28px);
    margin-bottom: 5vw;
  }
}

/*Final do video*/

/* FAQ */
/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 40px 20px;
  /*padding-bottom: 20px;*/
  /*padding-top: 80px;*/
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-box {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  padding: 24px;
  border-left: 6px solid #FFC107;
  transition: all 0.4s ease;
  text-align: left;
}

.faq-box:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-box[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.pagina-faq .faq-section {
  margin-top: 60px;
}

.faq-box summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  list-style: none;
  padding-right: 30px;
  color: #002B7F;
}

.faq-box summary:focus {
  outline: none;
}

.faq-box summary::-webkit-details-marker {
  display: none;
}

.faq-box summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.faq-box[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-box p {
  margin-top: 18px;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
  animation: fadeIn 0.4s ease-in-out;
}

/* Animação ao abrir */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão "Saber Mais" (opcional) */
.faq-button-wrapper {
  text-align: right;
  margin-top: 15px;
  padding-right: 10px;
}

.faq-button {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #002B7F;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.faq-button:hover {
  background-color: #e6b800;
  transform: scale(1.03);
}
/*Final do FAQ*/

/* Seção Localização */
/* Seção Localização */
.secao-localizacao {
  padding: 30px 5vw;
  background-color: #fff;
}

.localizacao-texto {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.localizacao-titulo {
  font-size: 32px;
  font-weight: 700;
  color: #002B7F;
  margin-bottom: 10px;
}

.localizacao-descricao {
  font-size: 16px;
  color: #555;
}

.localizacao-mapa {
  width: 100vw;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.localizacao-botao-wrapper {
  text-align: center;
  margin-top: 20px;
}

.localizacao-botao {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #002B7F;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.localizacao-botao:hover {
  background-color: #f5c600;
  transform: translateY(-2px);
}

.localizacao-aviso {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}

/* Telas pequenas (até 480px) */
@media (max-width: 480px) {
  .localizacao-titulo {
    font-size: 24px;
  }

  .localizacao-descricao {
    font-size: 14px;
  }

  .localizacao-mapa {
    height: 250px;
    max-width: 100vw;
  }

  .localizacao-botao {
    font-size: 14px;
    padding: 8px 16px;
  }

  .secao-localizacao {
    padding: 20px 10px;
  }
}

/* Telas médias (481px a 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .localizacao-titulo {
    font-size: 28px;
  }

  .localizacao-descricao {
    font-size: 15px;
  }

  .localizacao-mapa {
    height: 350px;
    max-width: 90vw;
  }

  .localizacao-botao {
    font-size: 14px;
    padding: 9px 18px;
  }

  .secao-localizacao {
    padding: 25px 20px;
  }
}

/* Telas grandes a partir de 768px */
@media (min-width: 768px) {
  .localizacao-titulo {
    font-size: 32px;
  }

  .localizacao-descricao {
    font-size: 16px;
  }

  .localizacao-mapa {
    height: 450px;
    max-width: 900px;
  }

  .localizacao-botao {
    font-size: 15px;
    padding: 10px 20px;
  }

  .secao-localizacao {
    padding: 30px 5vw;
  }
}


#contato {
 /* padding: 60px 5vw;*/
  background-color: #fff;
    padding-top: 90px; /* um pouco mais que a altura da navbar */

}

.contato-intro {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.contato-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #002B7F;
  margin-bottom: 10px;
}

.contato-intro p {
  font-size: 16px;
  color: #555;
}

.contato-mapa {
  width: 100vw;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contato-botao-wrapper {
  text-align: center;
  margin-top: 20px;
}

.contato-botao {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #002B7F;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contato-botao:hover {
  background-color: #ffc600;
  transform: scale(1.02);
}

.contato-aviso {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 768px) {
  #contato {
    padding-top: 90px; /* um pouco menos para mobile */
    padding-left: 15px;
    padding-right: 15px;
  }

  .contato-intro h2 {
    font-size: 30px; /* reduz título */
  }

  .contato-intro p {
    font-size: 20px; /* reduz texto */
  }

  .contato-mapa {
    width: 100%;
    height: 300px; /* altura menor no mobile */
  }

  .contato-botao {
    font-size: 20px;
    padding: 8px 16px;
  }

  .contato-aviso {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .contato-intro h2 {
    font-size: 25px;
  }

  .contato-intro p {
    font-size: 20px;
  }

  .contato-mapa {
    height: 250px;
  }
}

/* Footer */
footer {
  background-color: #002B7F; /* azul escuro */
  color: white;
  padding: 40px 20px;
  width: 100vw;
  margin: 0;
  text-align: center;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

footer h3 {
  margin-bottom: 20px;
  color: white;
}

.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links li,
.footer-social li {
  margin: 0;
}

footer a {
  color: #FFD700; /* amarelo ouro */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
  color: #FFC107; /* amarelo mais claro no hover */
  outline: none;
}

.footer-copy {
  font-size: 14px;
  margin-top: 8px;
  color: white;
}
/* Telas pequenas até 480px */
@media (max-width: 480px) {
  footer {
    padding: 30px 10px;
  }

  footer h3 {
    font-size: 1.4rem;
  }

  footer a {
    font-size: 0.9rem;
  }

  .footer-links,
  .footer-social {
    gap: 15px;
  }
}

/* Telas médias 481px até 768px */
@media (min-width: 481px) and (max-width: 768px) {
  footer {
    padding: 35px 15px;
  }

  footer h3 {
    font-size: 1.6rem;
  }

  footer a {
    font-size: 0.95rem;
  }

  .footer-links,
  .footer-social {
    gap: 18px;
  }
}

/* Telas grandes acima de 768px */
@media (min-width: 769px) {
  footer {
    padding: 40px 20px;
  }

  footer h3 {
    font-size: 1.8rem;
  }

  footer a {
    font-size: 1rem;
  }

  .footer-links,
  .footer-social {
    gap: 20px;
  }
}

/* Modal */
/* Modal */
.modal {
  display: none; /* Inicialmente escondido */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: 5% auto; /* centralizado vertical e horizontalmente */
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Animação fade para o modal */
.fade {
  animation: fade 1.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Botão WhatsApp fixo no canto inferior direito */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.whatsapp-button img {
  display: block;      /* remove espaços em linha */
  width: 100%;         /* a imagem ocupa 100% do container */
  height: 100%;        /* mantém a proporção da altura */
  object-fit: contain; /* mantém proporção, não corta */
  border-radius: 50%;  /* garante que fique redonda */
}


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


/* Media Queries */
/*@media (max-width: 768px) {
  .nav-links {}
  .nav-links.show {}
  .hamburger {}
}

@media (max-width: 1024px) {
  .cta-section {}
}

@media (min-width: 1600px) {
  .cta-section {}
}*/

/*pagina sobre*/
/* Tamanhos de fonte usados no conteúdo */
.font18 {
  font-size: 20px;
}

.font14 {
  font-size: 14px;
}

 /*CSS DA PAGINA SOBRE 1*/
  .sobre-section {
  display: flex;
  flex-wrap: wrap;
    padding: 120px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #8de1ff;
  gap: 40px;
}

.sobre-section img {
  width: 600px;
    
  border-radius: 20px;
}

.sobre-section .text-container {
  max-width: 600px;
  color: #444;
}
.sobre-section h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}

.sobre-section h4.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section h4.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
/*FINAL DO CSS DA PAGINA SOBRE 1*/

/*CSS DA PAGINA SOBRE 2*/
  .sobre-section2 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 40px;
}

.sobre-section2 img {
  width: 600px;
  border-radius: 20px;
}

.sobre-section2 .text-container2 {
  max-width: 600px;
  color: #444;
}


/*FINAL DO CSS DA PAGINA SOBRE 2*/

/*CSS DA PAGINA SOBRE 3*/
  .sobre-section3 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fba8fc;
  gap: 40px;
}

.sobre-section3 img {
  width: 600px;
  border-radius: 20px;
}

.sobre-section3 .text-container3 {
  max-width: 600px;
  color: #444;
}

@media (max-width: 768px) {
  /* Seções com imagem primeiro no HTML */
  .sobre-section {
    margin-top: 80px;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .sobre-section3 {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  /* Seção onde o texto vem primeiro no HTML */
  .sobre-section2 {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 20px;
  }

  /* Ajustes para todas as imagens */
  .sobre-section img,
  .sobre-section2 img,
  .sobre-section3 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  /* Ajustes para todos os textos */
  .text-container,
  .text-container2,
  .text-container3 {
    max-width: 100%;
    text-align: center;
  }
}

/*Adição*/
@media (max-width: 1280px) {
  .sobre-section2,
  .sobre-section5 {
    flex-direction: column-reverse; /* Imagem em cima, texto embaixo */
    padding: 20px;
    gap: 20px;
  }
}



/*FINAL DO CSS DA PAGINA SOBRE 3*/

/*CSS DA PAGINA SOBRE 4*/

.sobre-section4 {
  display: flex;
  flex-wrap: wrap;
    padding: 120px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #8de1ff;
  gap: 40px;
}

.sobre-section4 img {
  width: 800px;
    
  border-radius: 20px;
}

.sobre-section4 .text-container {
  max-width: 600px;
  color: #444;
}
.sobre-section4 h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section4 h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}

@media (max-width: 768px) {
  .sobre-section4 {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .sobre-section4 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .sobre-section4 .text-container {
    max-width: 100%;
    text-align: center;
  }
}

/*FINAL DO CSS DA PAGINA SOBRE 4*/

/*CSS DA PAGINA SOBRE 5*/

  .sobre-section5 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 40px;
}

.sobre-section5 img {
  width: 600px;
  border-radius: 20px;
}

.sobre-section5 .text-container5 {
  max-width: 700px;
  color: #444;
}
.sobre-section5 h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section5 h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
@media (max-width: 768px) {
  .sobre-section5 {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 20px;
  }

  .sobre-section5 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .sobre-section5 .text-container5 {
    max-width: 100%;
    text-align: center;
  }
}

/*FINAL DO CSS DA PAGINA SOBRE 5*/



/*Galeria pagina sobre*/
.sobre-container-cartoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}

.sobre-lista-itens {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
  flex: 1;
  flex-wrap: wrap;
}

.sobre-item-cartao {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column-reverse; /* texto acima da imagem */
  align-items: center;
  gap: 50px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center; /* centraliza texto */
}

.sobre-item-cartao:nth-child(1) img {
  width: 700px;
  height: 400px;
  flex-shrink: 0;
}

.sobre-item-cartao:nth-child(2) img {
  width: 240px;
  margin-top: 50px;
  height: 320px;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.sobre-item-cartao:nth-child(3) img {
  width: 500px;
  height: 400px;
  flex-shrink: 0;
  margin-left: 30px;
}

.sobre-item-cartao:nth-child(4) img {
  margin-top: 50px;
  width: 150px;
  height: 225px;
  flex-shrink: 0;
  margin-bottom: 125px;
}

.sobre-icone-flutuante {
  background: transparent;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border: none;
  margin-left: 0;
}

.sobre-icone-flutuante img {
  width: auto;
  height: 550px;
  display: block;
}

.sobre-item-cartao:nth-child(1) {
  background-color: #ffb29a;
}

.sobre-item-cartao:nth-child(2) {
  background-color: #aaf9f1;
}

.sobre-item-cartao:nth-child(3) {
  background-color: #c1a1f8;
}

.sobre-item-cartao:nth-child(4) {
  background-color: #fba6c3;
}

/* Responsividade */
@media (max-width: 768px) {
  .sobre-container-cartoes {
    flex-direction: column;
    align-items: center;
  }

  .sobre-icone-flutuante {
    margin-top: 30px;
  }
}
.sobre-titulo-G {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2.25rem, 5vw, 6rem); /* Usando o mesmo clamp dos títulos principais */
  color: #002B7F;
}
/*FINAL DA GALERIA PAGINA SOBRE*/


/* Botão */
  .btn-politica {
  display: block;
  margin: 20px auto;
  background-color: #00bfff;
  color: white;
  padding: 10px 20px;
  font-family: 'Baloo 2', cursive;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}
  .btn-politica:hover {
    background-color: #009acd;
  }

  /* Modal background */
  .modal-politica {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    font-family: 'Baloo 2', cursive;
  }

  /* Modal conteúdo */
  .modal-content-politica {
    background-color: #fff;
    margin: 8% auto;
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    line-height: 1.5;
  }

  /* Botão fechar */
  .close-politica {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .close-politica:hover {
    color: #00bfff;
  }

  /* Link dentro do modal */
  .modal-content-politica a {
    color: #00bfff;
    text-decoration: none;
  }
  .modal-content-politica a:hover {
    text-decoration: underline;
  }

  /* Responsivo */
  @media (max-width: 640px) {
    .modal-content-politica {
      margin: 15% 15px;
      padding: 20px;
      max-width: 90%;
    }
  }

/* ===== Política de Privacidade ===== */
.sec-politica {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Baloo 2', cursive;
  color: #333;
  line-height: 1.7;
}

.sec-politica h1 {
  font-size: 2.2rem;
  text-align: center;
  color: #007acc;
  margin-bottom: 30px;
}

.sec-politica h2 {
  font-size: 1.5rem;
  color: #007acc;
  margin-top: 30px;
  margin-bottom: 16px;
}

.sec-politica p {
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.sec-politica ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.sec-politica li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.sec-politica a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

.sec-politica a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 640px) {
  .sec-politica {
    padding: 0 15px;
  }

  .sec-politica h1 {
    font-size: 1.8rem;
  }

  .sec-politica h2 {
    font-size: 1.3rem;
  }

  .sec-politica p,
  .sec-politica li {
    font-size: 1rem;
  }
}

/*GALERIA DE IMAGENS*/
  .galeria-instagram {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }

  .galeria-instagram h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #000;
    margin-bottom: 30px;
  }

  .grid-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

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

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

  .grid-fotos img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .grid-fotos img:hover {
    transform: scale(1.03);
  }

  

 /* #fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 30px 20px 0 20px;
}

#fatores-diferenciais .item-beneficio {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

#fatores-diferenciais .item-beneficio:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

#fatores-diferenciais .item-beneficio:nth-child(1) { background-color: #f8f0c5; }
#fatores-diferenciais .item-beneficio:nth-child(2) { background-color: #b3e5fc; }
#fatores-diferenciais .item-beneficio:nth-child(3) { background-color: #f8bbd0; }


#fatores-diferenciais .item-beneficio h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  color: #333;
}

#fatores-diferenciais .item-beneficio p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}*/


/*#fatores-diferenciais {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 20px 30px;
  box-sizing: border-box;
}

#fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 20px 0 20px;
}

#fatores-diferenciais .item-beneficio {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

#fatores-diferenciais .item-beneficio:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

#fatores-diferenciais .item-beneficio:nth-child(1) { background-color: #f8f0c5; }
#fatores-diferenciais .item-beneficio:nth-child(2) { background-color: #b3e5fc; }
#fatores-diferenciais .item-beneficio:nth-child(3) { background-color: #f8bbd0; }

#fatores-diferenciais .item-beneficio h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  color: #333;
}

#fatores-diferenciais .item-beneficio p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}*/

/*#fatores-diferenciais {
  max-width: 80%;
  margin: 0 auto;
  padding: 40px 60px;
  box-sizing: border-box;
  background-color: #fdfdfd;
}

#fatores-diferenciais .titulo-secao {
  text-align: center;
  margin-bottom: 40px;
}

#fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
}

#fatores-diferenciais .item-beneficio {
  padding: 30px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-height: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}


#fatores-diferenciais .item-beneficio h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}


#fatores-diferenciais .item-beneficio p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

#fatores-diferenciais .item-beneficio:nth-child(1) {
  background-color: #ffb29a;
}
#fatores-diferenciais .item-beneficio:nth-child(2) {
  background-color: #aaf9f1;
}
#fatores-diferenciais .item-beneficio:nth-child(3) {
  background-color: #c1a1f8;
}
#fatores-diferenciais .item-beneficio:nth-child(4) {
  background-color: #fba6c3;
}
#fatores-diferenciais .item-beneficio:nth-child(5) {
  background-color: #ffe28a;
}
#fatores-diferenciais .item-beneficio:nth-child(6) {
  background-color: #b0e57c;
}
#fatores-diferenciais .item-beneficio:nth-child(7) {
  background-color: #ffd8a9;
}


@media (max-width: 768px) {
  #fatores-diferenciais {
    padding: 30px 20px;
  }

  #fatores-diferenciais .grid-beneficios {
    grid-template-columns: 1fr;
  }

  #fatores-diferenciais .item-beneficio {
    max-width: 100%;
  }

  #fatores-diferenciais .item-beneficio h3 {
    font-size: 1.4rem;
  }

  #fatores-diferenciais .item-beneficio p {
    font-size: 1rem;
  }
}*/

#fatores-diferenciais {
  max-width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  box-sizing: border-box;
  background-color: #fdfdfd;
}

#fatores-diferenciais .titulo {
  text-align: left;
  font-size: clamp(2.25rem, 5vw, 6rem); /* Usando o mesmo clamp dos títulos principais */
  font-family: 'Luckiest Guy', cursive;
  color: #002B7F;
  margin-bottom: 2.5rem; /* 40px convertido para rem (40/16 = 2.5) */
  display: block;
}

#fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

#fatores-diferenciais .item-beneficio {
  background: white;
  /*padding: 30px;*/
    padding: 60px 30px; /* top/bottom 60px, left/right 30px */

  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  min-height: 280px;
}

/* Títulos maiores */
#fatores-diferenciais .item-beneficio h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002B7F;
  margin: 0;
  font-family: 'Luckiest Guy';
}

/* Textos maiores */
#fatores-diferenciais .item-beneficio p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Cores diferentes */
#fatores-diferenciais .item-beneficio:nth-child(1) {
  background-color: #ffb29a;
}
#fatores-diferenciais .item-beneficio:nth-child(2) {
  background-color: #aaf9f1;
}
#fatores-diferenciais .item-beneficio:nth-child(3) {
  background-color: #c1a1f8;
}
#fatores-diferenciais .item-beneficio:nth-child(4) {
  background-color: #fba6c3;
}
#fatores-diferenciais .item-beneficio:nth-child(5) {
  background-color: #ffe28a;
}
#fatores-diferenciais .item-beneficio:nth-child(6) {
  background-color: #b0e57c;
}

/* Responsividade (opcional, pois grid já se adapta bem) */
@media (max-width: 768px) {
  #fatores-diferenciais {
    padding: 30px 20px;
  }

  #fatores-diferenciais .titulo {
    font-size: 36px;
  }

  #fatores-diferenciais .item-beneficio h3 {
    font-size: 1.4rem;
  }

  #fatores-diferenciais .item-beneficio p {
    font-size: 1rem;
  }
}



/*INICIO Do CSS DO SLIDESHOW*/
.sobre-nos {
    background: #fff;
    padding: 80px 5vw;
    margin-top: 60px;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }

  .texto {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
  }

  .texto h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #111;
  }

  .texto p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
  }

  .btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn:hover {
    background: #ffc107;
    color: #000;
  }

  .slideshow {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides {
    width: 100%;
    height: 100%;
  }

  .slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide.active {
    display: block;
  }  


  .sobre-nos1 {
    background: #fff;
    padding: 40px 5vw;
    /*margin-top: 60px;*/
  }

  .container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
 .slideshow1 {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides1 {
    width: 100%;
    height: 100%;
  }

  .slide1 {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide1.active1 {
    display: block;
  }  
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
  }

  /* Imagem primeiro */
  .slideshow1 {
    order: 1;
    max-width: 100%;
    height: 300px;
  }

  /* Texto e botão depois */
  .texto {
    order: 2;
    max-width: 100%;
    text-align: center;
  }
}

  .sobre-nos2 {
    background: #fff;
    padding: 40px 5vw;
    /*margin-top: 20px;*/
  }

  .container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
 .slideshow2 {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides2 {
    width: 100%;
    height: 100%;
  }

  .slide2 {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide2.active2 {
    display: block;
  }  
@media (max-width: 768px) {
  .container2 {
    flex-direction: column;
  }

  /* Imagem primeiro */
  .slideshow2 {
    order: 1;
    max-width: 100%;
    height: 300px;
  }

  /* Texto e botão depois */
  .texto {
    order: 2;
    max-width: 100%;
    text-align: center;
  }
}


  .sobre-nos3 {
    background: #fff;
    padding: 40px 5vw;
    /*margin-top: 60px;*/
  }

  .container3 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
 .slideshow3 {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides3 {
    width: 100%;
    height: 100%;
  }

  .slide3 {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide3.active3 {
    display: block;
  }  
@media (max-width: 768px) {
  .container3 {
    flex-direction: column;
  }

  /* Imagem primeiro */
  .slideshow3 {
    order: 1;
    max-width: 100%;
    height: 300px;
  }

  /* Texto e botão depois */
  .texto {
    order: 2;
    max-width: 100%;
    text-align: center;
  }
}



 .dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .dots span {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
  }

  .dots span.active {
    background: #111;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .slideshow {
      width: 100%;
      height: 300px;
      margin-top: 30px;
    }

    .slide {
      height: 100%;
    }
  }
  /*FINAL DO CSS DO SLIDESHOW*/

 .container-eventos { max-width: 1100px; margin: auto; padding: 40px 20px; }
h2 { color: #1e3a8a; font-size: 2.2rem; margin-bottom: 5px; }
.evento-item { margin-bottom: 30px; border-bottom: 1px solid #fff; padding-bottom: 20px; }
.btn { background-color: #00bfff; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 8px; }
.grid-imagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.grid-imagens img {
  width: 100%;
  /*aspect-ratio: 7.6 /8;*/ /* proporção (largura/altura) ajustável */
  object-fit: cover;
  border-radius: 8px;
}

/* Responsividade para telas menores que 768px */
@media (max-width: 768px) {
  .container-eventos {
    padding: 20px 10px;
  }

  /*h2 {
    font-size: 1.6rem;
    text-align: center;
  }*/

  .evento-item {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 12px;
  }

  .grid-imagens {
    grid-template-columns: 1fr 1fr; /* 2 colunas no mobile */
    gap: 10px;
  }

  .grid-imagens img {
    border-radius: 6px;
  }
}

/*Adição"/
/* Ajustes para telas médias como 1024x768 */
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .texto h2 {
    font-size: 2.2rem; /* em vez de 56px */
  }

  .texto p {
    font-size: 1rem;
  }

  .slideshow,
  .slideshow1,
  .slideshow2,
  .slideshow3 {
    height: 420px; /* reduz altura */
    max-width: 100%;
  }

  .container,
  .container1,
  .container2,
  .container3 {
    gap: 30px; /* menos espaço entre blocos */
  }
}
/*Obrigado*/
#obrigado {
  max-width: 600px;
  margin: 80px auto 60px auto;
  padding: 30px 25px;
  background-color: #f7f7f7; /* fundo claro e suave */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Baloo 2', cursive, sans-serif;
  color: #333;
}

#obrigado h1 {
  font-size: 2.5rem;
  color: #009933; /* verde da identidade */
  margin-bottom: 20px;
  font-weight: 700;
}

#obrigado p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

#obrigado a {
  display: inline-block;
  padding: 14px 32px;
  background-color: #009933; /* verde */
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 153, 51, 0.3);
}

#obrigado a:hover,
#obrigado a:focus {
  background-color: #007a24; /* verde escuro no hover */
  box-shadow: 0 6px 12px rgba(0, 122, 36, 0.5);
  outline: none;
}

/* Responsividade básica */
@media (max-width: 640px) {
  #obrigado {
    margin: 40px 20px;
    padding: 25px 20px;
  }

  #obrigado h1 {
    font-size: 2rem;
  }

  #obrigado p {
    font-size: 1rem;
  }

  #obrigado a {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
/*Final de Obrigado*/


/*adição*/
@media (min-width: 1920px) {
  /* BODY E RESET (ajustes mínimos, principalmente para o padding-top do body se basear na nova altura da navbar) */
  /*body {
    padding-top: 5rem; 
  }*//* Nova altura da navbar (5rem * 1.25 = 6.25rem = 100px) */

  /* NAVBAR */
  .navbar {
    height: 6.25rem; /* 80px * 1.25 = 100px */
    box-shadow: 0 0.15625rem 0.625rem rgba(0, 0, 0, 0.2); /* 2px * 1.25 = 2.5px, 8px * 1.25 = 10px */
  }

  .logo img {
    height: 5.46875rem; /* 70px * 1.25 = 87.5px */
  }

  .nav-links li a {
    font-size: 1.640625rem; /* 21px * 1.25 = 26.25px */
    /* Outras propriedades de cor/transição permanecem */
  }

  /* HERO SECTION */
  .hero {
    padding-top: calc(6.25rem);  /* Nova altura da navbar + 20px*1.25 = 25px */
    padding-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .slideshow-container {
    max-height: 54.6875rem; /* 700px * 1.25 = 875px */
  }

  .slide img {
    max-height: 54.6875rem; /* 700px * 1.25 = 875px */
  }

  /* TÍTULOS GERAIS */
  /* Ajustando o clamp para que o máximo seja 80px (64px * 1.25) e o mínimo 45px (36px * 1.25) */
  .titulo,
  .titulo1 {
    font-size: clamp(2.8125rem, 4.16vw, 5rem); /* min-size 45px, prefer 4.16vw (para ~80px em 1920px), max-size 80px */
    line-height: 1.1; /* Permanece */
  }

  .sobre-titulo-G {
    font-size: clamp(2.8125rem, 4.16vw, 5rem); /* 48px * 1.25 = 60px (agora parte do clamp) */
  }

  #fatores-diferenciais .titulo {
    font-size: clamp(2.8125rem, 4.16vw, 5rem); /* 48px * 1.25 = 60px (agora parte do clamp) */
    margin-bottom: 3.125rem; /* 40px * 1.25 = 50px */
  }

  /* CARDS GERAIS */
  .cards {
    gap: 2.34375rem; /* 30px * 1.25 = 37.5px */
    margin: 2.34375rem 1.5625rem 0 1.5625rem; /* 30px * 1.25, 20px * 1.25 */
  }

  @media (min-width: 1024px) {
    .cards {
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); /* 320px * 1.25 = 400px */
    }
  }

  .card {
    padding: 1.5625rem; /* 20px * 1.25 = 25px */
    border-radius: 1.171875rem; /* 15px * 1.25 = 18.75px */
    box-shadow: 0 0.3125rem 0.78125rem rgba(0, 0, 0, 0.1); /* 4px * 1.25 = 5px, 10px * 1.25 = 12.5px */
    gap: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .card img {
    width: 6.25rem; /* 80px * 1.25 = 100px */
    height: 6.25rem; /* 80px * 1.25 = 100px */
    border-radius: 0.9375rem; /* 12px * 1.25 = 15px */
  }

  /* Ajustes para .card img nas media queries (se estiverem dentro de @media (min-width: 1920px)) */
  @media (min-width: 1024px) and (max-width: 1439px) {
    .card img {
      max-width: 6.25rem; /* 80px * 1.25 = 100px */
    }
  }
  @media (min-width: 1440px) and (max-width: 1919px) {
    .card img {
      max-width: 7.03125rem; /* 90px * 1.25 = 112.5px */
    }
  }
  @media (min-width: 1920px) { /* Este bloco já existe, mas recalcular max-width */
    .card img {
      max-width: 7.8125rem; /* 100px * 1.25 = 125px */
    }
  }


  .card-texto h3 {
    font-size: 1.625rem; /* 1.3rem * 1.25 = 1.625rem (20.8px * 1.25 = 26px) */
    margin: 0 0 0.625rem 0; /* 8px * 1.25 = 10px */
  }

  .card-texto p {
    font-size: 1.25rem; /* 1rem * 1.25 = 1.25rem (16px * 1.25 = 20px) */
  }

  /* CTA SECTION */
  .cta-section {
    min-height: 39.0625rem; /* 500px * 1.25 = 625px */
    padding: 4.6875rem 5vw; /* 60px * 1.25 = 75px */
    margin-top: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .cta-section h2 {
    font-size: 2.5em; /* 2em * 1.25 = 2.5em */
    margin-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .cta-section p {
    font-size: 1.375em; /* 1.1em * 1.25 = 1.375em */
    margin-bottom: 2.34375rem; /* 30px * 1.25 = 37.5px */
    max-width: 54.6875rem; /* 700px * 1.25 = 875px */
  }

  .cta-buttons {
    gap: 1.5625rem; /* 20px * 1.25 = 25px */
    margin-top: 21.875rem; /* 280px * 1.25 = 350px */
  }

  .cta-buttons a {
    padding: 1.171875rem 2.34375rem; /* 15px * 1.25 = 18.75px, 30px * 1.25 = 37.5px */
    font-size: 1.5em; /* 1.2em * 1.25 = 1.5em */
    border-radius: 0.625rem; /* 8px * 1.25 = 10px */
    box-shadow: 0 0.3125rem 0.78125rem rgba(0, 0, 0, 0.2); /* 4px * 1.25 = 5px, 10px * 1.25 = 12.5px */
  }


  /* VÍDEO EXPLICATIVO */
  .video-explicativo {
    padding: 3.90625vw 2.34375vw; /* 5vw * 1.25 = 6.25vw, 3vw * 1.25 = 3.75vw -> voltando aos originais */
  }

  .video-explicativo h1 {
    font-size: clamp(2.1875rem, 5vw, 3.125rem); /* 28px*1.25=35px, 40px*1.25=50px */
    margin-bottom: 3.125vw; /* 2.5vw * 1.25 = 3.125vw */
  }

  .video-container {
    max-width: 62.5rem; /* 800px * 1.25 = 1000px */
    padding-bottom: 56.25%; /* Proporção permanece */
  }

  /* FAQ SECTION */
  .faq-section {
    padding: 3.125rem 1.5625rem; /* 40px * 1.25 = 50px, 20px * 1.25 = 25px */
  }

  .faq-box {
    border-radius: 0.9375rem; /* 12px * 1.25 = 15px */
    box-shadow: 0 0.46875rem 1.5625rem rgba(0, 0, 0, 0.06); /* 6px * 1.25 = 7.5px, 20px * 1.25 = 25px */
    margin-bottom: 1.953125rem; /* 25px * 1.25 = 31.25px */
    padding: 1.875rem; /* 24px * 1.25 = 30px */
    border-left: 0.46875rem solid #FFC107; /* 6px * 1.25 = 7.5px */
  }

  .faq-box summary {
    font-size: 1.5625rem; /* 20px * 1.25 = 25px */
    padding-right: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .faq-box summary::after {
    font-size: 1.875rem; /* 24px * 1.25 = 30px */
  }

  .faq-box p {
    margin-top: 1.40625rem; /* 18px * 1.25 = 22.5px */
    font-size: 1.25rem; /* 16px * 1.25 = 20px */
  }

  .faq-button {
    padding: 0.625rem 1.25rem; /* 8px * 1.25 = 10px, 16px * 1.25 = 20px */
    font-size: 1.09375rem; /* 14px * 1.25 = 17.5px */
    border-radius: 0.625rem; /* 8px * 1.25 = 10px */
    border: 0.15625rem solid #002B7F; /* 2px * 1.25 = 2.5px */
  }

  /* SEÇÃO LOCALIZAÇÃO */
  .secao-localizacao {
    padding: 2.34375rem 5vw; /* 30px * 1.25 = 37.5px */
  }

  .localizacao-texto {
    margin: 0 auto 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .localizacao-titulo {
    font-size: 2.5rem; /* 32px * 1.25 = 40px */
    margin-bottom: 0.78125rem; /* 10px * 1.25 = 12.5px */
  }

  .localizacao-descricao {
    font-size: 1.25rem; /* 16px * 1.25 = 20px */
  }

  .localizacao-mapa {
    height: 35.15625rem; /* 450px * 1.25 = 562.5px */
    border-radius: 0.9375rem; /* 12px * 1.25 = 15px */
    box-shadow: 0 0.3125rem 1.5625rem rgba(0, 0, 0, 0.1); /* 4px * 1.25 = 5px, 20px * 1.25 = 25px */
  }

  .localizacao-botao {
    padding: 0.78125rem 1.5625rem; /* 10px * 1.25 = 12.5px, 20px * 1.25 = 25px */
    font-size: 1.171875rem; /* 15px * 1.25 = 18.75px */
    border: 0.15625rem solid #002B7F; /* 2px * 1.25 = 2.5px */
    border-radius: 0.625rem; /* 8px * 1.25 = 10px */
  }

  .localizacao-aviso {
    font-size: 1.015625rem; /* 13px * 1.25 = 16.25px */
    margin-top: 0.9375rem; /* 12px * 1.25 = 15px */
  }

  /* #CONTATO */
  #contato {
    padding-top: 7.03125rem; /* 90px * 1.25 = 112.5px */
  }

  .contato-intro {
    margin: 0 auto 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .contato-intro h2 {
    font-size: 2.5rem; /* 32px * 1.25 = 40px */
    margin-bottom: 0.78125rem; /* 10px * 1.25 = 12.5px */
  }

  .contato-intro p {
    font-size: 1.25rem; /* 16px * 1.25 = 20px */
  }

  .contato-mapa {
    height: 35.15625rem; /* 450px * 1.25 = 562.5px */
    border-radius: 0.9375rem; /* 12px * 1.25 = 15px */
    box-shadow: 0 0.3125rem 1.5625rem rgba(0, 0, 0, 0.1); /* 4px * 1.25 = 5px, 20px * 1.25 = 25px */
  }

  .contato-botao {
    padding: 0.78125rem 1.5625rem; /* 10px * 1.25 = 12.5px, 20px * 1.25 = 25px */
    font-size: 1.171875rem; /* 15px * 1.25 = 18.75px */
    border: 0.15625rem solid #002B7F; /* 2px * 1.25 = 2.5px */
    border-radius: 0.625rem; /* 8px * 1.25 = 10px */
  }

  .contato-aviso {
    font-size: 1.015625rem; /* 13px * 1.25 = 16.25px */
    margin-top: 0.9375rem; /* 12px * 1.25 = 15px */
  }


  /* FOOTER */
  footer {
    padding: 3.125rem 1.5625rem; /* 40px * 1.25 = 50px, 20px * 1.25 = 25px */
  }

  footer h3 {
    margin-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  footer a {
    font-size: 1.25rem; /* 1rem * 1.25 = 1.25rem (originalmente 1rem) */
  }

  .footer-links,
  .footer-social {
    gap: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .footer-copy {
    font-size: 1.09375rem; /* 14px * 1.25 = 17.5px */
    margin-top: 0.625rem; /* 8px * 1.25 = 10px */
  }

  /* MODAL */
  .modal {
    padding-top: 4.6875rem; /* 60px * 1.25 = 75px */
  }

  .modal-content {
    border-radius: 0.9375rem; /* 12px * 1.25 = 15px */
  }

  .close {
    top: 2.34375rem; /* 30px * 1.25 = 37.5px */
    right: 2.734375rem; /* 35px * 1.25 = 43.75px */
    font-size: 3.125rem; /* 40px * 1.25 = 50px */
  }

  /* WHATSAPP BUTTON */
  .whatsapp-button {
    bottom: 1.5625rem; /* 20px * 1.25 = 25px */
    right: 1.5625rem; /* 20px * 1.25 = 25px */
    padding: 0.46875rem; /* 6px * 1.25 = 7.5px */
    box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.3); /* 4px * 1.25 = 5px, 8px * 1.25 = 10px */
  }

  /* PAGINA SOBRE */
  .font18 {
    font-size: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .font14 {
    font-size: 1.09375rem; /* 14px * 1.25 = 17.5px */
  }

  .sobre-section {
    padding: 9.375rem 3.125rem 3.125rem 3.125rem; /* 120px * 1.25, 40px * 1.25 */
    gap: 3.125rem; /* 40px * 1.25 */
  }

  .sobre-section img {
    width: 46.875rem; /* 600px * 1.25 = 750px */
    border-radius: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .sobre-section .text-container {
    max-width: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .sobre-section2 {
    padding: 3.125rem; /* 40px * 1.25 */
    gap: 3.125rem; /* 40px * 1.25 */
  }

  .sobre-section2 img {
    width: 46.875rem; /* 600px * 1.25 = 750px */
    border-radius: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .sobre-section2 .text-container2 {
    max-width: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .sobre-section3 {
    padding: 3.125rem; /* 40px * 1.25 */
    gap: 3.125rem; /* 40px * 1.25 */
  }

  .sobre-section3 img {
    width: 46.875rem; /* 600px * 1.25 = 750px */
    border-radius: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .sobre-section3 .text-container3 {
    max-width: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .sobre-section4 {
    padding: 9.375rem 3.125rem 3.125rem 3.125rem; /* 120px * 1.25, 40px * 1.25 */
    gap: 3.125rem; /* 40px * 1.25 */
  }

  .sobre-section4 img {
    width: 62.5rem; /* 800px * 1.25 = 1000px */
    border-radius: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .sobre-section4 .text-container {
    max-width: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .sobre-section5 {
    padding: 3.125rem; /* 40px * 1.25 */
    gap: 3.125rem; /* 40px * 1.25 */
  }

  .sobre-section5 img {
    width: 46.875rem; /* 600px * 1.25 = 750px */
    border-radius: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .sobre-section5 .text-container5 {
    max-width: 54.6875rem; /* 700px * 1.25 = 875px */
  }

  /* GALERIA PAGINA SOBRE */
  .sobre-container-cartoes {
    padding: 1.5625rem 3.125rem; /* 20px * 1.25 = 25px, 40px * 1.25 = 50px */
    gap: 3.125rem; /* 40px * 1.25 = 50px */
  }

  .sobre-lista-itens {
    margin-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
    gap: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .sobre-item-cartao {
    padding: 1.5625rem; /* 20px * 1.25 = 25px */
    border-radius: 1.171875rem; /* 15px * 1.25 = 18.75px */
    box-shadow: 0 0.3125rem 0.78125rem rgba(0, 0, 0, 0.1); /* 4px * 1.25 = 5px, 10px * 1.25 = 12.5px */
    gap: 3.90625rem; /* 50px * 1.25 = 62.5px */
    min-width: 20.3125rem; /* 260px * 1.25 = 325px */
  }

  .sobre-item-cartao:nth-child(1) img {
    width: 54.6875rem; /* 700px * 1.25 = 875px */
    height: 31.25rem; /* 400px * 1.25 = 500px */
  }

  .sobre-item-cartao:nth-child(2) img {
    width: 18.75rem; /* 240px * 1.25 = 300px */
    margin-top: 3.90625rem; /* 50px * 1.25 = 62.5px */
    height: 25rem; /* 320px * 1.25 = 400px */
    margin-bottom: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .sobre-item-cartao:nth-child(3) img {
    width: 39.0625rem; /* 500px * 1.25 = 625px */
    height: 31.25rem; /* 400px * 1.25 = 500px */
    margin-left: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .sobre-item-cartao:nth-child(4) img {
    margin-top: 3.90625rem; /* 50px * 1.25 = 62.5px */
    width: 11.71875rem; /* 150px * 1.25 = 187.5px */
    height: 17.578125rem; /* 225px * 1.25 = 281.25px */
    margin-bottom: 9.765625rem; /* 125px * 1.25 = 156.25px */
  }

  .sobre-icone-flutuante {
    padding: 1.5625rem; /* 20px * 1.25 = 25px */
    width: 17.1875rem; /* 220px * 1.25 = 275px */
    height: 17.1875rem; /* 220px * 1.25 = 275px */
  }

  .sobre-icone-flutuante img {
    height: 42.96875rem; /* 550px * 1.25 = 687.5px */
  }

  /* BOTÃO POLÍTICA E MODAL */
  .btn-politica {
    margin: 1.5625rem auto; /* 20px * 1.25 = 25px */
    padding: 0.78125rem 1.5625rem; /* 10px * 1.25 = 12.5px, 20px * 1.25 = 25px */
    border-radius: 0.390625rem; /* 5px * 1.25 = 6.25px */
  }

  .modal-politica {
    /* z-index ajustado para evitar sobreposição */
    z-index: 10001; /* Garante que fique acima de outros modais se houver */
  }

  .modal-content-politica {
    margin: 6.25% auto; /* 8% * 1.25 = 10% -> Ajustado para 6.25% para manter margem */
    padding: 1.953125rem 2.34375rem; /* 25px * 1.25 = 31.25px, 30px * 1.25 = 37.5px */
    border-radius: 0.78125rem; /* 10px * 1.25 = 12.5px */
    max-width: 46.875rem; /* 600px * 1.25 = 750px */
    box-shadow: 0 0.15625rem 0.78125rem rgba(0, 0, 0, 0.3); /* 2px * 1.25 = 2.5px, 10px * 1.25 = 12.5px */
  }

  .close-politica {
    top: 1.171875rem; /* 15px * 1.25 = 18.75px */
    right: 1.5625rem; /* 20px * 1.25 = 25px */
    font-size: 2.1875rem; /* 28px * 1.25 = 35px */
  }

  /* POLÍTICA DE PRIVACIDADE */
  .sec-politica {
    margin: 3.125rem auto; /* 40px * 1.25 = 50px */
    padding: 0 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .sec-politica h1 {
    font-size: 2.75rem; /* 2.2rem * 1.25 = 2.75rem (35.2px * 1.25 = 44px) */
    margin-bottom: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .sec-politica h2 {
    font-size: 1.875rem; /* 1.5rem * 1.25 = 1.875rem (24px * 1.25 = 30px) */
    margin-top: 2.34375rem; /* 30px * 1.25 = 37.5px */
    margin-bottom: 1.25rem; /* 16px * 1.25 = 20px */
  }

  .sec-politica p {
    margin-bottom: 1.40625rem; /* 18px * 1.25 = 22.5px */
    font-size: 1.375rem; /* 1.1rem * 1.25 = 1.375rem (17.6px * 1.25 = 22px) */
  }

  .sec-politica ul {
    padding-left: 1.5625rem; /* 20px * 1.25 = 25px */
    margin-bottom: 1.40625rem; /* 18px * 1.25 = 22.5px */
  }

  .sec-politica li {
    margin-bottom: 0.78125rem; /* 10px * 1.25 = 12.5px */
    font-size: 1.375rem; /* 1.1rem * 1.25 = 1.375rem (17.6px * 1.25 = 22px) */
  }

  /* GALERIA DE IMAGENS */
  .galeria-instagram {
    padding: 3.125rem 1.5625rem; /* 40px * 1.25 = 50px, 20px * 1.25 = 25px */
  }

  .galeria-instagram h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem); /* 32px*1.25=40px, 48px*1.25=60px */
    margin-bottom: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  .grid-fotos {
    gap: 1.5625rem; /* 20px * 1.25 = 25px */
    max-width: 87.5rem; /* 1400px * 1.25 = 1750px */
  }

  .grid-fotos img {
    border-radius: 0.78125rem; /* 10px * 1.25 = 12.5px */
    box-shadow: 0 0.3125rem 0.78125rem rgba(0, 0, 0, 0.1); /* 4px * 1.25 = 5px, 10px * 1.25 = 12.5px */
  }

  /* FATORES DIFERENCIAIS */
  #fatores-diferenciais {
    padding: 3.125rem 4.6875rem; /* 40px * 1.25 = 50px, 60px * 1.25 = 75px */
  }

  #fatores-diferenciais .grid-beneficios {
    grid-template-columns: repeat(auto-fit, minmax(23.4375rem, 1fr)); /* 300px * 1.25 = 375px */
    gap: 2.34375rem; /* 30px * 1.25 = 37.5px */
    margin-top: 3.125rem; /* 40px * 1.25 = 50px */
  }

  #fatores-diferenciais .item-beneficio {
    padding: 4.6875rem 2.34375rem; /* 60px * 1.25 = 75px, 30px * 1.25 = 37.5px */
    border-radius: 1.5625rem; /* 20px * 1.25 = 25px */
    box-shadow: 0 0.46875rem 1.171875rem rgba(0, 0, 0, 0.1); /* 6px * 1.25 = 7.5px, 15px * 1.25 = 18.75px */
    gap: 1.5625rem; /* 20px * 1.25 = 25px */
    min-height: 21.875rem; /* 280px * 1.25 = 350px */
  }

  #fatores-diferenciais .item-beneficio h3 {
    font-size: 3.125rem; /* 2.5rem * 1.25 = 3.125rem (40px * 1.25 = 50px) */
  }

  #fatores-diferenciais .item-beneficio p {
    font-size: 1.5625rem; /* 1.25rem * 1.25 = 1.5625rem (20px * 1.25 = 25px) */
  }

  /* SLIDESHOWS DA PAGINA SOBRE */
  .sobre-nos {
    padding: 6.25rem 5vw; /* 80px * 1.25 = 100px */
    margin-top: 4.6875rem; /* 60px * 1.25 = 75px */
  }

  .texto h2 {
    font-size: 3.5rem; /* 56px * 1.25 = 70px (mantido como 3.5rem ou similar para evitar quebras) */
    margin-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .texto p {
    font-size: 1.375rem; /* 1.1rem * 1.25 = 1.375rem (17.6px * 1.25 = 22px) */
  }

  .btn {
    margin-top: 1.953125rem; /* 25px * 1.25 = 31.25px */
    padding: 0.9375rem 2.1875rem; /* 12px * 1.25 = 15px, 28px * 1.25 = 35px */
    border-radius: 0.390625rem; /* 5px * 1.25 = 6.25px */
  }

  .slideshow {
    min-width: 25rem; /* 320px * 1.25 = 400px */
    max-width: 54.6875rem; /* 700px * 1.25 = 875px */
    height: 35.15625rem; /* 450px * 1.25 = 562.5px */
    border-radius: 0.78125rem; /* 10px * 1.25 = 12.5px */
    box-shadow: 0 0.625rem 2.34375rem rgba(0, 0, 0, 0.1); /* 8px * 1.25 = 10px, 30px * 1.25 = 37.5px */
  }

  .sobre-nos1 {
    padding: 3.125rem 5vw; /* 40px * 1.25 = 50px */
  }

  .slideshow1 {
    height: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .sobre-nos2 {
    padding: 3.125rem 5vw; /* 40px * 1.25 = 50px */
  }

  .slideshow2 {
    height: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .sobre-nos3 {
    padding: 3.125rem 5vw; /* 40px * 1.25 = 50px */
  }

  .slideshow3 {
    height: 46.875rem; /* 600px * 1.25 = 750px */
  }

  .dots span {
    height: 0.9375rem; /* 12px * 1.25 = 15px */
    width: 0.9375rem; /* 12px * 1.25 = 15px */
    margin: 0 0.3125rem; /* 4px * 1.25 = 5px */
  }

  /* AJUSTES PARA TELAS MÉDIAS (1200px) DENTRO DO CONTEXTO DE 1920px */
  @media screen and (max-width: 1200px) and (min-width: 769px) { /* Este bloco já existe, recalcular */
    .texto h2 {
      font-size: 2.75rem; /* 2.2rem * 1.25 = 2.75rem */
    }

    .texto p {
      font-size: 1.25rem; /* 1rem * 1.25 = 1.25rem */
    }

    .slideshow,
    .slideshow1,
    .slideshow2,
    .slideshow3 {
      height: 32.8125rem; /* 420px * 1.25 = 525px */
    }

    .container,
    .container1,
    .container2,
    .container3 {
      gap: 2.34375rem; /* 30px * 1.25 = 37.5px */
    }
  }


  /* EVENTOS */
  .container-eventos {
    max-width: 85.9375rem; /* 1100px * 1.25 = 1375px */
    padding: 3.125rem 1.5625rem; /* 40px * 1.25 = 50px, 20px * 1.25 = 25px */
  }

  h2 {
    font-size: 2.75rem; /* 2.2rem * 1.25 = 2.75rem */
    margin-bottom: 0.390625rem; /* 5px * 1.25 = 6.25px */
  }

  .evento-item {
    margin-bottom: 2.34375rem; /* 30px * 1.25 = 37.5px */
    padding-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  .btn {
    padding: 0.78125rem 1.5625rem; /* 10px * 1.25 = 12.5px, 20px * 1.25 = 25px */
    border-radius: 0.625rem; /* 8px * 1.25 = 10px */
  }

  .grid-imagens {
    grid-template-columns: repeat(auto-fit, minmax(14.0625rem, 1fr)); /* 180px * 1.25 = 225px */
    gap: 1.171875rem; /* 15px * 1.25 = 18.75px */
  }

  .grid-imagens img {
    border-radius: 0.625rem; /* 8px * 1.25 = 10px */
  }

  /* OBRIGADO */
  #obrigado {
    max-width: 46.875rem; /* 600px * 1.25 = 750px */
    margin: 6.25rem auto 4.6875rem auto; /* 80px * 1.25, 60px * 1.25 */
    padding: 2.34375rem 1.953125rem; /* 30px * 1.25, 25px * 1.25 */
    border-radius: 0.9375rem; /* 12px * 1.25 = 15px */
    box-shadow: 0 0.3125rem 1.171875rem rgba(0, 0, 0, 0.1); /* 4px * 1.25 = 5px, 15px * 1.25 = 18.75px */
  }

  #obrigado h1 {
    font-size: 3.125rem; /* 2.5rem * 1.25 = 3.125rem */
    margin-bottom: 1.5625rem; /* 20px * 1.25 = 25px */
  }

  #obrigado p {
    font-size: 1.5rem; /* 1.2rem * 1.25 = 1.5rem */
    margin-bottom: 2.34375rem; /* 30px * 1.25 = 37.5px */
  }

  #obrigado a {
    padding: 1.09375rem 2.5rem; /* 14px * 1.25 = 17.5px, 32px * 1.25 = 40px */
    border-radius: 2.34375rem; /* 30px * 1.25 = 37.5px */
    box-shadow: 0 0.3125rem 0.625rem rgba(0, 153, 51, 0.3); /* 4px * 1.25 = 5px, 8px * 1.25 = 10px */
  }
}




.evento-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  margin: 15px auto;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.evento-card img {
  border-radius: 5px;
  margin-bottom: 10px;
}

#eventos-destaque {
  width: 80%;       /* ocupa 90% da tela */
  margin: 60px auto; 
  padding: 0;        /* sem padding extra */
}

/*#eventos-destaque {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}*/

.evento-layout {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
    justify-content: center; /* centraliza o bloco */

 /* gap: 50px;*/ /*gap: 40px*/
  gap: 6rem;
  margin: 60px 0;
   flex-wrap: wrap; /* permite quebrar em telas menores */
}

.evento-layout .texto {
  /*flex: 1;
  min-width: 800px;*/
    flex: 1 1 50%;
  min-width: 0; /* permite encolher proporcionalmente */
}

/*.evento-layout .texto h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}*/
.evento-layout .texto h1.titulo {
  font-family: 'Luckiest Guy', cursive;
  color: #002B7F;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 1.1;
}

.evento-layout .texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.evento-layout img {
   /*min-width: 700px;*/ /*450 originalmente*/
   flex: 1 1 45%;
  min-width: 0;
  width: 100%;
  max-height: 700px;
  border-radius: 16px;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1); /*0 6px 16px rgba(0, 0, 0, 0.2);*/
}

/* alterna a posição da imagem */
.evento-layout.invertido {
  flex-direction: row-reverse;
}

/* responsivo */
/*
@media (max-width: 768px) {
  .evento-layout {
    flex-direction: column;
    text-align: center;
  }

  .evento-layout.invertido {
    flex-direction: column;
  }

  .evento-layout img {
    max-width: 100%;
  }
}*/

/* Telas grandes (monitores Full HD e superiores) */
@media (min-width: 1920px) {
  #eventos-destaque {
    max-width: 1600px; /* não deixar o conteúdo esticado demais */
  }

  .evento-layout .texto h1.titulo {
    font-size: 4.5rem;
  }
}

/* Até 1680px */
@media (max-width: 1680px) {
  #eventos-destaque {
    width: 85%;
  }
}

/* Até 1440px */
@media (max-width: 1440px) {
  #eventos-destaque {
    width: 90%;
  }

  .evento-layout {
    gap: 4rem;
  }
}

/* Até 1366px e 1360px */
@media (max-width: 1366px) {
  .evento-layout {
    gap: 3rem;
  }

  .evento-layout .texto h1.titulo {
    font-size: 3rem;
  }
}

/* Até 1280px (todos os tipos) */
@media (max-width: 1280px) {
  #eventos-destaque {
    width: 92%;
  }

  .evento-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .evento-layout img {
    max-height: 500px;
  }

  .evento-layout .texto h1.titulo {
    font-size: 2.5rem;
  }
}

/* Até 1024px */
@media (max-width: 1024px) {
  .evento-layout .texto h1.titulo {
    font-size: 2rem;
  }

  .evento-layout .texto p {
    font-size: 1rem;
  }
}

/* Até 800px */
@media (max-width: 800px) {
  .evento-layout {
    gap: 1.5rem;
  }

  .evento-layout img {
    max-height: 400px;
  }

  .evento-layout .texto h1.titulo {
    font-size: 1.75rem;
  }
}

/* Até 600px (celulares menores) */
@media (max-width: 600px) {
  #eventos-destaque {
    width: 95%;
    margin: 30px auto;
  }

  .evento-layout {
    margin: 20px 0;
    gap: 1rem;
  }

  .evento-layout img {
    max-height: 300px;
    border-radius: 10px;
  }

  .evento-layout .texto h1.titulo {
    font-size: 1.4rem;
  }

  .evento-layout .texto p {
    font-size: 0.9rem;
  }
}
/* Celulares grandes (até 768px) */

/*@media (max-width: 768px) {
  .evento-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem; 
  }

  .evento-layout img {
    max-width: 100%;
  }
}*/
/*
@media (max-width: 768px) {
  #eventos-destaque {
    width: 95%;
    margin: 40px auto;
  }

  .evento-layout {
    margin: 30px 0;
    gap: 1.5rem;
  }

  .evento-layout img {
    max-height: 400px;
  }

  .evento-layout .texto h1.titulo {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .evento-layout .texto p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}*/
/* Para telas pequenas: imagem em cima e texto embaixo */
@media (max-width: 768px) {
  .evento-layout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  /* Invertidos devem usar column-reverse para manter imagem em cima */
  .evento-layout.invertido {
    flex-direction: column;
  }

  .evento-layout img {
    max-height: 400px;
    width: 100%;
    border-radius: 12px;
  }

  .evento-layout .texto h1.titulo {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .evento-layout .texto p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* Celulares pequenos (até 480px) */
/*@media (max-width: 480px) {
  .evento-layout {
    margin: 20px 0;
    gap: 1rem;
  }

  .evento-layout img {
    max-height: 300px;
    border-radius: 10px;
  }

  .evento-layout .texto h1.titulo {
    font-size: 1.4rem;
  }

  .evento-layout .texto p {
    font-size: 0.9rem;
  }
}*/
@media (max-width: 480px) {
  .evento-layout {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Invertidos: column-reverse para colocar a imagem em cima */
  .evento-layout.invertido {
    flex-direction: column;
  }

  .evento-layout img {
    max-height: 300px;
    width: 100%;
    border-radius: 10px;
  }

  .evento-layout .texto h1.titulo {
    font-size: 1.4rem;
  }

  .evento-layout .texto p {
    font-size: 0.9rem;
  }
}



/*
@media (max-width: 768px) {
  .evento-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem; 
  }

  .evento-layout img {
    max-width: 100%;
  }
}*/


/*CSS Galeria Eventos*/
/* ============================= */
/* Seção de eventos realizados   */
/* ============================= */

.galeria-eventos {
  width: 90%;
  margin: 60px auto;
  padding: 0;
}

.container-eventos {
  text-align: center;
}

.container-eventos .titulo {
  font-family: 'Luckiest Guy', cursive;
  color: #002B7F;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

/* Grade de imagens */
.grid-imagens {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-imagens img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid-imagens img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* Responsividade                */
/* ============================= */

/* Telas grandes */
@media (min-width: 1920px) {
  .galeria-eventos {
    max-width: 1600px;
  }
}

/* Até 1440px */
@media (max-width: 1440px) {
  .grid-imagens {
    gap: 1.2rem;
  }
}

/* Até 1024px */
@media (max-width: 1024px) {
  .container-eventos .titulo {
    font-size: 2rem;
  }
  .grid-imagens {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* Até 768px */
@media (max-width: 768px) {
  .galeria-eventos {
    width: 95%;
    margin: 40px auto;
  }
  .grid-imagens {
    gap: 1rem;
  }
  .container-eventos .titulo {
    font-size: 1.6rem;
  }
}

/* Até 480px */
@media (max-width: 480px) {
  .grid-imagens {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .grid-imagens img {
    max-height: 250px;
    border-radius: 10px;
  }
  .container-eventos .titulo {
    font-size: 1.4rem;
  }
}
