/* ===== Reset e Variáveis ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #7B2CBF;
    --purple-dark: #5a1f8f;
    --pink: #E91E63;
    --pink-light: #f48fb1;
    --orange: #FF6F00;
    --blue: #1E88E5;
    --blue-dark: #1565C0;
    --teal: #00897B;
    --teal-light: #4db8a8;
    --green: #4CAF50;
    --gray-light: #F5F5F5;
    --gray-medium: #999;
    --gray-dark: #333;
    --white: #FFFFFF;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ============= HEADER ESCOLA PARTICULAR ============= */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  }
  
  /* conteúdo interno */
  .header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 2rem;
    font-family: "Poppins", system-ui, -apple-system, sans-serif;
  }
  
  /* LOGO */
  .header .logo img {
    display: block;
  }
  
  /* ================= MENU DESKTOP ================= */
  
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  
  /* link padrão */
  .nav-desktop .nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: #222b5a;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease-out, transform 0.2s ease-out;
  }
  
  /* underline animado */
  .nav-desktop .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb200, #ff5b7a);
    transition: width 0.25s ease-out;
  }
  
  .nav-desktop .nav-link:hover,
  .nav-desktop .nav-link:focus {
    color: #0e6ffb;
    transform: translateY(-1px);
  }
  
  .nav-desktop .nav-link:hover::after,
  .nav-desktop .nav-link:focus::after {
    width: 100%;
  }
  
  /* ícone home */
  .nav-desktop .home-icon {
    margin-right: 0.75rem;
  }
  
  .nav-desktop .home-icon img {
    height: 28px;
    width: 28px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(255, 0, 180, 0.4));
  }
  
  /* destaque Revisa ENEM */
  .nav-desktop .revisa-enem {
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9e00, #ff4b8b);
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(255, 75, 139, 0.25);
  }
  
  .nav-desktop .revisa-enem::after {
    display: none;
  }
  
  .nav-desktop .revisa-enem:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.05);
  }
  
  /* ================= MENU MOBILE ================= */
  
  .mobile-menu-btn {
    display: none;
    width: 36px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #5f2ded;
    transition: all 0.3s ease;
  }
  
  /* menu mobile container */
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 0 1.25rem;
  }
  
  /* links mobile */
  .nav-mobile .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #222b5a;
    text-decoration: none;
  }
  
  /* botões mobile */
  .nav-mobile .btn-full {
    width: 100%;
    margin-top: 0.4rem;
  }
  
  /* ========== RESPONSIVO ========== */
  
  @media (max-width: 991.98px) {
    .nav-desktop {
      display: none;
    }
  
    .mobile-menu-btn {
      display: flex;
    }
  
    .nav-mobile {
      display: flex; /* se você controla pelo JS, pode começar como none e trocar para .nav-mobile.is-open */
    }
  }


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
    color: var(--gray-dark);
}


.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--purple);
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-dark);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
}

.nav-mobile.active {
    display: flex;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--teal-light);
}

.btn-outline {
    border: 2px solid var(--purple);
    color: var(--purple);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(123, 44, 191, 0.05);
}

.btn-full {
    width: 100%;
}

.btn-submit {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(to bottom, var(--gray-light), var(--white));
    padding: 60px 0;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--gray-dark);
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.hero-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* ===== Soluções Section ===== */
.solucoes {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-dark);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 16px;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solucoes-grid-reverse {
    grid-template-columns: 1fr 1fr;
}

.solucoes-grid-reverse .solucao-image {
    order: -1;
}

.solucao-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solucao-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-dark);
    line-height: 1.4;
}

.solucao-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solucao-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.check {
    color: var(--green);
    font-weight: bold;
    flex-shrink: 0;
}

