/* Fontes Sherika */
@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sherika';
  src: url('../fonts/Sherika-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sherika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #016552;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* NAVBAR STYLES */
.navbar {
  background: #F2F2F2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
}

.navbar-brand .logo {
  height: 50px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-link {
  color: #666;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.navbar-link:hover {
  color: #016552;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #F2F2F2;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #666;
  font-size: 15px;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: #f5f5f5;
  color: #016552;
}

.dropdown-menu li:first-child .dropdown-link {
  border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child .dropdown-link {
  border-radius: 0 0 8px 8px;
}

/* SISTEMA DE BOTÕES PADRONIZADO */

/* Base para todos os botões */
.btn,
.btn-primary,
.btn-secondary,
.cta-button {
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

/* Botão Primário (Verde) */
.btn-primary,
.cta-button {
  background: #016552;
  color: #F2F2F2;
  border-color: #016552;
}

.btn-primary:hover,
.cta-button:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

/* Botão Secundário (Outline Branco) */
.btn-secondary {
  background: transparent;
  color: #F2F2F2;
  border-color: #F2F2F2;
}

.btn-secondary:hover {
  background: #F2F2F2;
  color: #016552;
  border-color: #F2F2F2;
  transform: translateY(-2px);
}

/* Variações de tamanho */
.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 18px 35px;
  font-size: 18px;
}

/* Botão em contexto escuro (para usar sobre fundos claros) */
.btn-dark {
  background: transparent;
  color: #016552;
  border-color: #016552;
}

.btn-dark:hover {
  background: #016552;
  color: #F2F2F2;
  border-color: #016552;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.toggle-bar {
  width: 25px;
  height: 3px;
  background: #016552;
  transition: all 0.3s ease;
}

/* FOOTER STYLES */
.footer {
  background: #f8f9fa;
  padding: 60px 0 30px;
  margin-top: 80px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #016552;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #666;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #016552;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #666;
}

.contact-item a {
  color: #666;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #016552;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

/* ALUMNI PAGE STYLES */
.alumni-main-section {
  min-height: 100vh;
  background: #00C47D;
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
}

.alumni-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.alumni-content {
  padding-left: 40px;
}

.alumni-main-title {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Sherika', sans-serif;
  color: #F2F2F2;
  line-height: 1.1;
  margin: 0 0 40px 0;
}

.alumni-main-description {
  font-size: 1.3rem;
  font-weight: 300;
  font-family: 'Sherika', sans-serif;
  color: #F2F2F2;
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

/* Alumni Form Wrapper */
.alumni-form-wrapper {
  padding-right: 40px;
}

/* Form Mockup Styles */
.alumni-form-mockup {
  background: #F2F2F2;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 580px;
  margin-left: auto;
}

.form-mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
  align-items: start;
}

.form-mockup-row:nth-child(2) {
  grid-template-columns: 1.8fr 1fr;
}

.form-mockup-row:nth-child(3) {
  grid-template-columns: 1fr 1fr;
}

.form-mockup-field {
  display: flex;
  flex-direction: column;
}

.form-mockup-label {
  font-size: 0.65rem;
  font-weight: 600;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  margin-bottom: 8px;
  line-height: 1.2;
}

.form-mockup-input {
  background: #F2F2F2;
  border: 1px solid #D0D0D0;
  border-radius: 8px;
  padding: 15px 16px;
  font-size: 0.65rem;
  font-family: 'Sherika', sans-serif;
  color: #AAA;
  transition: all 0.3s ease;
  min-height: 24px;
  box-sizing: border-box;
  height: 54px;
  display: flex;
  align-items: center;
}

.form-mockup-input:hover {
  border-color: #00C47D;
}

.form-mockup-row:last-child {
  margin-bottom: 0;
}

.form-mockup-button {
  margin-top: 24px;
  text-align: center;
  grid-column: 1 / -1;
}

.btn-alumni-submit {
  background: #00C47D;
  color: #F2F2F2;
  padding: 16px 60px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Sherika', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 196, 125, 0.3);
}

.btn-alumni-submit:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

  .footer-copyright {
  color: #999;
  font-size: 14px;
}

/* Seção Recado Alumni */
.alumni-message-section {
  background: #F2F2F2;
  padding: 80px 0;
  position: relative;
}

.alumni-message-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.alumni-message-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  margin: 0 0 50px 0;
  line-height: 1.2;
}

.alumni-message-text {
  text-align: left;
}

.alumni-message-text p {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  line-height: 1.8;
  margin: 0 0 30px 0;
}

.alumni-message-text p:last-child {
  margin-bottom: 0;
}

.alumni-message-signature {
  margin-top: 50px;
  text-align: center;
}

.alumni-message-signature p {
  font-size: 1.2rem;
  color: #016552;
  margin: 10px 0;
}

.alumni-message-signature p strong {
  font-weight: 700;
}

/* Alumni Responsive Styles */
@media (max-width: 768px) {
  .alumni-main-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .alumni-main-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }
  
  .alumni-content {
    padding-left: 0;
    text-align: center;
  }
  
  .alumni-main-title {
    font-size: 3rem;
  }
  
  .alumni-main-description {
    font-size: 1.2rem;
    max-width: none;
  }
  
  .alumni-form-wrapper {
    padding-right: 0;
  }
  
  .alumni-form-mockup {
    margin-left: 0;
    max-width: none;
  }
  
  .form-mockup-row,
  .form-mockup-row:nth-child(2),
  .form-mockup-row:nth-child(3) {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .alumni-message-content {
    padding: 0 20px;
  }
  
  .alumni-message-title {
    font-size: 2rem;
  }
  
  .alumni-message-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .alumni-main-section {
    padding: 40px 0;
  }
  
  .alumni-main-container {
    gap: 40px;
    padding: 0 15px;
  }
  
  .alumni-main-title {
    font-size: 2.5rem;
  }
  
  .alumni-main-description {
    font-size: 1.1rem;
  }
  
  .alumni-form-mockup {
    padding: 30px 20px;
  }
  
  .form-mockup-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .btn-alumni-submit {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .alumni-message-section {
    padding: 50px 0;
  }
  
  .alumni-message-content {
    padding: 0 15px;
  }
  
  .alumni-message-title {
    font-size: 1.8rem;
  }
  
  .alumni-message-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .alumni-message-signature p {
    font-size: 1rem;
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .navbar-brand .logo {
    height: 40px;
  }
  
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #F2F2F2;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 0;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .navbar-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-link {
    display: block;
    padding: 15px 0;
    font-size: 18px;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    border-radius: 0;
  }
  
  .navbar-cta {
    width: 100%;
    margin-top: 20px;
  }
  

  
  .navbar-toggle {
    display: flex;
  }
  
  /* Footer responsivo */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 10px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .contact-item {
    margin-bottom: 10px;
  }
}

/* Adiciona espaçamento no topo para compensar navbar fixa */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* JavaScript Toggle Class */
.navbar-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* HOME PAGE STYLES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Background sólido como fallback */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-video.error {
  display: none;
}



.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Sherika', sans-serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #F2F2F2;
  margin-bottom: 2rem;
  line-height: 1.4;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}



.hero-image {
  text-align: center;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}



/* Responsive Design for Home Page */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary,
  .cta-button {
    padding: 12px 25px;
    font-size: 15px;
  }
  

  

}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
    min-height: 60vh;
  }
  
  .hero-video {
    /* Em dispositivos muito pequenos, garante que o vídeo não seja muito pesado */
    object-position: center center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary,
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  

}

/* EDUCATION SECTION STYLES */
.education-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.education-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Sherika', sans-serif;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #016552;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.education-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.education-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.education-segment-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.education-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.education-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease;
  z-index: 2;
}

.icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.education-card:hover .card-icon {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
  background: transparent;
}

/* Cores específicas por segmento */
.education-item:nth-child(1) .education-card {
  background: #D1E3FF;
}

.education-item:nth-child(2) .education-card {
  background: #FF714C;
}

.education-item:nth-child(3) .education-card {
  background: #004D93;
}

.education-item:nth-child(2) .card-title,
.education-item:nth-child(2) .card-description {
  color: #F2F2F2;
}

.education-item:nth-child(2) .card-link {
  color: #F2F2F2 !important;
}

.education-item:nth-child(2) .card-link:hover {
  color: #f0f0f0 !important;
}

.education-item:nth-child(3) .card-title,
.education-item:nth-child(3) .card-description,
.education-item:nth-child(3) .card-link {
  color: #F2F2F2;
}

.education-item:nth-child(3) .card-link:hover {
  color: #f0f0f0;
}



.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: 'Sherika', sans-serif;
}

.card-description {
  color: #016552;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.card-link {
  color: #FF714C;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: #e85a33;
}

.card-link:hover::after {
  transform: translateX(5px);
}

/* Responsive para Education Section */
@media (max-width: 768px) {
  .education-section {
    padding: 60px 0;
  }
  
  .education-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .education-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .card-content {
    padding: 25px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-icon {
    bottom: 15px;
    right: 15px;
  }
  
  .icon-img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .education-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .education-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-description {
    font-size: 14px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-icon {
    bottom: 12px;
    right: 12px;
  }
  
  .icon-img {
    width: 45px;
    height: 45px;
  }
}

/* ESTILOS DA PÁGINA EDUCAÇÃO INFANTIL - Duplicado da seção education */
.infantil-education-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.infantil-education-header {
  text-align: center;
  margin-bottom: 60px;
}

.infantil-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Sherika', sans-serif;
}

.infantil-section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.infantil-education-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.infantil-education-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.infantil-education-card {
  background: #D1E3FF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.infantil-education-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.infantil-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.infantil-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.infantil-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease;
  z-index: 2;
}

.infantil-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.infantil-education-card:hover .infantil-card-icon {
  transform: scale(1.1);
}

.infantil-card-content {
  padding: 30px;
  background: transparent;
}

.infantil-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: 'Sherika', sans-serif;
}

.infantil-card-description {
  color: #016552;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.infantil-card-link {
  color: #FF714C;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.infantil-card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.infantil-card-link:hover {
  color: #e85a33;
}

.infantil-card-link:hover::after {
  transform: translateX(5px);
}

/* Responsive para Infantil Education Section */
@media (max-width: 768px) {
  .infantil-education-section {
    padding: 60px 0;
  }
  
  .infantil-education-header {
    margin-bottom: 40px;
  }
  
  .infantil-section-title {
    font-size: 2rem;
  }
  
  .infantil-section-subtitle {
    font-size: 1rem;
  }
  
  .infantil-education-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .infantil-card-content {
    padding: 25px;
  }
  
  .infantil-card-title {
    font-size: 1.3rem;
  }
  
  .infantil-card-image {
    height: 220px;
  }
  
  .infantil-card-icon {
    bottom: 15px;
    right: 15px;
  }
  
  .infantil-icon-img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .infantil-education-section {
    padding: 50px 0;
  }
  
  .infantil-section-title {
    font-size: 1.8rem;
  }
  
  .infantil-section-subtitle {
    font-size: 0.95rem;
  }
  
  .infantil-education-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .infantil-card-content {
    padding: 20px;
  }
  
  .infantil-card-title {
    font-size: 1.2rem;
  }
  
  .infantil-card-description {
    font-size: 14px;
  }
  
  .infantil-card-image {
    height: 200px;
  }
  
  .infantil-card-icon {
    bottom: 12px;
    right: 12px;
  }
  
  .infantil-icon-img {
    width: 45px;
    height: 45px;
  }
}

/* Seção O Integral - Educação Infantil */
.integral-section {
  padding: 0;
  background: #FFC27D;
  position: relative;
  overflow: hidden;
}

.integral-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: stretch;
}

.integral-card {
  background: #F2F2F2;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.integral-card::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url('../images/icon1.webp') no-repeat center;
  background-size: contain;;
  z-index: 1;
}

.integral-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 30px;
  font-family: 'Sherika', sans-serif;
  position: relative;
  z-index: 2;
}

.integral-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.integral-description strong {
  color: #016552;
  font-weight: 600;
}

.integral-activities {
  background: #FFC27D;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}



.activities-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 40px;
  line-height: 1.3;
  font-family: 'Sherika', sans-serif;
  position: relative;
  z-index: 2;
}

.activities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.activity-item {
  font-size: 1.3rem;
  font-weight: 500;
  color: #016552;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-family: 'Sherika', sans-serif;
}

.activity-item::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #016552;
  font-size: 1.5rem;
  font-weight: 700;
}