.solucao-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder-gestora {
    width: 100%;
    height: 342px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background-image: url(../img/professora-sorridente-na-sala-de-aula.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.image-placeholder-professora {
    width: 100%;
    height: 342px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background-image: url(../img/Formacao-dos-professores.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.image-placeholder-estudante {
    width: 100%;
    height: 342px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background-image: url(../img/aluna-escola.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.image-placeholder-mack-1 {
    width: 100%;
    height: 342px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background-image: url(../img/mack-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.image-placeholder-mack-2 {
    width: 100%;
    height: 342px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background-image: url(../img/mack-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

a.home-icon {
    width: 29px;
    background-image: url(../img/home.png);
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #20c25d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* ===== Desenvolvimento Section ===== */
.desenvolvimento {
    background: linear-gradient(to bottom, rgba(123, 44, 191, 0.05), var(--white));
    padding: 80px 0;
}

.ciclo-container {
    background: linear-gradient(135deg, rgba(244, 143, 177, 0.2) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ciclo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ciclo-numero {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    font-weight: bold;
}

.ciclo-1 {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6F00 100%);
}

.ciclo-2 {
    background: linear-gradient(135deg, #EC407A 0%, #E91E63 100%);
}

.ciclo-3 {
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
}

.ciclo-4 {
    background: linear-gradient(135deg, #26C6DA 0%, #00897B 100%);
}

.ciclo-label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    max-width: 100px;
    color: var(--gray-dark);
}

.ciclo-seta {
    font-size: 24px;
    color: #999;
    display: none;
}

/* ===== Explore Section ===== */
.explore {
    padding: 80px 0;
    background-color: var(--white);
}

.explore-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.explore-images .image-placeholder {
    height: 250px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-purple {
    background: linear-gradient(135deg, #7B2CBF 0%, #5a1f8f 100%);
    color: var(--white);
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===== Rede de Apoio Section ===== */
.rede-apoio {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.apoio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.apoio-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.apoio-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--gray-dark);
}

.apoio-card>p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.apoio-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apoio-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Formulário Section ===== */
.formulario {
    padding: 80px 0;
    background-color: var(--white);
}

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

.formulario-texto h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--gray-dark);
    line-height: 1.3;
}

.formulario-texto p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.formulario-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-dark);
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--purple);
}

.form-group:nth-child(1) input {
    border-color: #ffcdd2;
}

.form-group:nth-child(2) input {
    border-color: #fff9c4;
}

.form-group:nth-child(3) input {
    border-color: #bbdefb;
}

.form-group:nth-child(4) input {
    border-color: #f8bbd0;
}

.form-group:nth-child(5) input {
    border-color: #ffe0b2;
}

/* =========================
   FOOTER – ESCOLA PARTICULAR
   ========================= */

.footer {
    background: linear-gradient(135deg, #4b0fb8, #8a1c7c);
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: inherit;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: flex-start;
}

/* LOGO */
.footer .logo-footer {
    margin-bottom: 20px;
}

.footer .logo-footer img {
    max-width: 160px;
    height: auto;
}

/* TEXTO */
.footer-address {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* TÍTULOS */
.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* REDES SOCIAIS */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.social-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* DIVISÃO INFERIOR */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom a {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.85;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}


/* ===== Cores Auxiliares ===== */
.text-purple {
    color: var(--purple);
}

.text-pink {
    color: var(--pink);
}

.text-orange {
    color: var(--orange);
}

.text-blue {
    color: var(--blue);
}

.text-teal {
    color: var(--teal);
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 0;
    }

    .logo-text {
        display: none;
    }

    .nav-desktop {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-video {
        max-width: 424px;
        margin-top: 21px;
        margin-left: -32px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 83%;
    }

    .hero-evoluir {
        min-height: 49vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .video-placeholder {
        height: 250px;
    }

    .video-placeholder {
        width: 89%;
        height: 300px;
        background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: 600;
        text-align: center;
        padding: 2px;
    }

    .solucoes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .solucoes-grid-reverse .solucao-image {
        order: 0;
    }

    .section-title {
        font-size: 28px;
    }

    .ciclo-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .ciclo-seta {
        display: block;
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .explore-images {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .apoio-grid {
        grid-template-columns: 1fr;
    }

    .formulario-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .formulario-texto h2 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nav-mobile.active .nav-link {
        padding: 12px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .solucao-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .solucao-title {
        font-size: 18px;
    }

    .solucao-list li {
        font-size: 14px;
    }

    .card h3 {
        font-size: 16px;
    }

    .card p {
        font-size: 13px;
    }

    .formulario-texto h2 {
        font-size: 20px;
    }

    .formulario-texto p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .ciclo-numero {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .ciclo-label {
        font-size: 12px;
    }
}

/*Modificação JOn*/

/* ==================================================
   HERO BANNER (igual ao print)
================================================== */
.hero-banner {
    width: 100%;
    min-height: 520px;
    padding: 0;
    margin: 0;
    background: linear-gradient(90deg, #3b00c9 0%, #cc2b6d 100%);
    overflow: hidden;
}

.hero-banner__wrap {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 60px;
    gap: 40px;
}

/* TEXTO */
.hero-banner__text {
    flex: 0 0 55%;
    text-align: center;
    color: #fff;
}

.hero-banner__text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 26px;
}

.hero-banner__text p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 34px;
    opacity: 0.95;
}

/* BOTÃO */
.hero-banner__btn {
    display: inline-block;
    background: #fff;
    color: #ff4d6d;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 14px 44px;
    border-radius: 999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    color: #ff4d6d;
}

/* IMAGEM */
.hero-banner__media {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-banner__media img {
    max-height: 480px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transform: translateY(6px);
}

/* RESPONSIVO */
@media (max-width: 991.98px) {
    .hero-banner__wrap {
        flex-direction: column;
        padding: 50px 22px;
        min-height: auto;
    }

    .hero-banner__text {
        flex: 1 1 auto;
    }

    .hero-banner__text h1 {
        font-size: 44px;
    }

    .hero-banner__text p {
        font-size: 18px;
    }

    .hero-banner__media {
        flex: 1 1 auto;
        justify-content: center;
    }

    .hero-banner__media img {
        max-height: 380px;
    }
}


/* RESPONSIVO */
@media (max-width: 991.98px) {

    .banner-section,
    .banner-imagem {
        min-height: auto;
    }

    .banner-texto {
        padding: 48px 24px;
        text-align: center;
    }

    .banner-texto-inner {
        margin: 0 auto;
    }

    .banner-imagem {
        height: 360px;
        background-position: center;
    }
}


.sec-livros {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sec-livros-inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* imagem dos livros */
.img-livros {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* “chão” rosa */
.bg-chao-rosa {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 950px;
    z-index: 1;
}


/* Seção principal com o chão rosa no fundo */
.hero-evoluir {
    position: relative;
    width: 100%;
    min-height: 90vh;

    /* Chão rosa como background */
    background-image: url("chao.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;

    overflow: hidden;
}

/* Imagem principal em primeiro plano */
.main-image {
    position: relative;
    z-index: 2;
    max-width: 90%;
    height: auto;
    margin-bottom: -20px;
    /* faz a imagem "encostar" no chão */
}

a.escola {
    color: #fff !important;
}

a.escola:hover {
    color: #454545 !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-evoluir {
        min-height: 70vh;
        background-size: contain;
    }

    .main-image {
        max-width: 100%;
        margin-bottom: -10px;
    }
}

/* Área geral da seção */
.hero-evoluir {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    /* centraliza HORIZONTAL */
    align-items: center;
    /* centraliza VERTICAL */

}

/* Wrapper das imagens */
.hero-art {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: contents;
    /* ajusta conforme seu layout */
}

/* Imagem principal (sistema + livros) como background */
.hero-main {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url(../img/sistema-particular.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto;
}

.container-livros {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Chão rosa atrás da imagem principal */
.hero-floor {
    position: absolute;
    left: 48%;
    transform: translate(-50%, -159%);
    bottom: 0;
    width: 100%;
    height: 21%;
    background: url(chao.png) no-repeat center bottom / cover;
    background-image: url(../img/contents_ground.ClbQmHLy.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-art {
        max-width: 100%;
    }

    .hero-evoluir {
        min-height: 49vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-floor {
        width: 100%;
        height: 40%;
        top: 108%;
    }

    .hero-main {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 52vh;
        aspect-ratio: 16 / 9;
        background-image: url(../img/sistema-particular.png);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: auto;
    }
}

/* MOBILE: esconder o fundo rosa */


@media (max-width: 768px) {
    .banner-section {
        flex-direction: column;
    }

    .banner-imagem {
        height: 50vh;
    }

    .bg-chao-rosa {
        display: none;
    }

    .sec-livros {
        padding: 20px 0 0;
    }

    .img-livros {
        max-width: 100%;
    }
}

/*Banner pricipal*/