.activity-item:last-child {
  margin-bottom: 0;
}

/* Responsive para Seção Integral */
@media (max-width: 768px) {
  .integral-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .integral-card {
    padding: 40px 30px;
  }
  
  .integral-title {
    font-size: 2.5rem;
  }
  
  .integral-description {
    font-size: 1rem;
  }
  
  .integral-activities {
    padding: 40px 30px;
  }
  
  .activities-title {
    font-size: 1.8rem;
  }
  
  .activity-item {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .integral-card {
    padding: 30px 20px;
  }
  
  .integral-title {
    font-size: 2rem;
  }
  
  .integral-description {
    font-size: 0.95rem;
  }
  
  .integral-activities {
    padding: 30px 20px;
  }
  
  .activities-title {
    font-size: 1.5rem;
  }
  
  .activity-item {
    font-size: 1rem;
  }
}

/* Seção O Palmares Integral */
.palmares-integral-section {
  padding: 80px 0;
  background: #D1E3FF;
  text-align: center;
}

.palmares-integral-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.palmares-integral-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 40px;
  font-family: 'Sherika', sans-serif;
  line-height: 1.2;
}

.palmares-integral-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #016552;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
  text-align: center;
}

.palmares-integral-description strong {
  color: #016552;
  font-weight: 600;
}

/* Responsive para Seção Palmares Integral */
@media (max-width: 768px) {
  .palmares-integral-section {
    padding: 60px 0;
  }
  
  .palmares-integral-title {
    font-size: 2.8rem;
  }
  
  .palmares-integral-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .palmares-integral-section {
    padding: 40px 0;
  }
  
  .palmares-integral-content {
    padding: 0 15px;
  }
  
  .palmares-integral-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .palmares-integral-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ESTILOS ESPECÍFICOS PARA EDUCAÇÃO INFANTIL */

/* Seção Sobre o brincar no Integral */
.sobre-brincar-section {
  padding: 80px 0 60px 0;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}

.sobre-brincar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-brincar-content {
  max-width: 500px;
}

.sobre-brincar-header {
  margin-bottom: 30px;
  position: relative;
}

.sobre-brincar-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.sobre-brincar-text {
  margin-bottom: 40px;
}

.sobre-brincar-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0 0 30px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.brincar-tipos {
  margin: 30px 0;
}

.tipo-brincar {
  margin-bottom: 20px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.tipo-brincar h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #016552;
  margin: 0 0 8px 0;
  font-family: 'Sherika', sans-serif;
}

.tipo-brincar p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
  font-family: 'Sherika', sans-serif;
}

.btn-sobre-brincar {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-sobre-brincar:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
  color: #F2F2F2;
}

.sobre-brincar-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-brincar-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Seção Extracurriculares Infantil */
.extracurriculares-infantil-section {
  padding: 60px 0 80px 0;
  background: #00C47D;
  position: relative;
  overflow: hidden;
}

.extracurriculares-infantil-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.extracurriculares-infantil-content {
  max-width: 500px;
  order: 2;
}

.extracurriculares-infantil-image {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.extracurriculares-infantil-header {
  margin-bottom: 30px;
  position: relative;
}

.extracurriculares-infantil-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.extracurriculares-infantil-text {
  margin-bottom: 40px;
}

.extracurriculares-infantil-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-extracurriculares-infantil {
  background: #F2F2F2;
  color: #016552;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-extracurriculares-infantil:hover {
  background: #F2F2F2;
  border-color: #F2F2F2;
  transform: translateY(-2px);
  color: #016552;
}

.extracurriculares-infantil-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.extracurriculares-infantil-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Cozinha Criativa - Duplicado dos estilos espanhol/ingles */
.cozinha-criativa-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.cozinha-criativa-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cozinha-criativa-content {
  max-width: 500px;
}

.cozinha-criativa-header {
  margin-bottom: 30px;
  position: relative;
}

.cozinha-criativa-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.cozinha-criativa-text {
  margin-bottom: 40px;
}

.cozinha-criativa-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-cozinha-criativa {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-cozinha-criativa:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.cozinha-criativa-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cozinha-criativa-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.cozinha-criativa-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Seção Hora de Artes - Duplicado dos estilos musica/teatro */
.hora-artes-section {
  padding: 60px 0 80px 0;
  background: #FFC27D;
  position: relative;
  overflow: hidden;
}

.hora-artes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hora-artes-content {
  max-width: 500px;
  order: 2;
}

.hora-artes-image {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hora-artes-header {
  margin-bottom: 30px;
  position: relative;
}

.hora-artes-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.hora-artes-text {
  margin-bottom: 40px;
}

.hora-artes-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-hora-artes {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-hora-artes:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.hora-artes-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hora-artes-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Núcleo de Apoio Pedagógico - Ensino Fundamental */
.fundamental-nucleo-apoio-section {
  padding: 60px 0 80px 0;
  background: #FF714C;
  position: relative;
  overflow: hidden;
}

.fundamental-nucleo-apoio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundamental-nucleo-apoio-content {
  max-width: 500px;
  order: 2;
}

.fundamental-nucleo-apoio-image {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundamental-nucleo-apoio-header {
  margin-bottom: 30px;
  position: relative;
}

.fundamental-nucleo-apoio-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-nucleo-apoio-text {
  margin-bottom: 40px;
}

.fundamental-nucleo-apoio-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-fundamental-nucleo-apoio {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-fundamental-nucleo-apoio:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.fundamental-nucleo-apoio-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fundamental-nucleo-apoio-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Hora de Artes - Ensino Fundamental */
.fundamental-hora-artes-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.fundamental-hora-artes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundamental-hora-artes-content {
  max-width: 500px;
}

.fundamental-hora-artes-header {
  margin-bottom: 30px;
  position: relative;
}

.fundamental-hora-artes-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-hora-artes-text {
  margin-bottom: 40px;
}

.fundamental-hora-artes-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-fundamental-hora-artes {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-fundamental-hora-artes:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.fundamental-hora-artes-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundamental-hora-artes-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Hora de Esporte - Ensino Fundamental */
.fundamental-hora-esporte-section {
  padding: 60px 0 80px 0;
  background: #FF714C;
  position: relative;
  overflow: hidden;
}

.fundamental-hora-esporte-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundamental-hora-esporte-content {
  max-width: 500px;
  order: 2;
}

.fundamental-hora-esporte-image {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundamental-hora-esporte-header {
  margin-bottom: 30px;
  position: relative;
}

.fundamental-hora-esporte-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f2f2f2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-hora-esporte-text {
  margin-bottom: 40px;
}

.fundamental-hora-esporte-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-fundamental-hora-esporte {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-fundamental-hora-esporte:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.fundamental-hora-esporte-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fundamental-hora-esporte-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Inglês Vivencial - Ensino Fundamental */
.fundamental-ingles-vivencial-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.fundamental-ingles-vivencial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundamental-ingles-vivencial-content {
  max-width: 500px;
}

.fundamental-ingles-vivencial-header {
  margin-bottom: 30px;
  position: relative;
}

.fundamental-ingles-vivencial-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-ingles-vivencial-text {
  margin-bottom: 40px;
}

.fundamental-ingles-vivencial-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-fundamental-ingles-vivencial {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-fundamental-ingles-vivencial:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.fundamental-ingles-vivencial-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundamental-ingles-vivencial-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Sobre o brincar no Integral - Ensino Fundamental */
.fundamental-sobre-brincar-section {
  padding: 80px 0;
  background: #FF714C;
  position: relative;
  overflow: hidden;
}

.fundamental-sobre-brincar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundamental-sobre-brincar-content {
  max-width: 500px;
}

.fundamental-sobre-brincar-header {
  margin-bottom: 30px;
  position: relative;
}

.fundamental-sobre-brincar-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-sobre-brincar-text {
  margin-bottom: 40px;
}

.fundamental-sobre-brincar-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #F2F2F2;
  margin-bottom: 30px;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.fundamental-brincar-tipos {
  margin: 40px 0;
}

.fundamental-tipo-brincar {
  margin-bottom: 20px;
}

.fundamental-tipo-brincar h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2F2F2;
  margin: 0 0 8px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-tipo-brincar p {
  font-size: 1rem;
  line-height: 1.6;
  color: #F2F2F2;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-fundamental-sobre-brincar {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-fundamental-sobre-brincar:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.fundamental-sobre-brincar-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundamental-sobre-brincar-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Inglês Vivencial */
.ingles-vivencial-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.ingles-vivencial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ingles-vivencial-content {
  max-width: 500px;
}

.ingles-vivencial-header {
  margin-bottom: 30px;
  position: relative;
}

.ingles-vivencial-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.ingles-vivencial-text {
  margin-bottom: 40px;
}

.ingles-vivencial-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-ingles-vivencial {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-ingles-vivencial:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.ingles-vivencial-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ingles-vivencial-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.ingles-vivencial-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Seção Hora de Esporte */
.hora-esporte-section {
  padding: 60px 0 80px 0;
  background: #FFC27D;
  position: relative;
  overflow: hidden;
}

.hora-esporte-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hora-esporte-content {
  max-width: 500px;
  order: 2;
}

.hora-esporte-image {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hora-esporte-header {
  margin-bottom: 30px;
  position: relative;
}

.hora-esporte-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.hora-esporte-text {
  margin-bottom: 40px;
}

.hora-esporte-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-hora-esporte {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-hora-esporte:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.hora-esporte-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hora-esporte-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Seção Mentes Maker */
.mentes-maker-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.mentes-maker-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mentes-maker-content {
  max-width: 500px;
}

.mentes-maker-header {
  margin-bottom: 30px;
  position: relative;
}

.mentes-maker-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.mentes-maker-text {
  margin-bottom: 40px;
}

.mentes-maker-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-mentes-maker {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-mentes-maker:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.mentes-maker-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mentes-maker-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.mentes-maker-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Responsive para todas as seções de Educação Infantil */
@media (max-width: 768px) {
  .cozinha-criativa-section,
  .ingles-vivencial-section,
  .mentes-maker-section,
  .sobre-brincar-section {
    padding: 50px 0 40px 0;
  }
  
  .hora-artes-section,
  .hora-esporte-section,
  .extracurriculares-infantil-section {
    padding: 30px 0 40px 0;
  }
  
  .fundamental-nucleo-apoio-section {
    padding: 30px 0 40px 0;
  }
  
  .fundamental-hora-artes-section,
  .fundamental-hora-esporte-section,
  .fundamental-ingles-vivencial-section,
  .fundamental-sobre-brincar-section {
    padding: 50px 0 40px 0;
  }
  
  .cozinha-criativa-container,
  .hora-artes-container,
  .ingles-vivencial-container,
  .hora-esporte-container,
  .mentes-maker-container,
  .sobre-brincar-container,
  .extracurriculares-infantil-container,
  .fundamental-nucleo-apoio-container,
  .fundamental-hora-artes-container,
  .fundamental-hora-esporte-container,
  .fundamental-ingles-vivencial-container,
  .fundamental-sobre-brincar-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hora-artes-image,
  .hora-esporte-image,
  .extracurriculares-infantil-image,
  .fundamental-nucleo-apoio-image,
  .fundamental-hora-artes-image,
  .fundamental-hora-esporte-image,
  .fundamental-ingles-vivencial-image,
  .fundamental-sobre-brincar-image {
    order: -1;
  }
  
  .cozinha-criativa-content,
  .hora-artes-content,
  .ingles-vivencial-content,
  .hora-esporte-content,
  .mentes-maker-content,
  .sobre-brincar-content,
  .extracurriculares-infantil-content,
  .fundamental-nucleo-apoio-content,
  .fundamental-hora-artes-content,
  .fundamental-hora-esporte-content,
  .fundamental-ingles-vivencial-content,
  .fundamental-sobre-brincar-content {
    max-width: 100%;
  }
  
  .cozinha-criativa-title,
  .hora-artes-title,
  .ingles-vivencial-title,
  .hora-esporte-title,
  .mentes-maker-title,
  .sobre-brincar-title,
  .extracurriculares-infantil-title,
  .fundamental-nucleo-apoio-title,
  .fundamental-hora-artes-title,
  .fundamental-hora-esporte-title,
  .fundamental-ingles-vivencial-title,
  .fundamental-sobre-brincar-title {
    font-size: 2.5rem;
  }
  
  .cozinha-criativa-description,
  .hora-artes-description,
  .ingles-vivencial-description,
  .hora-esporte-description,
  .mentes-maker-description,
  .sobre-brincar-description,
  .extracurriculares-infantil-description,
  .fundamental-nucleo-apoio-description,
  .fundamental-hora-artes-description,
  .fundamental-hora-esporte-description,
  .fundamental-ingles-vivencial-description,
  .fundamental-sobre-brincar-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cozinha-criativa-section,
  .ingles-vivencial-section,
  .mentes-maker-section,
  .sobre-brincar-section {
    padding: 40px 0 30px 0;
  }
  
  .hora-artes-section,
  .hora-esporte-section,
  .extracurriculares-infantil-section {
    padding: 30px 0;
  }
  
  .fundamental-nucleo-apoio-section {
    padding: 30px 0;
  }
  
  .fundamental-hora-artes-section,
  .fundamental-hora-esporte-section,
  .fundamental-ingles-vivencial-section,
  .fundamental-sobre-brincar-section {
    padding: 40px 0 30px 0;
  }
  
  .cozinha-criativa-title,
  .hora-artes-title,
  .ingles-vivencial-title,
  .hora-esporte-title,
  .mentes-maker-title,
  .sobre-brincar-title,
  .extracurriculares-infantil-title,
  .fundamental-nucleo-apoio-title,
  .fundamental-hora-artes-title,
  .fundamental-hora-esporte-title,
  .fundamental-ingles-vivencial-title,
  .fundamental-sobre-brincar-title {
    font-size: 2rem;
  }
  
  .cozinha-criativa-description,
  .hora-artes-description,
  .ingles-vivencial-description,
  .hora-esporte-description,
  .mentes-maker-description,
  .sobre-brincar-description,
  .extracurriculares-infantil-description,
  .fundamental-nucleo-apoio-description,
  .fundamental-hora-artes-description,
  .fundamental-hora-esporte-description,
  .fundamental-ingles-vivencial-description,
  .fundamental-sobre-brincar-description {
    font-size: 0.95rem;
  }
  
  .btn-cozinha-criativa,
  .btn-hora-artes,
  .btn-ingles-vivencial,
  .btn-hora-esporte,
  .btn-mentes-maker,
  .btn-sobre-brincar,
  .btn-extracurriculares-infantil,
  .btn-fundamental-nucleo-apoio,
  .btn-fundamental-hora-artes,
  .btn-fundamental-hora-esporte,
  .btn-fundamental-ingles-vivencial,
  .btn-fundamental-sobre-brincar {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* NOSSO ENSINO SECTION STYLES */
.nosso-ensino-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #E6FFBF 50%, #016552 50%);
  position: relative;
  overflow: hidden;
}

.nosso-ensino-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.nosso-ensino-header {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: flex-start;
}

.nosso-ensino-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0;
  margin-top: 30px;
  font-family: 'Sherika', sans-serif;
}

.nosso-ensino-logo {
  position: absolute;
  top: 35%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.logo-verde {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.nosso-ensino-cards {
  display: grid;
  gap: 30px;
}

.ensino-card {
  background: #F2F2F2;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ensino-card:hover {
  transform: translateY(-5px);
}



.ensino-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF714C;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: 'Sherika', sans-serif;
}

.ensino-card-description {
  color: #016552;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.ensino-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #016552;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-arrow {
  color: #F2F2F2;
  font-size: 18px;
  font-weight: bold;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.ensino-card:hover .ensino-card-link {
  background: #016552;
  transform: scale(1.1);
}

.ensino-card:hover .link-arrow {
  transform: rotate(-45deg) scale(1.1);
}

/* Responsive para Nosso Ensino Section */
@media (max-width: 768px) {
  .nosso-ensino-section {
    padding: 60px 0;
  }
  
  .nosso-ensino-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nosso-ensino-header {
    position: static;
    text-align: center;
    align-items: center;
    height: auto;
  }
  
  .nosso-ensino-title {
    margin-top: 0;
  }
  
  .nosso-ensino-logo {
    position: static;
    transform: none;
    padding-top: 20px;
  }
  
  .nosso-ensino-title {
    font-size: 2.5rem;
  }
  
  .ensino-card {
    padding: 25px;
  }
  

  
  .ensino-card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .nosso-ensino-section {
    padding: 50px 0;
  }
  
  .nosso-ensino-title {
    font-size: 2rem;
  }
  
  .ensino-card {
    padding: 20px;
  }
  
  
  .logo-verde {
    width: 100px;
  }
  
  .ensino-card-title {
    font-size: 1.2rem;
  }
  
  .ensino-card-description {
    font-size: 14px;
  }
}

/* O COLÉGIO SECTION STYLES */
.colegio-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.colegio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.colegio-content {
  max-width: 500px;
}

.colegio-header {
  margin-bottom: 30px;
  position: relative;
}

.colegio-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}



.colegio-text {
  margin-bottom: 40px;
}

.colegio-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
  text-align: left;
}

.btn-colegio {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-colegio:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.colegio-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-decoration-top {
  position: absolute;
  top: -20px;
  right: -60px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.image-icon {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 3;
}

.colegio-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.colegio-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Responsive para O Colégio Section */
@media (max-width: 768px) {
  .colegio-section {
    padding: 50px 0 40px 0;
  }
  
  .colegio-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .colegio-image {
    order: -1;
  }
  
  .colegio-content {
    max-width: 100%;
  }
  
  .colegio-title {
    font-size: 2.5rem;
  }
  
  .colegio-description {
    font-size: 1rem;
  }
  
  .image-decoration-top {
    top: -15px;
    right: -40px;
  }
  
  .decoration-icon {
    width: 80px;
    height: 80px;
  }
  
  .image-icon {
    bottom: -15px;
    left: -15px;
  }
  
  .colegio-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .colegio-section {
    padding: 40px 0 30px 0;
  }
  
  .colegio-title {
    font-size: 2rem;
  }
  
  .colegio-description {
    font-size: 0.95rem;
  }
  
  .btn-colegio {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  .decoration-icon {
    width: 60px;
    height: 60px;
  }
  
  .image-icon {
    bottom: -10px;
    left: -10px;
  }
  
  .colegio-icon {
    width: 50px;
    height: 50px;
  }
}

/* INGLÊS SECTION STYLES */
.ingles-section {
  padding: 60px 0 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.ingles-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ingles-content {
  max-width: 500px;
}

.ingles-header {
  margin-bottom: 30px;
}

.ingles-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.ingles-text {
  margin-bottom: 40px;
}

.ingles-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-ingles {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-ingles:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.ingles-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}



.ingles-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ingles-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}



/* Responsive para Inglês Section */
@media (max-width: 768px) {
  .ingles-section {
    padding: 40px 0 50px 0;
  }
  
  .ingles-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .ingles-image {
    order: -1;
  }
  
  .ingles-content {
    max-width: 100%;
  }
  
  .ingles-title {
    font-size: 2.5rem;
  }
  
  .ingles-description {
    font-size: 1rem;
  }
  

}

@media (max-width: 480px) {
  .ingles-section {
    padding: 30px 0 40px 0;
  }
  
  .ingles-title {
    font-size: 2rem;
  }
  
  .ingles-description {
    font-size: 0.95rem;
  }
  
  .btn-ingles {
    padding: 12px 30px;
    font-size: 15px;
  }
  

}

/* SEÇÃO FINAL STYLES */
.final-section {
  padding: 100px 0;
  background: #004D93;
  position: relative;
  overflow: hidden;
}

/* CAROUSEL NAVIGATION */
.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Sherika', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.nav-btn.active {
  background: #F2F2F2;
  color: #004D93;
  border-color: #F2F2F2;
  font-weight: 600;
}

/* CAROUSEL CONTAINER */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 200%;
}

.carousel-slide {
  width: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

/* BACKGROUND ICONS */
.background-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.bg-icon {
  position: absolute;
  z-index: 0;
}

.bg-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Posições fixas dos ícones */
.bg-icon-1 {
  top: 10%;
  left: 18%;
  width: 80px;
  height: 80px;
}

.bg-icon-2 {
  bottom: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
}

.bg-icon-3 {
  top: 80%;
  left: 30%;
  width: 60px;
  height: 60px;
}



.final-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.final-item.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.final-item-content {
  max-width: 500px;
}

.final-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E6FFBF;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.final-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0 0 30px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-final {
  background: #F2F2F2;
  color: #004D93;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-final:hover {
  background: transparent;
  color: #F2F2F2;
  border-color: #F2F2F2;
  transform: translateY(-2px);
}

.final-item-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-img {
  width: 100%;
  max-width: 500px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}



/* Responsive para Seção Final */
@media (max-width: 768px) {
  .final-section {
    padding: 60px 0;
  }
  
  .carousel-navigation {
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .nav-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Background icons responsivos */
  .bg-icon-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 5%;
  }
  
  .bg-icon-2 {
    width: 70px;
    height: 70px;
    bottom: 25%;
    right: 5%;
  }
  
  .bg-icon-3 {
    width: 45px;
    height: 45px;
    top: 65%;
    left: 10%;
  }
  

  
  .final-item,
  .final-item.reverse {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .final-item.reverse .final-item-image {
    order: 1;
  }
  
  .final-item.reverse .final-item-content {
    order: 2;
  }
  
  .final-item-content {
    max-width: 100%;
  }
  
  .final-title {
    font-size: 2rem;
  }
  
  .final-description {
    font-size: 1rem;
  }
  
  .final-img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .final-section {
    padding: 50px 0;
  }
  
  .carousel-navigation {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .nav-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  /* Background icons mobile */
  .bg-icon-1 {
    width: 40px;
    height: 40px;
    top: 25%;
    left: 3%;
  }
  
  .bg-icon-2 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 3%;
  }
  
  .bg-icon-3 {
    width: 35px;
    height: 35px;
    top: 70%;
    left: 8%;
  }
  
  .final-title {
    font-size: 1.8rem;
  }
  
  .final-description {
    font-size: 0.95rem;
  }
  
  .btn-final {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  .final-img {
    height: 300px;
  }
}

/* TESTIMONIALS SECTION STYLES */
.testimonials-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  margin-bottom: 20px;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Sherika', sans-serif;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.testimonial-card {
  background: #F2F2F2;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  line-height: 1.4;
  margin: 0 0 20px 0;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: #00C47D;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
}

/* Fallback for missing images */
.author-avatar:empty::after {
  content: attr(data-initials);
  color: #F2F2F2;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Sherika', sans-serif;
  color: #016552;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.author-description {
  font-size: 0.9rem;
  font-weight: 400;
  color: #00C47D;
  margin: 0;
  line-height: 1.4;
}

/* FORM SECTION STYLES */
.form-section {
  padding: 100px 0;
  background: #016552;
  position: relative;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 600px;
}

.form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.form-content {
  max-width: 500px;
}

.form-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Sherika', sans-serif;
  color: #E6FFBF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.form-description {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Sherika', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Sherika', sans-serif;
  color: #F2F2F2;
  line-height: 1.4;
}

.form-wrapper {
  background: #F2F2F2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.form-iframe {
  border-radius: 20px;
  min-height: 600px;
}

/* FORM SECTION STYLES - EXTRACURRICULARES */
.extracurriculares-form-section {
  padding: 100px 0;
  background: #016552;
  position: relative;
}

.extracurriculares-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 600px;
}

.extracurriculares-form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.extracurriculares-form-content {
  max-width: 500px;
}

.extracurriculares-form-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Sherika', sans-serif;
  color: #E6FFBF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.extracurriculares-form-description {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Sherika', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

.extracurriculares-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.extracurriculares-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.extracurriculares-contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.extracurriculares-contact-text {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Sherika', sans-serif;
  color: #F2F2F2;
  line-height: 1.4;
}

.extracurriculares-form-wrapper {
  background: #F2F2F2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.extracurriculares-form-iframe {
  border-radius: 20px;
  min-height: 600px;
}

/* PERÍODO INTEGRAL SECTION STYLES */
.periodo-integral-section {
  padding: 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.periodo-integral-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.periodo-integral-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-decoration-left {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 3;
}

.decoration-icon-left {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.periodo-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.periodo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}



.periodo-integral-content {
  max-width: 500px;
}

.periodo-integral-header {
  margin-bottom: 30px;
}

.periodo-integral-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.periodo-integral-text {
  margin-bottom: 40px;
}

.periodo-integral-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-periodo-integral {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-periodo-integral:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

/* Responsive para Período Integral Section */
@media (max-width: 768px) {
  .periodo-integral-section {
    padding: 40px 0;
  }
  
  .periodo-integral-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .periodo-integral-content {
    max-width: 100%;
    order: 2;
  }
  
  .periodo-integral-image {
    order: 1;
  }
  
  .periodo-integral-title {
    font-size: 2.5rem;
  }
  
  .periodo-integral-description {
    font-size: 1rem;
  }
  
  .decoration-icon-left {
    width: 80px;
    height: 80px;
  }
  
  .image-decoration-left {
    top: -20px;
    left: -20px;
  }
  

}

@media (max-width: 480px) {
  .periodo-integral-section {
    padding: 30px 0;
  }
  
  .periodo-integral-title {
    font-size: 2rem;
  }
  
  .periodo-integral-description {
    font-size: 0.95rem;
  }
  
  .btn-periodo-integral {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  .decoration-icon-left {
    width: 60px;
    height: 60px;
  }
  
  .image-decoration-left {
    top: -15px;
    left: -15px;
  }
}

/* Responsive para Testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-header {
    margin-bottom: 50px;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonials-subtitle {
    font-size: 1.1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-quote {
    font-size: 1.3rem;
  }
  
  .testimonial-quote::before {
    font-size: 3rem;
    top: -15px;
    left: -8px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
  }
  
  .testimonials-title {
    font-size: 2rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
  }
  
  .testimonials-grid {
    gap: 30px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
  }
  
  .author-name {
    font-size: 1rem;
  }
  
  .author-description {
    font-size: 0.85rem;
  }
}

/* Responsive para Form Section */
@media (max-width: 768px) {
  .form-section {
    padding: 60px 0;
  }
  
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  
  .form-info {
    padding: 20px;
    text-align: left;
  }
  
  .form-title {
    font-size: 2.5rem;
  }
  
  .form-description {
    font-size: 1.1rem;
  }
  
  .contact-item {
    justify-content: flex-start;
  }
  
  .form-iframe {
    height: 500px;
    min-height: 500px;
  }
  
  /* Responsive para Form Section - Extracurriculares */
  .extracurriculares-form-section {
    padding: 60px 0;
  }
  
  .extracurriculares-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  
  .extracurriculares-form-info {
    padding: 20px;
    text-align: center;
  }
  
  .extracurriculares-form-title {
    font-size: 2.5rem;
  }
  
  .extracurriculares-form-description {
    font-size: 1.1rem;
  }
  
  .extracurriculares-contact-item {
    justify-content: center;
  }
  
  .extracurriculares-form-iframe {
    height: 500px;
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 50px 0;
  }
  
  .form-container {
    gap: 30px;
  }
  
  .form-info {
    padding: 15px;
    text-align: left;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .form-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .contact-info {
    gap: 15px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-text {
    font-size: 1rem;
  }
  
  .form-iframe {
    height: 450px;
    min-height: 450px;
  }
  
  /* Mobile para Form Section - Extracurriculares */
  .extracurriculares-form-section {
    padding: 50px 0;
  }
  
  .extracurriculares-form-container {
    gap: 30px;
  }
  
  .extracurriculares-form-info {
    padding: 15px;
  }
  
  .extracurriculares-form-title {
    font-size: 2rem;
  }
  
  .extracurriculares-form-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .extracurriculares-contact-info {
    gap: 15px;
  }
  
  .extracurriculares-contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .extracurriculares-contact-text {
    font-size: 1rem;
  }
  
  .extracurriculares-form-iframe {
    height: 450px;
    min-height: 450px;
  }
}

/* EXTRACURRICULARES PAGE STYLES */
.extracurriculares-banner {
  background: #016552;
  padding: 20px 0 20px;
  text-align: center;
  position: relative;
}

.extracurriculares-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #F2F2F2;
  margin-bottom: 0;
  font-family: 'Sherika', sans-serif;
}

.extracurriculares-banner p {
  font-size: 1.5rem;
  color: #F2F2F2;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.extracurriculares-main {
  padding: 80px 0;
  background: #f8f9fa;
}

.extracurriculares-header {
  text-align: center;
  margin-bottom: 60px;
}

.extracurriculares-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 20px;
  font-family: 'Sherika', sans-serif;
}

.extracurriculares-header p {
  font-size: 1.2rem;
  color: #016552;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}





/* ESPORTES SECTION STYLES */
.esportes-section {
  padding: 80px 0 60px 0;
  background: #016552;
  position: relative;
  overflow: hidden;
}

.esportes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.esportes-content {
  max-width: 500px;
}

.esportes-header {
  margin-bottom: 30px;
  position: relative;
}

.esportes-title {
  font-size: 3rem;
  font-weight: 700;
  color: #E6FFBF;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.esportes-text {
  margin-bottom: 40px;
}

.esportes-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-esportes {
  background: #00C47D;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #00C47D;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-esportes:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.esportes-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.esportes-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.esportes-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ESPANHOL SECTION STYLES */
.espanhol-section {
  padding: 80px 0 60px 0;
  background: #E6FFBF;
  position: relative;
  overflow: hidden;
}

.espanhol-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.espanhol-content {
  max-width: 500px;
}

.espanhol-header {
  margin-bottom: 30px;
  position: relative;
}

.espanhol-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.espanhol-text {
  margin-bottom: 40px;
}

.espanhol-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-espanhol {
  background: #016552;
  color: #E6FFBF;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-espanhol:hover {
  background: transparent;
  color: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.espanhol-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.espanhol-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.espanhol-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* TEATRO SECTION STYLES */
.teatro-section {
  padding: 60px 0 80px 0;
  background: #00C47D;
  position: relative;
  overflow: hidden;
}

.teatro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.teatro-content {
  max-width: 500px;
}

.teatro-header {
  margin-bottom: 30px;
}

.teatro-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.teatro-text {
  margin-bottom: 40px;
}

.teatro-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-teatro {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-teatro:hover {
  background: transparent;
  color: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.teatro-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teatro-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.teatro-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* PARTNERS SECTION STYLES */
.partners-section {
  padding: 80px 0;
  background: #00C47D;
  position: relative;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partners-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.partners-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #F2F2F2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* MÚSICA SECTION STYLES */
.musica-section {
  padding: 60px 0 80px 0;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}

.musica-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.musica-content {
  max-width: 500px;
}

.musica-header {
  margin-bottom: 30px;
}

.musica-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.musica-text {
  margin-bottom: 40px;
}

.musica-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-musica {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Sherika', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.btn-musica:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.musica-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.musica-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.musica-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Responsive para Extracurriculares */
@media (max-width: 768px) {
  .extracurriculares-banner {
    padding: 60px 0 40px;
  }
  
  .extracurriculares-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  
  .extracurriculares-banner p {
    font-size: 1.2rem;
    padding: 0 20px;
  }
  
  .extracurriculares-main {
    padding: 60px 0;
  }
  
  .extracurriculares-header {
    margin-bottom: 40px;
  }
  
  .extracurriculares-header h2 {
    font-size: 2rem;
    padding: 0 20px;
  }
  
  .extracurriculares-header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  /* Esportes responsivo */
  .esportes-section {
    padding: 50px 0 40px 0;
  }
  
  .esportes-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .esportes-image {
    order: -1;
  }
  
  .esportes-content {
    max-width: 100%;
  }
  
  .esportes-title {
    font-size: 2.5rem;
  }
  
  .esportes-description {
    font-size: 1rem;
  }
  
  /* Espanhol responsivo */
  .espanhol-section {
    padding: 50px 0 40px 0;
  }
  
  .espanhol-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .espanhol-image {
    order: -1;
  }
  
  .espanhol-content {
    max-width: 100%;
  }
  
  .espanhol-title {
    font-size: 2.5rem;
  }
  
  .espanhol-description {
    font-size: 1rem;
  }

  /* Teatro responsivo */
  .teatro-section {
    padding: 40px 0 50px 0;
  }
  
  .teatro-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .teatro-image {
    order: -1;
  }
  
  .teatro-content {
    max-width: 100%;
  }
  
  .teatro-title {
    font-size: 2.5rem;
  }
  
  .teatro-description {
    font-size: 1rem;
  }

  /* Parceiros responsivo */
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .partners-title {
    font-size: 2.5rem;
  }
  
  .partners-description {
    font-size: 1.1rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
  
  .partner-item {
    height: 100px;
  }
  
  .partner-logo {
    max-width: 140px;
    max-height: 60px;
  }


  /* Música responsivo */
  .musica-section {
    padding: 40px 0 50px 0;
  }
  
  .musica-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .musica-image {
    order: -1;
  }
  
  .musica-content {
    max-width: 100%;
  }
  
  .musica-title {
    font-size: 2.5rem;
  }
  
  .musica-description {
    font-size: 1rem;
  }

}

@media (max-width: 480px) {
  .extracurriculares-banner {
    padding: 50px 0 30px;
  }
  
  .extracurriculares-banner h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  
  .extracurriculares-banner p {
    font-size: 1.1rem;
  }
  
  .extracurriculares-main {
    padding: 50px 0;
  }
  
  .extracurriculares-header h2 {
    font-size: 1.8rem;
  }
  
  .extracurriculares-header p {
    font-size: 1rem;
  }
  
  /* Esportes mobile */
  .esportes-section {
    padding: 40px 0 30px 0;
  }
  
  .esportes-title {
    font-size: 2rem;
  }
  
  .esportes-description {
    font-size: 0.95rem;
  }
  
  .btn-esportes {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  /* Espanhol mobile */
  .espanhol-section {
    padding: 40px 0 30px 0;
  }
  
  .espanhol-title {
    font-size: 2rem;
  }
  
  .espanhol-description {
    font-size: 0.95rem;
  }
  
  .btn-espanhol {
    padding: 12px 30px;
    font-size: 15px;
  }

  /* Teatro mobile */
  .teatro-section {
    padding: 30px 0 40px 0;
  }
  
  .teatro-title {
    font-size: 2rem;
  }
  
  .teatro-description {
    font-size: 0.95rem;
  }
  
  .btn-teatro {
    padding: 12px 30px;
    font-size: 15px;
  }

  /* Parceiros mobile */
  .partners-section {
    padding: 50px 0;
  }
  
  .partners-header {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .partners-title {
    font-size: 2rem;
  }
  
  .partners-description {
    font-size: 1rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .partner-item {
    height: 90px;
  }
  
  .partner-logo {
    max-width: 120px;
    max-height: 55px;
  }

  /* Música mobile */
  .musica-section {
    padding: 30px 0 40px 0;
  }
  
  .musica-title {
    font-size: 2rem;
  }
  
  .musica-description {
    font-size: 0.95rem;
  }
  
  .btn-musica {
    padding: 12px 30px;
    font-size: 15px;
  }

}

/* ESTILOS DA PÁGINA A ESCOLA */

/* Seção Informações do Colégio - Duplicado da seção esportes */
.colegio-info-section {
  padding: 80px 0 60px 0;
  background: #E6FFBF;
  position: relative;
  overflow: hidden;
}

.colegio-info-section::before {
  content: '';
  position: absolute;
  top: 87%;
  right: 5%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: url('../images/logoverde.png') no-repeat center;
  background-size: contain;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.colegio-info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.colegio-info-content {
  max-width: 500px;
}

.colegio-info-header {
  margin-bottom: 30px;
  position: relative;
}

.colegio-info-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.colegio-info-text {
  margin-bottom: 40px;
}

.colegio-info-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #016552;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-colegio-info {
  background: #016552;
  color: #F2F2F2;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #016552;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-colegio-info:hover {
  background: #016552;
  border-color: #016552;
  transform: translateY(-2px);
}

.colegio-info-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.colegio-info-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.colegio-info-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Seção Conhecimento em Profundidade - Duplicado da seção esportes */
.conhecimento-profundidade-section {
  padding: 80px 0 60px 0;
  background: #00C47D;
  position: relative;
  overflow: hidden;
}

.conhecimento-profundidade-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.conhecimento-profundidade-content {
  max-width: 500px;
}

.conhecimento-profundidade-header {
  margin-bottom: 30px;
  position: relative;
}

.conhecimento-profundidade-title {
  font-size: 3rem;
  font-weight: 700;
  color: #E6FFBF;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.conhecimento-profundidade-text {
  margin-bottom: 40px;
}

.conhecimento-profundidade-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-conhecimento-profundidade {
  background: #F2F2F2;
  color: #00C47D;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-conhecimento-profundidade:hover {
  background: transparent;
  color: #F2F2F2;
  border-color: #F2F2F2;
  transform: translateY(-2px);
}

.conhecimento-profundidade-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conhecimento-profundidade-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.conhecimento-profundidade-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Seção Depoimento Ex-Alunos - Baseado em conhecimento-profundidade */
.depoimento-exalunos-section {
  padding: 80px 0 60px 0;
  background: #004D93;
  position: relative;
  overflow: hidden;
}

.depoimento-exalunos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.depoimento-exalunos-content {
  max-width: 500px;
}

.depoimento-exalunos-header {
  margin-bottom: 30px;
  position: relative;
}

.depoimento-exalunos-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFC27D;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.depoimento-exalunos-text {
  margin-bottom: 40px;
}

.depoimento-exalunos-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #FFC27D;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.depoimento-exalunos-author {
  font-size: 1rem;
  font-weight: 600;
  color: #FFC27D;
  font-style: italic;
  margin-top: 30px;
  font-family: 'Sherika', sans-serif;
}

.btn-depoimento-exalunos {
  background: #F2F2F2;
  color: #004D93;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #FFC27D;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-depoimento-exalunos:hover {
  background: transparent;
  color: #FFC27D;
  border-color: #FFC27D;
  transform: translateY(-2px);
}

.depoimento-exalunos-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.depoimento-exalunos-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.depoimento-exalunos-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Seção Conhecimento em Profundidade - Ensino Fundamental */
.fundamental-conhecimento-profundidade-section {
  padding: 80px 0 60px 0;
  background: #FF714C;
  position: relative;
  overflow: hidden;
}

/* Seção Conhecimento em Profundidade - Ensino Médio */
.medio-conhecimento-profundidade-section {
  padding: 80px 0 60px 0;
  background: #004D93;
  position: relative;
  overflow: hidden;
}

.medio-conhecimento-profundidade-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.medio-conhecimento-profundidade-content {
  max-width: 500px;
}

.medio-conhecimento-profundidade-header {
  margin-bottom: 30px;
  position: relative;
}

.medio-conhecimento-profundidade-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFC27D;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.medio-conhecimento-profundidade-text {
  margin-bottom: 40px;
}

.medio-conhecimento-profundidade-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #FFC27D;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-medio-conhecimento-profundidade {
  background: #F2F2F2;
  color: #004D93;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #FFC27D;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-medio-conhecimento-profundidade:hover {
  background: transparent;
  color: #FFC27D;
  border-color: #FFC27D;
  transform: translateY(-2px);
}

.medio-conhecimento-profundidade-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.medio-conhecimento-profundidade-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.medio-conhecimento-profundidade-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.fundamental-conhecimento-profundidade-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundamental-conhecimento-profundidade-content {
  max-width: 500px;
}

.fundamental-conhecimento-profundidade-header {
  margin-bottom: 30px;
  position: relative;
}

.fundamental-conhecimento-profundidade-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.fundamental-conhecimento-profundidade-text {
  margin-bottom: 40px;
}

.fundamental-conhecimento-profundidade-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-fundamental-conhecimento-profundidade {
  background: #F2F2F2;
  color: #FF714C;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-fundamental-conhecimento-profundidade:hover {
  background: transparent;
  color: #F2F2F2;
  border-color: #F2F2F2;
  transform: translateY(-2px);
}

.fundamental-conhecimento-profundidade-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundamental-conhecimento-profundidade-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.fundamental-conhecimento-profundidade-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Seção Formação Integral - Duplicado da seção musica */
.formacao-integral-section {
  padding: 80px 0 60px 0;
  background: #00C47D;
  position: relative;
  overflow: hidden;
}

/* Seção Formação Integral - Ensino Médio */
.medio-formacao-integral-section {
  padding: 80px 0 60px 0;
  background: #004D93;
  position: relative;
  overflow: hidden;
}

.medio-formacao-integral-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.medio-formacao-integral-content {
  max-width: 500px;
}

.medio-formacao-integral-header {
  margin-bottom: 30px;
}

.medio-formacao-integral-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFC27D;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.medio-formacao-integral-text {
  margin-bottom: 40px;
}

.medio-formacao-integral-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #FFC27D;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-medio-formacao-integral {
  background: #F2F2F2;
  color: #004D93;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #FFC27D;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-medio-formacao-integral:hover {
  background: transparent;
  color: #FFC27D;
  border-color: #FFC27D;
  transform: translateY(-2px);
}

.medio-formacao-integral-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.medio-formacao-integral-image-container {
  position: relative;
  z-index: 2;
}

.medio-formacao-integral-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

.formacao-integral-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.formacao-integral-content {
  max-width: 500px;
}

.formacao-integral-header {
  margin-bottom: 30px;
}

.formacao-integral-title {
  font-size: 3rem;
  font-weight: 700;
  color: #F2F2F2;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
}

.formacao-integral-text {
  margin-bottom: 40px;
}

.formacao-integral-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #F2F2F2;
  margin: 0 0 20px 0;
  font-family: 'Sherika', sans-serif;
  font-weight: 300;
}

.btn-formacao-integral {
  background: #F2F2F2;
  color: #00C47D;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #F2F2F2;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-formacao-integral:hover {
  background: transparent;
  color: #F2F2F2;
  border-color: #F2F2F2;
  transform: translateY(-2px);
}

.formacao-integral-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formacao-integral-image-container {
  position: relative;
  z-index: 2;
}

.formacao-integral-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Banner A Escola */
.aescola-banner {
  background: #016552;
  color: #F2F2F2;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.aescola-banner .container {
  position: relative;
}

.aescola-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.aescola-banner p {
  font-size: 1.6rem;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  white-space: nowrap;
}

/* Banner Ensino Médio */
.ensinomedio-banner {
  background: #004D93;
  color: #FFC27D;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.ensinomedio-banner .container {
  position: relative;
}

.ensinomedio-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ensinomedio-banner p {
  font-size: 1.6rem;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  white-space: nowrap;
}

/* Banner Ensino Fundamental */
.fundamental-banner {
  background: #FF714C;
  color: #F2F2F2;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.fundamental-banner .container {
  position: relative;
}

.fundamental-banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.fundamental-banner p {
  font-size: 1.6rem;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  white-space: nowrap;
}

.highlight-word {
  background: #00C47D;
  color: #F2F2F2;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.highlight-orange {
  background: #FF714C;
  color: #F2F2F2;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* Seção O Colégio */
.colegio-section {
  padding: 80px 0;
  background: #F2F2F2;
}

.colegio-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.colegio-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 40px;
  position: relative;
  text-align: left;
}



.colegio-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #016552;
  margin-bottom: 25px;
}

.colegio-content .destaque {
  font-size: 1.3rem;
  font-weight: 600;
  color: #016552;
  font-style: italic;
  margin-top: 40px;
  padding: 20px;
  border-left: 4px solid #00C47D;
  background: #f8f9fa;
}

/* Seção Projeto Pedagógico */
.projeto-pedagogico-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.projeto-pedagogico-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.projeto-pedagogico-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 50px;
}

.projeto-pedagogico-content blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #016552;
  line-height: 1.7;
  margin: 0 0 20px 0;
  padding: 30px;
  background: #F2F2F2;
  border-radius: 15px;
  position: relative;
}



.projeto-pedagogico-content cite {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Seção Conhecimento em Profundidade - usando o layout da seção esportes */
.conhecimento-section {
  padding: 80px 0 60px 0;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}

.conhecimento-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.conhecimento-content {
  max-width: 500px;
}

.conhecimento-header {
  margin-bottom: 30px;
}

.conhecimento-title {
  font-size: 3rem;
  font-weight: 700;
  color: #016552;
  line-height: 1.2;
  margin-bottom: 10px;
}

.conhecimento-text {
  margin-bottom: 40px;
}

.conhecimento-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.conhecimento-cta {
  margin-top: 30px;
}

.btn-conhecimento {
  display: inline-block;
  background: #00C47D;
  color: #F2F2F2;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-conhecimento:hover {
  background: #016552;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
}

.conhecimento-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conhecimento-image .image-decoration-top {
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: 3;
}

.conhecimento-image .decoration-icon {
  width: 60px;
  height: 60px;
  opacity: 0.7;
}

.conhecimento-image .image-container {
  position: relative;
  z-index: 2;
}

.conhecimento-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.conhecimento-image .image-icon {
  position: absolute;
  bottom: -15px;
  left: -15px;
  z-index: 4;
}

.conhecimento-icon {
  width: 80px;
  height: 80px;
  background: #F2F2F2;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Seção Valores e Princípios */
.valores-section {
  padding: 80px 0;
  background: #F2F2F2;
}

.valores-header {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.valores-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #016552;
  margin-bottom: 40px;
}

.valores-header blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #016552;
  line-height: 1.7;
  margin: 0 0 20px 0;
  padding: 30px;
  background: #F2F2F2;
  border-radius: 15px;
  position: relative;
}



.valores-header cite {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.principios-titulo {
  text-align: center;
  margin-bottom: 50px;
}

.principios-titulo h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #016552;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.principios-titulo h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00C47D;
}

/* Carrossel de Princípios */
.principios-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

.principios-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.principios-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
}

.principios-grid {
  display: none; /* Ocultar o grid antigo */
}

.principio-item {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex: 0 0 auto;
  width: calc(33.333% - 27px); /* 3 cards por vez no desktop */
  min-height: 400px;
}

/* Botões de navegação do carrossel */
.carousel-btn {
  background: #00C47D;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2F2F2;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
  z-index: 10;
}

.carousel-btn:hover {
  background: #016552;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

/* Indicadores do carrossel */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #00C47D;
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background: #016552;
}

.principio-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #00C47D;
}

.principio-icon {
  margin-bottom: 25px;
}

.principio-icon .icon {
  width: 60px;
  height: 60px;
  filter: hue-rotate(90deg) saturate(1.5);
}

/* Ícones dos princípios no desktop */
.principio-icon {
  margin-bottom: 20px;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.principio-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #016552;
  margin-bottom: 20px;
}

.principio-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Seção Alumni */
.alumni-section {
  padding: 60px 0;
  background: #D1E3FF;
  color: #016552;
  text-align: center;
}

.alumni-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.alumni-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-alumni {
  display: inline-block;
  background: #F2F2F2;
  color: #016552;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-alumni:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade para A Escola */
@media (max-width: 768px) {
  .aescola-banner {
    padding: 45px 0;
  }
  
  .aescola-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  
  .aescola-banner p {
    font-size: 1.3rem;
    white-space: normal;
  }
  
  /* Responsividade para Banner Ensino Médio */
  .ensinomedio-banner {
    padding: 45px 0;
  }
  
  .ensinomedio-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  
  .ensinomedio-banner p {
    font-size: 1.3rem;
    white-space: normal;
  }
  
  /* Responsividade para Banner Ensino Fundamental */
  .fundamental-banner {
    padding: 45px 0;
  }
  
  .fundamental-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  
  .fundamental-banner p {
    font-size: 1.3rem;
    white-space: normal;
  }
  
  .colegio-content h2,
  .projeto-pedagogico-content h2,
  .valores-header h2 {
    font-size: 2.2rem;
  }
  
  .conhecimento-section {
    padding: 50px 0 40px 0;
  }
  
  .conhecimento-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .conhecimento-content {
    max-width: 100%;
  }
  
  .conhecimento-title {
    font-size: 2.5rem;
  }
  
  /* Responsividade seção colegio-info */
  .colegio-info-section {
    padding: 50px 0 40px 0;
  }
  
  .colegio-info-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .colegio-info-image {
    order: -1;
  }
  
  .colegio-info-content {
    max-width: 100%;
  }
  
  .colegio-info-title {
    font-size: 2.5rem;
  }
  
  .colegio-info-description {
    font-size: 1rem;
  }
  
  .colegio-info-section::before {
    width: 150px;
    height: 150px;
    right: 3%;
  }
  
  /* Responsividade conhecimento-profundidade */
  .conhecimento-profundidade-section {
    padding: 50px 0 40px 0;
  }
  
  .conhecimento-profundidade-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .conhecimento-profundidade-image {
    order: -1;
  }
  
  .conhecimento-profundidade-content {
    max-width: 100%;
  }
  
  .conhecimento-profundidade-title {
    font-size: 2.5rem;
  }
  
  /* Responsividade medio-conhecimento-profundidade */
  .medio-conhecimento-profundidade-section {
    padding: 50px 0 40px 0;
  }
  
  .medio-conhecimento-profundidade-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .medio-conhecimento-profundidade-image {
    order: -1;
  }
  
  .medio-conhecimento-profundidade-content {
    max-width: 100%;
  }
  
  .medio-conhecimento-profundidade-title {
    font-size: 2.5rem;
  }
  
  /* Responsividade depoimento-exalunos */
  .depoimento-exalunos-section {
    padding: 50px 0 40px 0;
  }
  
  .depoimento-exalunos-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .depoimento-exalunos-image {
    order: -1;
  }
  
  .depoimento-exalunos-content {
    max-width: 100%;
  }
  
  .depoimento-exalunos-title {
    font-size: 2.5rem;
  }
  
  .conhecimento-profundidade-description {
    font-size: 1rem;
  }
  
  /* Responsividade fundamental-conhecimento-profundidade */
  .fundamental-conhecimento-profundidade-section {
    padding: 50px 0 40px 0;
  }
  
  .fundamental-conhecimento-profundidade-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .fundamental-conhecimento-profundidade-image {
    order: -1;
  }
  
  .fundamental-conhecimento-profundidade-content {
    max-width: 100%;
  }
  
  .fundamental-conhecimento-profundidade-title {
    font-size: 2.5rem;
  }
  
  .fundamental-conhecimento-profundidade-description {
    font-size: 1rem;
  }
  
  /* Responsividade formacao-integral */
  .formacao-integral-section {
    padding: 50px 0 40px 0;
  }
  
  .formacao-integral-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .formacao-integral-content {
    max-width: 100%;
  }
  
  .formacao-integral-title {
    font-size: 2.5rem;
  }
  
  .formacao-integral-description {
    font-size: 1rem;
  }
  
  /* Responsividade medio-formacao-integral */
  .medio-formacao-integral-section {
    padding: 50px 0 40px 0;
  }
  
  .medio-formacao-integral-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .medio-formacao-integral-content {
    max-width: 100%;
  }
  
  .medio-formacao-integral-title {
    font-size: 2.5rem;
  }
  
  .medio-formacao-integral-description {
    font-size: 1rem;
  }
  
  /* Responsividade do carrossel */
  .principios-carousel-container {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-btn {
    display: flex; /* Mostrar botões no mobile/tablet */
    width: 40px;
    height: 40px;
  }
  
  .principio-item {
    width: calc(50% - 20px); /* 2 cards por vez no tablet */
    padding: 30px 20px;
  }
  
  /* Responsividade mobile do carrossel para telas menores que 768px */
  .principios-carousel {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden; /* Garante que o conteúdo não vaze */
    min-height: 280px; /* Altura mínima para o container */
  }
  
  .principio-item {
    width: calc(100% - 30px) !important; /* Considera o padding do container */
    min-height: 250px !important; /* Altura mínima adequada para o conteúdo */
    height: auto !important; /* Altura automática baseada no conteúdo */
    flex: 0 0 calc(100% - 30px); /* Garante que cada card ocupe a largura correta */
    margin: 0;
    padding: 30px 20px !important; /* Padding aumentado */
    box-sizing: border-box;
    max-width: calc(100% - 30px); /* Limita a largura máxima */
    word-wrap: break-word; /* Quebra palavras longas */
    overflow-wrap: break-word; /* Compatibilidade adicional */
    text-align: center; /* Centraliza o texto */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinha conteúdo no topo */
  }
  
  .principio-item h4 {
    font-size: 1.4rem !important; /* Título legível no mobile */
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
    color: #016552 !important;
    font-weight: 600 !important;
  }
  
  .principio-item p {
    font-size: 0.95rem !important; /* Texto legível no mobile */
    line-height: 1.4 !important;
    margin: 0 !important;
    text-align: left; /* Texto alinhado à esquerda para melhor leitura */
    color: #555 !important;
    flex-grow: 1; /* Permite que o texto ocupe o espaço disponível */
  }
  
  .principios-carousel-track {
    gap: 0;
    width: 600%; /* 6 cards * 100% cada */
    display: flex;
    flex-wrap: nowrap; /* Evita quebra de linha */
  }
}

/* Media query específico para mobile carrossel (abaixo de 768px) */
@media screen and (max-width: 767px) {
  /* Container principal do carrossel */
  .principios-carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    padding: 0 60px !important;
    margin: 0 !important;
    position: relative !important;
  }
  
  /* Container do carrossel */
  .principios-carousel {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  /* Track do carrossel */
  .principios-carousel-track {
    width: 600% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  /* Botões de navegação mobile */
  .carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 15 !important;
  }
  
  .carousel-btn-prev {
    left: 10px !important;
  }
  
  .carousel-btn-next {
    right: 10px !important;
  }
  
  .carousel-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  /* Cards individuais */
  .principio-item {
    width: 16.666667% !important; /* 100% / 6 cards = 16.666667% */
    min-width: 16.666667% !important;
    max-width: 16.666667% !important;
    flex: 0 0 16.666667% !important;
    min-height: 250px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 15px 8px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Ícones dos princípios no mobile */
  .principio-icon {
    margin-bottom: 8px !important;
    width: 100% !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  
  .principio-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }
  
  /* Título dos cards */
  .principio-item h4 {
    font-size: 1.1rem !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.2 !important;
    color: #016552 !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  
  /* Texto dos cards */
  .principio-item p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-align: left !important;
    color: #555 !important;
    flex-grow: 1 !important;
    width: 100% !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 8 !important;
    -webkit-box-orient: vertical !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
  }
}

@media (max-width: 480px) {
  .aescola-banner {
    padding: 25px 0;
  }
  
  .aescola-banner h1 {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  
  .aescola-banner p {
    font-size: 1.1rem;
    white-space: normal;
  }
  
  /* Mobile para Banner Ensino Médio */
  .ensinomedio-banner {
    padding: 25px 0;
  }
  
  .ensinomedio-banner h1 {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  
  .ensinomedio-banner p {
    font-size: 1.1rem;
    white-space: normal;
  }
  
  /* Mobile para Banner Ensino Fundamental */
  .fundamental-banner {
    padding: 25px 0;
  }
  
  .fundamental-banner h1 {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  
  .fundamental-banner p {
    font-size: 1.1rem;
    white-space: normal;
  }
  
  .conhecimento-section {
    padding: 40px 0 30px 0;
  }
  
  .conhecimento-title {
    font-size: 2rem;
  }
  
  /* Mobile seção colegio-info */
  .colegio-info-section {
    padding: 40px 0 30px 0;
  }
  
  .colegio-info-title {
    font-size: 2rem;
  }
  
  .colegio-info-description {
    font-size: 0.95rem;
  }
  
  .btn-colegio-info {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  .colegio-info-section::before {
    width: 100px;
    height: 100px;
    right: 2%;
    opacity: 0.05;
  }
  
  /* Mobile conhecimento-profundidade */
  .conhecimento-profundidade-section {
    padding: 40px 0 30px 0;
  }
  
  .conhecimento-profundidade-title {
    font-size: 2rem;
  }
  
  .conhecimento-profundidade-description {
    font-size: 0.95rem;
  }
  
  .btn-conhecimento-profundidade {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  /* Mobile medio-conhecimento-profundidade */
  .medio-conhecimento-profundidade-section {
    padding: 40px 0 30px 0;
  }
  
  .medio-conhecimento-profundidade-title {
    font-size: 2rem;
  }
  
  .medio-conhecimento-profundidade-description {
    font-size: 0.95rem;
  }
  
  .btn-medio-conhecimento-profundidade {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  /* Mobile depoimento-exalunos */
  .depoimento-exalunos-section {
    padding: 40px 0 30px 0;
  }
  
  .depoimento-exalunos-title {
    font-size: 2rem;
  }
  
  .depoimento-exalunos-description {
    font-size: 0.95rem;
  }
  
  .btn-depoimento-exalunos {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  /* Mobile fundamental-conhecimento-profundidade */
  .fundamental-conhecimento-profundidade-section {
    padding: 40px 0 30px 0;
  }
  
  .fundamental-conhecimento-profundidade-title {
    font-size: 2rem;
  }
  
  .fundamental-conhecimento-profundidade-description {
    font-size: 0.95rem;
  }
  
  .btn-fundamental-conhecimento-profundidade {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  /* Mobile formacao-integral */
  .formacao-integral-section {
    padding: 40px 0 30px 0;
  }
  
  .formacao-integral-title {
    font-size: 2rem;
  }
  
  .formacao-integral-description {
    font-size: 0.95rem;
  }
  
  .btn-formacao-integral {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  /* Mobile medio-formacao-integral */
  .medio-formacao-integral-section {
    padding: 40px 0 30px 0;
  }
  
  .medio-formacao-integral-title {
    font-size: 2rem;
  }
  
  .medio-formacao-integral-description {
    font-size: 0.95rem;
  }
  
  .btn-medio-formacao-integral {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  .colegio-content h2,
  .projeto-pedagogico-content h2,
  .valores-header h2 {
    font-size: 1.8rem;
  }
  
  .principios-titulo h3 {
    font-size: 1.8rem;
  }
  
  .carousel-indicators {
    margin-top: 20px;
  }
  
  /* Garantir espaçamento adequado para botões mobile na seção valores */
  .valores-section .container {
    padding: 0 20px !important;
    overflow: visible !important;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

/* ===== ENSINO FUNDAMENTAL SECTIONS START ===== */

/* Seção Anos Iniciais */
.fundamental-anos-iniciais-section {
    padding: 80px 0;
    background: #F2F2F2;
}

.fundamental-anos-iniciais-header {
    text-align: center;
    margin-bottom: 50px;
}

.fundamental-anos-iniciais-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF714C;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.fundamental-anos-iniciais-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fundamental-anos-iniciais-content {
    text-align: center;
}

.fundamental-anos-iniciais-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #016552;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 20px;
}

.fundamental-anos-iniciais-description:last-child {
    margin-bottom: 0;
}

/* Seção Desenvolvimento Cognitivo */
.fundamental-desenvolvimento-section {
    padding: 80px 0;
    background: #00C47D;
}

.fundamental-desenvolvimento-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fundamental-desenvolvimento-content {
    padding: 0 20px;
}

.fundamental-desenvolvimento-header {
    margin-bottom: 30px;
}

.fundamental-desenvolvimento-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.fundamental-desenvolvimento-text {
    margin-bottom: 40px;
}

.fundamental-desenvolvimento-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #F2F2F2;
    margin-bottom: 0;
}

.fundamental-desenvolvimento-cta {
    text-align: left;
}

.btn-fundamental-desenvolvimento {
    display: inline-block;
    background: #F2F2F2;
    color: #00C47D;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #F2F2F2;
}

.btn-fundamental-desenvolvimento:hover {
    background: transparent;
    color: #F2F2F2;
    text-decoration: none;
    transform: translateY(-2px);
}

.fundamental-desenvolvimento-image {
    text-align: center;
}

.fundamental-desenvolvimento-image-container {
    position: relative;
    display: inline-block;
}

.fundamental-desenvolvimento-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Seção Anos Finais */
.fundamental-anos-finais-section {
    padding: 80px 0;
    background: #F2F2F2;
}

.fundamental-anos-finais-header {
    text-align: center;
    margin-bottom: 50px;
}

.fundamental-anos-finais-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF714C;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.fundamental-anos-finais-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fundamental-anos-finais-content {
    text-align: center;
}

.fundamental-anos-finais-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #016552;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 20px;
}

.fundamental-anos-finais-description:last-child {
    margin-bottom: 0;
}

/* Seção Uma formação completa */
.fundamental-formacao-completa-section {
    padding: 80px 0;
    background: #016552;
}

.fundamental-formacao-completa-header {
    text-align: center;
    margin-bottom: 50px;
}

.fundamental-formacao-completa-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.fundamental-formacao-completa-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fundamental-formacao-completa-content {
    text-align: center;
}

.fundamental-formacao-completa-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #F2F2F2;
    margin-bottom: 0;
    text-align: center;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fundamental-anos-iniciais-section,
    .fundamental-desenvolvimento-section,
    .fundamental-anos-finais-section,
    .fundamental-formacao-completa-section {
        padding: 60px 0;
    }

    .fundamental-anos-iniciais-title,
    .fundamental-desenvolvimento-title,
    .fundamental-anos-finais-title,
    .fundamental-formacao-completa-title {
        font-size: 2rem;
    }

    .fundamental-anos-iniciais-description,
    .fundamental-desenvolvimento-description,
    .fundamental-anos-finais-description,
    .fundamental-formacao-completa-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .fundamental-desenvolvimento-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .fundamental-desenvolvimento-content {
        padding: 0;
    }

    .fundamental-desenvolvimento-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fundamental-anos-iniciais-section,
    .fundamental-desenvolvimento-section,
    .fundamental-anos-finais-section,
    .fundamental-formacao-completa-section {
        padding: 40px 0;
    }

    .fundamental-anos-iniciais-title,
    .fundamental-desenvolvimento-title,
    .fundamental-anos-finais-title,
    .fundamental-formacao-completa-title {
        font-size: 1.75rem;
    }

    .fundamental-anos-iniciais-description,
    .fundamental-desenvolvimento-description,
    .fundamental-anos-finais-description,
    .fundamental-formacao-completa-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .fundamental-formacao-completa-description {
        text-align: center;
    }

    .btn-fundamental-desenvolvimento {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Seção O Palmares Integral */
.fundamental-palmares-integral-section {
    padding: 80px 0;
    background: #016552;
}

.fundamental-palmares-integral-header {
    text-align: center;
    margin-bottom: 50px;
}

.fundamental-palmares-integral-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.fundamental-palmares-integral-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fundamental-palmares-integral-content {
    text-align: center;
}

.fundamental-palmares-integral-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B0B0B0;
    margin-bottom: 0;
    text-align: justify;
    padding: 0 20px;
}

.highlight-text {
    font-weight: 700;
    color: #F2F2F2;
}

/* Responsive Design para Palmares Integral */
@media (max-width: 768px) {
    .fundamental-palmares-integral-section {
        padding: 60px 0;
    }

    .fundamental-palmares-integral-title {
        font-size: 2rem;
    }

    .fundamental-palmares-integral-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .fundamental-palmares-integral-section {
        padding: 40px 0;
    }

    .fundamental-palmares-integral-title {
        font-size: 1.75rem;
    }

    .fundamental-palmares-integral-description {
        font-size: 0.95rem;
        padding: 0 10px;
        text-align: left;
    }
}

/* Carrossel Nosso Ensino */
.nosso-ensino-carousel-section {
    padding: 80px 0;
    background: #F2F2F2;
    position: relative;
}

.nosso-ensino-carousel-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.nosso-ensino-carousel-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FF714C;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.nosso-ensino-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nosso-ensino-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.nosso-ensino-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.nosso-ensino-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #F2F2F2;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.nosso-ensino-card:hover {
    transform: translateY(-10px);
}

.nosso-ensino-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.nosso-ensino-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.nosso-ensino-card-content {
    padding: 30px;
    position: relative;
}

.nosso-ensino-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #016552;
    margin-bottom: 15px;
    font-family: 'Sherika', sans-serif;
    line-height: 1.3;
}

.nosso-ensino-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nosso-ensino-tag {
    background: #FF714C;
    color: #F2F2F2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nosso-ensino-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.nosso-ensino-card-cta {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.btn-nosso-ensino {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FF714C;
    color: #F2F2F2;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nosso-ensino:hover {
    background: #E55A33;
    transform: scale(1.1);
    color: #F2F2F2;
    text-decoration: none;
}

.btn-nosso-ensino svg {
    width: 20px;
    height: 20px;
}

/* Navegação do Carrossel */
.nosso-ensino-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nosso-ensino-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FF714C;
    border: 2px solid #FF714C;
    border-radius: 50%;
    color: #F2F2F2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nosso-ensino-carousel-btn:hover:not(:disabled) {
    background: #E55A33;
    border-color: #E55A33;
    transform: scale(1.1);
}

.nosso-ensino-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nosso-ensino-carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Indicadores do Carrossel */
.nosso-ensino-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.nosso-ensino-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nosso-ensino-carousel-indicator.active,
.nosso-ensino-carousel-indicator:hover {
    background: #FF714C;
    border-color: #FF714C;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nosso-ensino-carousel-section {
        padding: 60px 0;
    }

    .nosso-ensino-carousel-title {
        font-size: 2.5rem;
    }

    .nosso-ensino-carousel-track {
        gap: 20px;
    }

    .nosso-ensino-card {
        flex: 0 0 calc(50% - 10px);
    }

    .nosso-ensino-card-content {
        padding: 25px;
    }

    .nosso-ensino-card-title {
        font-size: 1.3rem;
    }

    .nosso-ensino-card-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .nosso-ensino-carousel-btn {
        width: 50px;
        height: 50px;
    }

    .nosso-ensino-carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .nosso-ensino-carousel-section {
        padding: 40px 0;
    }

    .nosso-ensino-carousel-title {
        font-size: 2rem;
    }

    .nosso-ensino-carousel-container {
        padding: 0 15px;
    }

    .nosso-ensino-carousel-track {
        gap: 15px;
    }

    .nosso-ensino-card {
        flex: 0 0 calc(100% - 0px);
    }

    .nosso-ensino-card-content {
        padding: 20px;
    }

    .nosso-ensino-card-title {
        font-size: 1.2rem;
    }

    .nosso-ensino-card-description {
        font-size: 0.9rem;
        text-align: left;
    }

    .btn-nosso-ensino {
        width: 45px;
        height: 45px;
    }

    .btn-nosso-ensino svg {
        width: 18px;
        height: 18px;
    }

    .nosso-ensino-carousel-nav {
        gap: 15px;
        margin-top: 30px;
    }

    .nosso-ensino-carousel-btn {
        width: 45px;
        height: 45px;
    }

    .nosso-ensino-carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .nosso-ensino-carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

/* ===== ENSINO MÉDIO SECTIONS START ===== */

/* Seção O final da Educação Básica no Palmares */
.medio-educacao-basica-section {
    padding: 80px 0;
    background: #F2F2F2;
}

.medio-educacao-basica-header {
    text-align: center;
    margin-bottom: 50px;
}

.medio-educacao-basica-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004D93;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
    line-height: 1.2;
}

.medio-educacao-basica-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.medio-educacao-basica-content {
    text-align: center;
}

.medio-educacao-basica-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #004D93;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.medio-educacao-basica-description:last-child {
    margin-bottom: 0;
}

/* Seção Uma formação completa */
.medio-formacao-completa-section {
    padding: 80px 0;
    background: #f2f2f2;
}

.medio-formacao-completa-header {
    text-align: center;
    margin-bottom: 50px;
}

.medio-formacao-completa-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004D93;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
    line-height: 1.2;
}

.medio-formacao-completa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.medio-formacao-completa-content {
    text-align: center;
}

.medio-formacao-completa-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #004D93;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.medio-formacao-completa-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .medio-educacao-basica-section,
    .medio-formacao-completa-section {
        padding: 60px 0;
    }

    .medio-educacao-basica-title,
    .medio-formacao-completa-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .medio-educacao-basica-container,
    .medio-formacao-completa-container {
        padding: 0 15px;
    }

    .medio-educacao-basica-description,
    .medio-formacao-completa-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .medio-educacao-basica-section,
    .medio-formacao-completa-section {
        padding: 40px 0;
    }

    .medio-educacao-basica-title,
    .medio-formacao-completa-title {
        font-size: 1.8rem;
    }

    .medio-educacao-basica-container,
    .medio-formacao-completa-container {
        padding: 0 10px;
    }

    .medio-educacao-basica-description,
    .medio-formacao-completa-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* Carrossel Ensino Médio */
.medio-ensino-carousel-section {
    padding: 80px 0;
    background: #FFC27D;
    position: relative;
}

.medio-ensino-carousel-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.medio-ensino-carousel-title {
    font-size: 3rem;
    font-weight: 700;
    color: #004D93;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
}

.medio-ensino-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.medio-ensino-carousel {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.medio-ensino-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.medio-ensino-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #F2F2F2;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.medio-ensino-card:hover {
    transform: translateY(-10px);
}

.medio-ensino-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.medio-ensino-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.medio-ensino-card-content {
    padding: 30px;
    position: relative;
}

.medio-ensino-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004D93;
    margin-bottom: 15px;
    font-family: 'Sherika', sans-serif;
    line-height: 1.3;
}

.medio-ensino-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.medio-ensino-card-cta {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.btn-medio-ensino {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #004D93;
    color: #F2F2F2;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-medio-ensino:hover {
    background: #003A75;
    transform: scale(1.1);
    color: #F2F2F2;
    text-decoration: none;
}

.btn-medio-ensino svg {
    width: 20px;
    height: 20px;
}

/* Navegação do Carrossel */
.medio-ensino-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.medio-ensino-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #004D93;
    border: 2px solid #004D93;
    border-radius: 50%;
    color: #F2F2F2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.medio-ensino-carousel-btn:hover:not(:disabled) {
    background: #003A75;
    border-color: #003A75;
    transform: scale(1.1);
}

.medio-ensino-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.medio-ensino-carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Indicadores do Carrossel */
.medio-ensino-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.medio-ensino-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.medio-ensino-carousel-indicator.active,
.medio-ensino-carousel-indicator:hover {
    background: #004D93;
    border-color: #004D93;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .medio-ensino-carousel-section {
        padding: 60px 0;
    }

    .medio-ensino-carousel-title {
        font-size: 2.5rem;
    }

    .medio-ensino-carousel-track {
        gap: 20px;
    }

    .medio-ensino-card {
        flex: 0 0 calc(50% - 10px);
    }

    .medio-ensino-card-content {
        padding: 25px;
    }

    .medio-ensino-card-title {
        font-size: 1.3rem;
    }

    .medio-ensino-card-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .medio-ensino-carousel-btn {
        width: 50px;
        height: 50px;
    }

    .medio-ensino-carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .medio-ensino-carousel-section {
        padding: 40px 0;
    }

    /* Ajustar marca d'água para mobile */
    .medio-ensino-carousel-section::before {
        width: 200px;
        height: 200px;
        left: -100px;
        opacity: 0.03;
    }

    .medio-ensino-carousel-title {
        font-size: 2rem;
    }

    .medio-ensino-carousel-container {
        padding: 0 20px;
    }

    .medio-ensino-carousel-track {
        gap: 0px;
    }

    .medio-ensino-card {
        flex: 0 0 calc(100% - 40px);
        margin: 0 20px;
    }

    .medio-ensino-card-content {
        padding: 20px;
    }

    .medio-ensino-card-title {
        font-size: 1.2rem;
    }

    .medio-ensino-card-description {
        font-size: 0.9rem;
        text-align: left;
    }

    .btn-medio-ensino {
        width: 45px;
        height: 45px;
    }

    .btn-medio-ensino svg {
        width: 18px;
        height: 18px;
    }

    .medio-ensino-carousel-nav {
        gap: 15px;
        margin-top: 30px;
    }

    .medio-ensino-carousel-btn {
        width: 45px;
        height: 45px;
    }

    .medio-ensino-carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .medio-ensino-carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

/* Ajuste extra para mobile muito pequeno */
@media (max-width: 360px) {
    .medio-ensino-carousel-container {
        padding: 0 15px;
    }

    .medio-ensino-card {
        flex: 0 0 calc(100% - 30px);
        margin: 0 15px;
    }
}

/* Seção Projetos para uma formação completa */
.medio-projetos-formacao-section {
    padding: 80px 0;
    background: #FFC27D;
    position: relative;
}

.medio-projetos-formacao-header {
    text-align: center;
    margin-bottom: 60px;
}

.medio-projetos-formacao-title {
    font-size: 3rem;
    font-weight: 700;
    color: #004D93;
    margin-bottom: 0;
    font-family: 'Sherika', sans-serif;
    line-height: 1.2;
}

.medio-projetos-formacao-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.medio-stat-item {
    text-align: center;
    color: #004D93;
}

.medio-stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Sherika', sans-serif;
    margin-bottom: 20px;
    line-height: 1;
}

.medio-stat-description {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .medio-projetos-formacao-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

    .medio-stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .medio-projetos-formacao-section {
        padding: 60px 0;
    }

    .medio-projetos-formacao-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .medio-projetos-formacao-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        padding: 0 15px;
    }

    .medio-stat-number {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .medio-stat-description {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .medio-projetos-formacao-section {
        padding: 50px 0;
    }

    .medio-projetos-formacao-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .medio-projetos-formacao-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }

    .medio-stat-number {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .medio-stat-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Seção Foco nos vestibulares - Ensino Médio */
.medio-vestibulares-section {
    background-color: #004D93;
    padding: 80px 0;
}

.medio-vestibulares-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.medio-vestibulares-title {
    font-family: 'Sherika', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFC27D;
    margin-bottom: 30px;
    line-height: 1.2;
}

.medio-vestibulares-description {
    font-family: 'Sherika', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFC27D;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Media queries para responsividade da seção vestibulares */
@media (max-width: 768px) {
    .medio-vestibulares-section {
        padding: 50px 0;
    }

    .medio-vestibulares-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .medio-vestibulares-description {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .medio-vestibulares-title {
        font-size: 24px;
    }

    .medio-vestibulares-description {
        font-size: 15px;
    }
}

/* Marca d'água na seção Nosso Ensino - Ensino Médio */
.medio-ensino-carousel-section {
  position: relative;
  overflow: hidden;
}

.medio-ensino-carousel-section::before {
  content: '';
  position: absolute;
  top: 87%;
  left: -70px;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  background-image: url('../images/logoverde.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.56;
  z-index: 1;
  pointer-events: none;
  animation: floatWatermarkMedio 6s ease-in-out infinite;
}

@keyframes floatWatermarkMedio {
  0%, 100% {
    transform: translateY(-50%) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) translateX(8px) rotate(2deg);
  }
}

.medio-ensino-carousel-section .container {
  position: relative;
  z-index: 2;
}

/* ===== ENSINO MÉDIO SECTIONS END ===== */

/* ===== ENSINO FUNDAMENTAL SECTIONS END ===== */

/* ==============================
   ANIMAÇÕES E TRANSIÇÕES
   ============================== */

/* Animações de Entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classes de Animação */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.scale-in {
  opacity: 0;
  animation: scaleIn 0.8s ease-out forwards;
}

.slide-in-down {
  opacity: 0;
  animation: slideInDown 0.8s ease-out forwards;
}

/* Animações com Delay */
.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

.animate-delay-4 {
  animation-delay: 0.8s;
}

/* Animações de Hover Melhoradas */
.btn-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hover-effect:hover::before {
  left: 100%;
}

/* Animações de Loading */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(1, 101, 82, 0.1);
  border-left: 4px solid #016552;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animações Específicas para Elementos */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-zoom {
  transition: transform 0.3s ease;
  overflow: hidden;
}

.image-zoom img {
  transition: transform 0.3s ease;
}

.image-zoom:hover img {
  transform: scale(1.05);
}

/* Animação de Contador */
.counter-animate {
  transition: all 0.3s ease;
}

.counter-animate.counting {
  font-weight: 700;
  color: #004D93;
}

/* Animações de Flutuação para Ícones */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
}

@keyframes floatSubtle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  75% {
    transform: translateY(8px) rotate(-2deg);
  }
}

@keyframes floatGentle {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* Classes de Flutuação */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

.float-reverse {
  animation: floatReverse 3.5s ease-in-out infinite;
}

.float-subtle {
  animation: floatSubtle 4s ease-in-out infinite;
}

.float-gentle {
  animation: floatGentle 3.2s ease-in-out infinite;
}

/* Aplicação específica para diferentes tipos de ícones */
.icon-img {
  animation: float 3s ease-in-out infinite;
}

.decoration-icon {
  animation: floatSubtle 4s ease-in-out infinite;
}

.decoration-icon-left {
  animation: floatReverse 3.5s ease-in-out infinite;
}

.colegio-icon {
  animation: floatGentle 3.2s ease-in-out infinite;
}

.bg-icon-img {
  animation: float 4.5s ease-in-out infinite;
}

/* Delays escalonados para efeito natural */
.icon-img:nth-child(1),
img[src*="icon1"] {
  animation-delay: 0s;
}

img[src*="icon2"] {
  animation-delay: 0.5s;
}

img[src*="icon3"] {
  animation-delay: 1s;
}

img[src*="icon4"] {
  animation-delay: 1.5s;
}

img[src*="icon5"] {
  animation-delay: 2s;
}

img[src*="icon6"] {
  animation-delay: 2.5s;
}

img[src*="icon7"] {
  animation-delay: 3s;
}

img[src*="icon8"] {
  animation-delay: 3.5s;
}

/* Responsive Animations */
@media (max-width: 768px) {
  .animate-on-scroll {
    animation-duration: 0.6s;
  }
  
  .card-hover:hover {
    transform: translateY(-4px);
  }
  
  /* Ajustar marca d'água para tablet */
  .medio-ensino-carousel-section::before {
    width: 280px;
    height: 280px;
    left: -80px;
    opacity: 0.04;
  }
  
  /* Reduzir movimento dos ícones em mobile */
  .icon-img {
    animation: float 4s ease-in-out infinite;
  }
  
  .decoration-icon {
    animation: floatSubtle 5s ease-in-out infinite;
  }
  
  .decoration-icon-left {
    animation: floatReverse 4.5s ease-in-out infinite;
  }
  
  .colegio-icon {
    animation: floatGentle 4.2s ease-in-out infinite;
  }
  
  .bg-icon-img {
    animation: float 5.5s ease-in-out infinite;
  }
  
  /* Reduzir amplitude de movimento em mobile */
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
  @keyframes floatReverse {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(8px);
    }
  }
  
  @keyframes floatSubtle {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    25% {
      transform: translateY(-4px) rotate(1deg);
    }
    75% {
      transform: translateY(4px) rotate(-1deg);
    }
  }
  
  @keyframes floatGentle {
    0%, 100% {
      transform: translateY(0px) scale(1);
    }
    50% {
      transform: translateY(-6px) scale(1.02);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .fade-in-up,
  .fade-in-left,
  .fade-in-right,
  .fade-in,
  .scale-in,
  .slide-in-down {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .btn-hover-effect,
  .card-hover,
  .image-zoom {
    transition: none !important;
  }
  
  .counter-animate {
    transition: none !important;
  }
  
  /* Desabilitar animações de flutuação para acessibilidade */
  .icon-img,
  .decoration-icon,
  .decoration-icon-left,
  .colegio-icon,
  .bg-icon-img,
  .float-animation,
  .float-reverse,
  .float-subtle,
  .float-gentle {
    animation: none !important;
  }
  
  /* Desabilitar animação da marca d'água */
  .medio-ensino-carousel-section::before {
    animation: none !important;
  }
}

/* ===================================
   PALMARES 50 ANOS - ESTILOS ESPECÍFICOS
   =================================== */

/* Hero Section */
.palmares50-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #004D93 0%, #003A75 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.palmares50-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.palmares50-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.palmares50-icon {
    width: 30px;
    height: 30px;
}

.palmares50-badge-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.palmares50-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Sherika', sans-serif;
}

.highlight-number {
    color: #00C47D;
    font-size: 4rem;
}

.palmares50-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.palmares50-stats {
    display: flex;
    gap: 40px;
}

.palmares50-stat-item {
    text-align: center;
}

.palmares50-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C47D;
    font-family: 'Sherika', sans-serif;
}

.palmares50-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.palmares50-hero-image {
    position: relative;
}

.palmares50-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
}

.palmares50-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.palmares50-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.palmares50-floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
}

.palmares50-float-1 {
    top: 20%;
    left: -10%;
}

.palmares50-float-2 {
    bottom: 20%;
    right: -10%;
}

/* Journey Section */
.palmares50-journey-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.palmares50-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004D93;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Sherika', sans-serif;
}

.palmares50-section-description {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.palmares50-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.palmares50-timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #004D93;
}

.palmares50-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.palmares50-timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.palmares50-timeline-year {
    background: #004D93;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 120px;
    text-align: center;
    margin-right: 40px;
    transform: scale(0.8);
    transition: transform 0.6s ease 0.2s;
}

.palmares50-timeline-item.animate .palmares50-timeline-year {
    transform: scale(1);
}

.palmares50-timeline-content {
    flex: 1;
    padding: 0;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.palmares50-timeline-item.animate .palmares50-timeline-content {
    transform: translateX(0);
    opacity: 1;
}

.palmares50-timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004D93;
    margin-bottom: 10px;
}

.palmares50-timeline-content p {
    color: #666;
    line-height: 1.5;
}

/* Highlights Section */
.palmares50-highlights-section {
    padding: 100px 0;
    background: white;
}

.palmares50-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.palmares50-highlight-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.palmares50-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 147, 0.1);
}

.palmares50-highlight-icon {
    margin-bottom: 25px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
}

.palmares50-highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004D93;
    margin-bottom: 15px;
}

.palmares50-highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Form Section Customizations */
.palmares50-form-decoration {
    margin-bottom: 20px;
}

.palmares50-form-highlights {
    margin: 30px 0;
}

.palmares50-form-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.palmares50-highlight-number {
    font-size: 1.5rem;
}

.palmares50-highlight-text {
    font-weight: 500;
    color: #333;
}

/* Animações */
.palmares50-hero-text {
    animation: fadeInUp 1s ease forwards;
}

.palmares50-hero-image {
    animation: fadeInRight 1.2s ease 0.3s forwards;
    opacity: 0;
}

.palmares50-floating-icon {
    opacity: 0;
    animation: fadeInFloat 1.5s ease 1s forwards, palmares50Float 3s ease-in-out 2s infinite;
}

.palmares50-stat-item {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease forwards;
}

.palmares50-stat-item:nth-child(1) { animation-delay: 1s; }
.palmares50-stat-item:nth-child(2) { animation-delay: 1.5s; }
.palmares50-stat-item:nth-child(3) { animation-delay: 2s; }

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes palmares50Float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .palmares50-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .palmares50-hero-title {
        font-size: 2.5rem;
    }
    
    .highlight-number {
        font-size: 3rem;
    }
    
    .palmares50-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .palmares50-timeline::before {
        left: 60px;
    }
    
    .palmares50-timeline-item {
        flex-direction: row;
        padding-left: 0;
    }
    
    .palmares50-timeline-year {
        min-width: 80px;
        padding: 10px 15px;
        font-size: 0.9rem;
        margin-right: 20px;
    }
    
    .palmares50-timeline-content {
        padding: 0;
    }
    
    .palmares50-highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===================================
   FORMULÁRIO ALUMNI - ESTILOS ESPECÍFICOS
   =================================== */

.alumni-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    height: 460px; /* Altura fixa para manter o tamanho do wrapper */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.alumni-form-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 10px;
    flex: 1;
    min-height: 400px;
}

/* Responsividade para o formulário alumni */
@media (max-width: 768px) {
    .alumni-form-wrapper {
        max-width: 100%;
        height: 500px;
        padding: 20px;
    }
    
    .alumni-form-iframe {
        min-height: 450px;
    }
}

@media (max-width: 480px) {
    .alumni-form-wrapper {
        height: 550px;
        padding: 15px;
    }
    
    .alumni-form-iframe {
        min-height: 500px;
    }
}

/* ===================================
   PÁGINA OBRIGADO - ESTILOS ESPECÍFICOS
   =================================== */

.obrigado-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #00C47D 0%, #016552 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

/* Logo de fundo como marca d'água */
.obrigado-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    background-image: url('../images/logobranca.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.obrigado-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.obrigado-content {
    text-align: left;
    color: white;
    animation: fadeInUp 1s ease forwards;
}

.obrigado-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Sherika', sans-serif;
    line-height: 1.2;
}

.obrigado-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.obrigado-contact {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.9;
}

.obrigado-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-obrigado {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.btn-voltar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-voltar:hover {
    background: white;
    color: #016552;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-conhecer {
    background: #004D93;
    color: white;
    border: 2px solid #004D93;
}

.btn-conhecer:hover {
    background: #003A75;
    border-color: #003A75;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.obrigado-contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.obrigado-contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.contact-value {
    font-weight: 500;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .obrigado-section::before {
        width: 600px;
        height: 600px;
        right: -20%;
    }
    
    .obrigado-title {
        font-size: 2.2rem;
    }
    
    .obrigado-description {
        font-size: 1.1rem;
    }
    
    .obrigado-contact {
        font-size: 1rem;
    }
    
    .obrigado-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-obrigado {
        width: 100%;
        max-width: 280px;
    }
    
    .obrigado-contact-info {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: left;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .obrigado-section::before {
        width: 400px;
        height: 400px;
        right: -30%;
    }
    
    .obrigado-title {
        font-size: 1.8rem;
    }
    
    .obrigado-section {
        padding: 60px 0;
    }
}
