/* ==========================================
   CURSOS CAEL - Estilos da página
   Mantém o tema: preto + manchas (laranja/roxo/amarelo)
   Fontes: Outfit (títulos), Manrope (corpo), Satisfy (frase)
   ========================================== */

.page-cursos {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    line-height: 1.65;
}

/* --------- TOP BAR --------- */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease, background 0.25s ease;
}

.back-home:hover {
    transform: translateX(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.ingressos-inline {
    position: static !important;
}

/* --------- HERO --------- */
.hero-cursos {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(157, 76, 221, 0.12);
    border: 1px solid rgba(157, 76, 221, 0.35);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #e9c5ff;
    margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 10px #FFD700;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-accent {
    background: linear-gradient(135deg, #FFD700 0%, #FF7A00 50%, #FF3D00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.35);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto 2rem;
}

.hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.hero-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.hero-nav a:hover {
    background: rgba(255, 122, 0, 0.18);
    border-color: rgba(255, 122, 0, 0.55);
    color: #FFD700;
    transform: translateY(-2px);
}

/* --------- SECTIONS --------- */
.section {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-alt > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-head {
    text-align: left;
    margin-bottom: 3rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.4);
    color: #FFB800;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 700px;
}

.accent-orange { color: #FF7A00; }
.accent-purple { color: #C28DFC; }
.accent-yellow { color: #FFD700; }

.lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin-bottom: 3rem;
}

/* --------- QUEM SOMOS --------- */
.about-school {
    max-width: 950px;
    margin-bottom: 3.5rem;
}

.about-school p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.3rem;
}

.about-school p.muted {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    border-left: 3px solid #FF7A00;
    padding-left: 1rem;
    margin-top: 2rem;
}

.about-school strong {
    color: #FFD700;
    font-weight: 700;
}

.director-block {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.director-block::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #FF7A00, #C28DFC);
    border-radius: 2px;
}

.director-block .section-head { margin-bottom: 2.5rem; }

/* ============================================
   BOTÃO HERO — "Venha aprender com quem..."
   Design chamativo: gradiente animado + shine + glow pulsante
   ============================================ */
.btn-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 1.15rem 2rem !important;
    font-size: 1rem !important;
    letter-spacing: 0.04em;
    background: linear-gradient(120deg, #FF3D00 0%, #FF7A00 25%, #FFD700 50%, #FF7A00 75%, #FF3D00 100%);
    background-size: 300% 100%;
    animation: heroGradient 5s ease-in-out infinite, heroPulse 2.4s ease-in-out infinite;
    border: 2px solid transparent;
    border-radius: 9999px;
    background-clip: padding-box;
    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.35),
        0 14px 35px -8px rgba(255, 94, 0, 0.7),
        0 0 60px -10px rgba(255, 215, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 2px rgba(120, 30, 0, 0.35);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.btn-hero .btn-glow {
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    background: conic-gradient(from 0deg, #FFD700, #FF7A00, #C28DFC, #FFD700);
    filter: blur(14px);
    opacity: 0.55;
    z-index: -1;
    animation: heroSpin 6s linear infinite;
}

.btn-hero .btn-shine {
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 65%, transparent 100%);
    transform: skewX(-20deg);
    animation: heroShine 3.2s ease-in-out infinite;
    pointer-events: none;
}

.btn-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 0.85rem !important;
    color: #fff !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.btn-hero-text {
    font-weight: 800;
    color: #fff;
}

.btn-hero-arrow {
    font-size: 0.95rem !important;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.6),
        0 22px 45px -10px rgba(255, 94, 0, 0.85),
        0 0 80px -8px rgba(255, 215, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-hero:hover .btn-hero-icon {
    transform: rotate(360deg) scale(1.12);
}

.btn-hero:hover .btn-hero-arrow {
    transform: translateX(6px);
}

.btn-hero:active {
    transform: translateY(-1px) scale(1.01);
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroPulse {
    0%, 100% { box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.35),
        0 14px 35px -8px rgba(255, 94, 0, 0.7),
        0 0 60px -10px rgba(255, 215, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35); }
    50% { box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.55),
        0 18px 40px -8px rgba(255, 94, 0, 0.85),
        0 0 80px -10px rgba(255, 215, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

@keyframes heroSpin {
    to { transform: rotate(360deg); }
}

@keyframes heroShine {
    0% { left: -80%; }
    60%, 100% { left: 120%; }
}

@media (max-width: 640px) {
    .btn-hero { padding: 0.95rem 1.3rem !important; font-size: 0.85rem !important; }
    .btn-hero-icon { width: 26px; height: 26px; font-size: 0.7rem !important; }
}

/* ============================================
   ANIVERSARIANTES DO MÊS — Carrossel
   ============================================ */
.section-birthdays {
    position: relative;
    overflow: hidden;
}

.section-head-center {
    text-align: center;
}

.section-head-center .section-kicker { margin-left: auto; margin-right: auto; }
.section-sub.center { margin: 0 auto; }

.section-kicker-birthday {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 122, 0, 0.18)) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
    color: #FFD700 !important;
}

.birthday-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bday-stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1.15;
    border-radius: 1.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(157, 76, 221, 0.12));
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow:
        0 25px 60px -15px rgba(255, 122, 0, 0.5),
        0 0 80px -20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.bday-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.bday-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.confetti {
    position: absolute;
    color: #FFD700;
    opacity: 0.7;
    animation: confettiFloat 4s ease-in-out infinite;
}

.confetti.c1 { top: 8%; left: 12%; font-size: 0.9rem; color: #FFD700; animation-delay: 0s; }
.confetti.c2 { top: 14%; right: 10%; font-size: 0.85rem; color: #FF7A00; animation-delay: 0.6s; }
.confetti.c3 { bottom: 35%; left: 7%; font-size: 0.95rem; color: #C28DFC; animation-delay: 1.2s; }
.confetti.c4 { top: 50%; right: 8%; font-size: 0.8rem; color: #FFD700; animation-delay: 1.8s; }
.confetti.c5 { bottom: 38%; right: 15%; font-size: 0.85rem; color: #FF3D00; animation-delay: 0.3s; }

@keyframes confettiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
    50% { transform: translateY(-12px) rotate(15deg); opacity: 0.95; }
}

.bday-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.bday-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 3;
}

.bday-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 4;
}

.bday-photo-wrap {
    position: relative;
    width: 70%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background:
        linear-gradient(#0a0a0a, #0a0a0a) padding-box,
        conic-gradient(from 0deg, #FFD700, #FF7A00, #C28DFC, #FFD700) border-box;
    box-shadow: 0 15px 40px -10px rgba(255, 122, 0, 0.6), 0 0 50px -10px rgba(255, 215, 0, 0.5);
    margin-bottom: 1.2rem;
    animation: photoRing 4s linear infinite;
}

@keyframes photoRing {
    to { filter: hue-rotate(360deg); }
}

.bday-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bday-photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #FF7A00, #C28DFC);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bday-cake {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FF7A00);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #fff;
    border: 3px solid #0a0a0a;
    box-shadow: 0 6px 18px rgba(255, 94, 0, 0.6);
    animation: cakeBounce 1.5s ease-in-out infinite;
}

@keyframes cakeBounce {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-6px) rotate(8deg); }
}

.bday-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    margin: 0.4rem 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bday-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 122, 0, 0.18));
    border: 1px solid rgba(255, 215, 0, 0.45);
    color: #FFD700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.bday-date i { color: #FF7A00; }

.bday-role {
    margin-top: 0.6rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* Navegação (setas) */
.bday-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: rgba(0, 0, 0, 0.6);
    color: #FFD700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: grid;
    place-items: center;
    backdrop-filter: blur(10px);
}

.bday-nav:hover {
    background: linear-gradient(135deg, #FF7A00, #FFD700);
    color: #0a0a0a;
    transform: scale(1.1);
    box-shadow: 0 10px 25px -5px rgba(255, 122, 0, 0.6);
    border-color: transparent;
}

/* Dots */
.bday-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bday-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.bday-dot.active {
    width: 28px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #FFD700, #FF7A00);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.bday-dot:hover:not(.active) {
    background: rgba(255, 215, 0, 0.5);
    transform: scale(1.2);
}

@media (max-width: 640px) {
    .bday-stage { max-width: 100%; }
    .bday-nav { width: 40px; height: 40px; font-size: 0.9rem; }
    .bday-name { font-size: 1.2rem; }
    .bday-photo-placeholder { font-size: 3.2rem; }
    .birthday-carousel { gap: 0.5rem; }
}

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .two-col { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.col-text p { margin-bottom: 1.2rem; color: rgba(255,255,255,0.88); font-size: 1.05rem; }
.col-text .muted { color: rgba(255,255,255,0.65); font-style: italic; border-left: 3px solid #FF7A00; padding-left: 1rem; }
.btn-inline { display: inline-flex; margin-top: 1.5rem; }

.col-highlights {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.highlights-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }

.highlights-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hl-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.3), rgba(157, 76, 221, 0.3));
    border: 1px solid rgba(255, 122, 0, 0.4);
    color: #FFD700;
    font-size: 1.1rem;
}

.highlights-list strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1rem; margin-bottom: 0.2rem; }
.highlights-list p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }

/* --------- FEATURE GRID --------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.8rem;
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.4);
    background: rgba(255, 122, 0, 0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.feature-icon-orange { background: linear-gradient(135deg, #FF7A00, #FF3D00); color: #fff; box-shadow: 0 10px 30px -10px rgba(255, 94, 0, 0.6); }
.feature-icon-purple { background: linear-gradient(135deg, #9D4CDD, #6B21A8); color: #fff; box-shadow: 0 10px 30px -10px rgba(157, 76, 221, 0.6); }
.feature-icon-yellow { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; box-shadow: 0 10px 30px -10px rgba(255, 215, 0, 0.5); }

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* --------- ESSENCE --------- */
.essence, .pillars { margin-top: 3rem; }

.essence-title, .pillars-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.essence-item {
    padding: 1.3rem 1.3rem 1.3rem 1.3rem;
    border-radius: 1rem;
    background: rgba(157, 76, 221, 0.08);
    border-left: 4px solid #9D4CDD;
}

.essence-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C28DFC;
    margin-bottom: 0.5rem;
}

.essence-item p { color: rgba(255,255,255,0.88); font-size: 0.95rem; margin: 0; }

/* --------- PILLARS --------- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pillar {
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
}

.pillar-num {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #FFD700, #FF7A00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pillar h4 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; margin: 0.5rem 0 0.6rem; }
.pillar p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }

/* --------- GRADES (CURSOS) --------- */
.grade-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.grade-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.grade-teatral { background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(157, 76, 221, 0.12)); }
.grade-teatral::before { background: radial-gradient(circle at 90% 10%, #FF7A00 0%, transparent 50%); }

.grade-circo { background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 94, 0, 0.1)); }
.grade-circo::before { background: radial-gradient(circle at 10% 90%, #FFD700 0%, transparent 55%); }

.grade-dublagem { background: linear-gradient(135deg, rgba(157, 76, 221, 0.12), rgba(67, 31, 128, 0.15)); }
.grade-dublagem::before { background: radial-gradient(circle at 80% 80%, #9D4CDD 0%, transparent 55%); }

.grade-card > * { position: relative; z-index: 1; }

.grade-head {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.grade-emoji {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.8rem;
}

.grade-teatral .grade-emoji { color: #FF7A00; }
.grade-circo .grade-emoji { color: #FFD700; }
.grade-dublagem .grade-emoji { color: #C28DFC; }

.grade-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.3rem;
}

.grade-head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1.15;
}

.grade-card > p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 1.5rem; }

.grade-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.module {
    padding: 1.3rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.module h4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.6rem;
}

.module p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin: 0; }

.benefits {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(0,0,0,0.25);
    border-radius: 1rem;
    border-left: 3px solid #FF7A00;
}

.benefits h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFB800;
    margin-bottom: 0.8rem;
}

.benefits ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.benefits li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.93rem; color: rgba(255,255,255,0.85); }
.benefits li i { color: #4ADE80; flex-shrink: 0; margin-top: 4px; }

/* --------- CALENDAR --------- */
.calendar-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 215, 0, 0.04);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 1.5rem;
}

.calendar-icon { font-size: 3rem; color: #FFD700; margin-bottom: 1rem; }

.calendar-placeholder h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.calendar-placeholder > p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.calendar-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.cal-item {
    padding: 1.2rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 1rem;
    text-align: center;
}

.cal-month {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF7A00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
}

.cal-event {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* --------- CONTACT FORM --------- */
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.75rem;
    padding: 2.5rem;
    backdrop-filter: blur(24px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; margin-bottom: 1.2rem; }

.form-field label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

.form-field label span { color: #FF7A00; }

.form-field input,
.form-field textarea {
    padding: 0.85rem 1rem;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0.75rem;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.25s, background 0.25s;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #FF7A00;
    background: rgba(0,0,0,0.55);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.form-field textarea { resize: vertical; font-family: 'Manrope', sans-serif; }

.phone-row { display: grid; grid-template-columns: 90px 1fr; gap: 0.6rem; }

/* Modality cards */
.modality-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.modality { cursor: pointer; }
.modality input { position: absolute; opacity: 0; pointer-events: none; }

.modality-card {
    padding: 1.2rem;
    background: rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    transition: all 0.25s ease;
    text-align: center;
    height: 100%;
}

.modality-card i { font-size: 1.6rem; color: #FF7A00; margin-bottom: 0.5rem; display: block; }
.modality-card strong { display: block; font-family: 'Outfit', sans-serif; font-size: 0.95rem; margin-bottom: 0.2rem; }
.modality-card span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

.modality input:checked + .modality-card {
    border-color: #FF7A00;
    background: rgba(255, 122, 0, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
    transform: translateY(-2px);
}

.modality:hover .modality-card { border-color: rgba(255, 122, 0, 0.5); }

/* Objective pills */
.objective-row { display: flex; gap: 0.75rem; margin: 0.6rem 0 1rem; flex-wrap: wrap; }
.pill-radio { cursor: pointer; }
.pill-radio input { position: absolute; opacity: 0; pointer-events: none; }

.pill-radio span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.3rem;
    border-radius: 9999px;
    background: rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.15);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.25s;
}

.pill-radio input:checked + span {
    background: linear-gradient(135deg, #FF7A00, #FF3D00);
    border-color: #FF7A00;
    color: #fff;
    box-shadow: 0 8px 20px -5px rgba(255, 94, 0, 0.5);
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    font-size: 1rem !important;
    padding: 1.1rem 1.6rem !important;
}

.thanks-message {
    margin-top: 2rem;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 1.5rem;
}

.thanks-message i { font-size: 2.5rem; color: #FF3D00; margin-bottom: 1rem; animation: pulse 1.5s ease-in-out infinite; }
.thanks-message p { color: rgba(255,255,255,0.92); font-size: 1.02rem; max-width: 700px; margin: 0 auto 1rem; }
.thanks-message .quote { font-family: 'Satisfy', cursive; font-size: 1.8rem; color: #FFD700; margin-top: 1.2rem; }

/* --------- FOOTER --------- */
.footer-phrase {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem;
}

.footer-phrase h2 {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.25s;
}

.footer-links a:hover { background: rgba(255, 122, 0, 0.18); color: #FFD700; border-color: rgba(255,122,0,0.5); }

/* ============================================
   NOVOS BLOCOS: subsections, docentes, timeline calendário, info-card
   ============================================ */

/* --- Subseção dentro da Escola --- */
.subsection-title-wrap {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.8rem;
    border-left: 4px solid #FFD700;
    background: rgba(255, 215, 0, 0.04);
    border-radius: 0 1rem 1rem 0;
}

.subsection-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.subsection-lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* --- Corpo Docente --- */
.docentes-block {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(157, 76, 221, 0.1), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(157, 76, 221, 0.3);
}

.docentes-head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.3rem;
}

.docentes-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #9D4CDD, #6B21A8);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px -10px rgba(157, 76, 221, 0.6);
}

.docentes-head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #fff;
}

.docentes-block p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.muted-quote {
    color: rgba(255, 255, 255, 0.75) !important;
    font-style: italic;
    padding-left: 1.2rem;
    border-left: 3px solid #C28DFC;
}

.pillars-lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* --- Timeline do Calendário Cultural --- */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FFD700, #FF7A00, #C28DFC, #FFD700);
    border-radius: 9999px;
    opacity: 0.5;
}

.timeline-card {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(4px);
    border-color: rgba(255, 215, 0, 0.4);
}

.timeline-highlight {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 215, 0, 0.05));
    border-color: rgba(255, 122, 0, 0.4);
    box-shadow: 0 15px 40px -15px rgba(255, 122, 0, 0.4);
}

.timeline-month {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 122, 0, 0.18));
    border: 2px solid rgba(255, 215, 0, 0.45);
    border-radius: 1rem;
    position: relative;
    z-index: 2;
}

.tm-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #FFD700, #FF7A00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tm-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFD700;
    margin-top: 0.3rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: rgba(255, 122, 0, 0.18);
    border: 1px solid rgba(255, 122, 0, 0.5);
    color: #FFB800;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}

.timeline-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.7rem;
}

.timeline-content > p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.event-list {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 0.8rem;
    flex-wrap: wrap;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #FFD700;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.event-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.workshops-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0 0.8rem;
}

.ws-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    border-radius: 9999px;
    background: rgba(157, 76, 221, 0.15);
    border: 1px solid rgba(157, 76, 221, 0.4);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
}

.ws-pill i { color: #C28DFC; }

.ws-details {
    margin-top: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.8rem;
    cursor: pointer;
}

.ws-details summary {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFD700;
    list-style: none;
    cursor: pointer;
}

.ws-details summary::before {
    content: "▸ ";
    transition: transform 0.2s;
    display: inline-block;
}

.ws-details[open] summary::before { content: "▾ "; }

.ws-list {
    list-style: none;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ws-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 215, 0, 0.4);
    line-height: 1.55;
}

.event-sub {
    margin-top: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.35);
    border-left: 3px solid #FFD700;
    border-radius: 0.6rem;
}

.event-sub h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.event-sub p { color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; margin: 0; }

/* --- INFO CARD (Contato Equipe CAEL) --- */
.info-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(157, 76, 221, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
}

.info-card-head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.info-card-icon {
    font-size: 2rem;
    color: #FFD700;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

.info-card-head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.info-cnpj {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
}

.info-ic {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #FF7A00, #FF3D00);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px -8px rgba(255, 122, 0, 0.6);
}

.info-ic-green { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.6); }
.info-ic-orange { background: linear-gradient(135deg, #FFD700, #FF7A00); box-shadow: 0 8px 20px -8px rgba(255, 215, 0, 0.6); }

.info-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFD700;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
    word-break: break-all;     /* quebra emails/URLs longos para caberem no card */
    overflow-wrap: anywhere;
}

.info-item > div {
    flex: 1;
    min-width: 0;              /* permite que o conteúdo dentro do flex encolha */
}

/* E-mail um pouco menor para caber sem quebrar feio em telas pequenas */
[data-testid="info-email"] p {
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Versículo */
.verse-block {
    position: relative;
    padding: 1.8rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(157, 76, 221, 0.1), rgba(255, 215, 0, 0.08));
    border-radius: 1.2rem;
    text-align: center;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.verse-quote {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFD700;
    font-size: 1.4rem;
    background: #0a0a0a;
    padding: 0 0.8rem;
}

.verse-text {
    font-family: 'Satisfy', cursive;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #FFD700;
    margin: 0 0 0.7rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.verse-ref {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== Responsivo dos novos blocos ===== */
@media (max-width: 767px) {
    .timeline::before { left: 32px; }
    .timeline-card { grid-template-columns: 70px 1fr; gap: 0.9rem; padding: 1.3rem; }
    .tm-num { font-size: 1.8rem; }
    .tm-name { font-size: 0.62rem; }
    .timeline-month { padding: 0.7rem 0.3rem; }
    .timeline-content h3 { font-size: 1.05rem; }
    .timeline-content > p { font-size: 0.88rem; }
    .event-item { gap: 0.5rem; padding: 0.7rem 0.85rem; }
    .event-date, .event-name { font-size: 0.85rem; }
    .ws-pill { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
    .info-card { padding: 1.5rem; }
    .info-card-head { gap: 0.8rem; }
    .info-card-icon { font-size: 1.5rem; }
    .info-ic { width: 38px; height: 38px; font-size: 0.95rem; }
    .docentes-block { padding: 1.5rem; }
    .docentes-head { gap: 0.8rem; }
    .docentes-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .subsection-title-wrap { padding: 1.2rem 1.3rem; }
}

@media (max-width: 480px) {
    .timeline::before { left: 26px; }
    .timeline-card { grid-template-columns: 56px 1fr; gap: 0.7rem; padding: 1.1rem; }
    .tm-num { font-size: 1.5rem; }
    .tm-name { font-size: 0.55rem; letter-spacing: 0.1em; }
}

/* ============================================
   📱 RESPONSIVIDADE COMPLETA — cursos.html
   Adequado para: desktop, tablet, mobile, mobile small
   ============================================ */

/* ============== TABLET (768px - 1023px) ============== */
@media (max-width: 1023px) {
    .section { padding: 4rem 1.5rem; }
    .section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); }
    .hero-cursos { padding: 3rem 1.5rem 1.5rem; }
    .hero-title { font-size: clamp(2rem, 6vw, 4rem); }

    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .col-highlights { padding: 1.8rem; }
}

/* ============== MOBILE (até 767px) ============== */
@media (max-width: 767px) {
    /* Top bar com botão Voltar + Ingressos */
    .top-bar { padding: 0.75rem 0.8rem; flex-wrap: wrap; gap: 0.5rem; }
    .back-home {
        padding: 0.45rem 0.85rem;
        font-size: 0.72rem;
    }
    .top-bar .ingressos-button {
        padding: 0.5rem 0.85rem;
        font-size: 0.72rem;
        gap: 0.35rem;
    }
    .top-bar .ingressos-button i { font-size: 0.85rem; }

    /* Hero */
    .hero-cursos { padding: 2rem 1rem 1rem; }
    .hero-eyebrow { font-size: 0.7rem; padding: 0.4rem 0.85rem; letter-spacing: 0.15em; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-nav { gap: 0.4rem; }
    .hero-nav a {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    /* Sections */
    .section { padding: 3rem 1rem; }
    .section-head { margin-bottom: 2rem; }
    .section-kicker { font-size: 0.68rem; letter-spacing: 0.15em; }
    .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .section-sub, .lead { font-size: 0.95rem; }

    /* Quem Somos */
    .about-school p { font-size: 0.95rem; line-height: 1.65; }
    .col-text p { font-size: 0.95rem; }
    .col-highlights { padding: 1.5rem; }
    .highlights-list strong { font-size: 0.92rem; }
    .highlights-list p { font-size: 0.85rem; }
    .hl-icon { width: 36px; height: 36px; font-size: 1rem; }

    /* Botão hero */
    .btn-hero { padding: 0.85rem 1.2rem !important; font-size: 0.8rem !important; gap: 0.5rem; }
    .btn-hero-icon { width: 24px; height: 24px; font-size: 0.65rem !important; }
    .btn-hero-arrow { font-size: 0.85rem !important; }

    /* Carrossel aniversariantes */
    .birthday-carousel { gap: 0.5rem; }
    .bday-stage { aspect-ratio: 1 / 1.25; }
    .bday-photo-wrap { width: 65%; }
    .bday-name { font-size: 1.1rem; }
    .bday-date { font-size: 0.82rem; padding: 0.4rem 0.85rem; }
    .bday-role { font-size: 0.7rem; letter-spacing: 0.15em; }
    .bday-nav { width: 36px; height: 36px; font-size: 0.8rem; }
    .bday-photo-placeholder { font-size: 2.6rem; }
    .bday-cake { width: 40px; height: 40px; font-size: 1.05rem; }

    /* Features grid */
    .feature-grid { gap: 1rem; }
    .feature-card { padding: 1.4rem; }
    .feature-card h3 { font-size: 1.05rem; }
    .feature-card p { font-size: 0.88rem; }
    .feature-icon { width: 46px; height: 46px; font-size: 1.15rem; }

    /* Essence + Pillars */
    .essence-title, .pillars-title { font-size: 1.2rem; }
    .essence-grid { gap: 0.8rem; }
    .essence-item { padding: 1rem; }
    .essence-item p { font-size: 0.88rem; }
    .pillars-grid { gap: 1.2rem; }
    .pillar { padding: 1.6rem 1.2rem 1.2rem; }
    .pillar-num { font-size: 2rem; }
    .pillar h4 { font-size: 1rem; }
    .pillar p { font-size: 0.85rem; }

    /* Cursos (Grades) */
    .grade-card { padding: 1.5rem; margin-bottom: 1.5rem; border-radius: 1.25rem; }
    .grade-head { gap: 0.8rem; }
    .grade-emoji { width: 52px; height: 52px; font-size: 1.4rem; }
    .grade-head h3 { font-size: 1.15rem; }
    .grade-card > p { font-size: 0.92rem; }
    .grade-modules { gap: 0.8rem; }
    .module { padding: 1rem; }
    .module h4 { font-size: 0.95rem; }
    .module p { font-size: 0.85rem; }
    .benefits { padding: 1rem 1.2rem; }
    .benefits li { font-size: 0.85rem; }

    /* Calendar */
    .calendar-placeholder { padding: 2rem 1.2rem; }
    .calendar-placeholder h3 { font-size: 1.2rem; }
    .calendar-placeholder > p { font-size: 0.9rem; }
    .cal-month { font-size: 1.3rem; }
    .cal-event { font-size: 0.75rem; }

    /* Contact Form */
    .contact-form { padding: 1.5rem; border-radius: 1.25rem; }
    .form-grid { gap: 0.9rem; }
    .form-field label { font-size: 0.75rem; }
    .form-field input,
    .form-field textarea {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }
    .modality-options { grid-template-columns: 1fr; gap: 0.7rem; }
    .modality-card { padding: 1rem; }
    .modality-card i { font-size: 1.3rem; }
    .pill-radio span { padding: 0.55rem 1rem; font-size: 0.82rem; }
    .submit-btn { padding: 1rem 1.3rem !important; font-size: 0.9rem !important; }
    .thanks-message { padding: 1.5rem; }
    .thanks-message p { font-size: 0.92rem; }
    .thanks-message .quote { font-size: 1.4rem; }

    /* Footer */
    .footer-phrase { padding: 3rem 1rem 2rem; }
    .footer-phrase h2 { font-size: 1.8rem; }

    /* Reduz ícones decorativos no mobile */
    .icon-deco { font-size: 32px !important; opacity: 0.08 !important; }
    .icon-1, .icon-9, .icon-10 { display: none; }
}

/* ============== MOBILE PEQUENO (até 480px) ============== */
@media (max-width: 480px) {
    .top-bar { padding: 0.6rem 0.6rem; }
    .back-home { padding: 0.4rem 0.7rem; font-size: 0.65rem; gap: 0.3rem; }
    .top-bar .ingressos-button { padding: 0.45rem 0.7rem; font-size: 0.65rem; }

    .hero-title { font-size: clamp(1.6rem, 9vw, 2.6rem); }
    .hero-sub { font-size: 0.88rem; }
    .hero-nav a span { display: inline; }   /* mantém texto */

    .section { padding: 2.5rem 0.85rem; }
    .section-title { font-size: clamp(1.35rem, 7vw, 2rem); }

    .btn-hero {
        padding: 0.75rem 1rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.02em;
        flex-wrap: nowrap;
    }
    .btn-hero-icon { width: 22px; height: 22px; font-size: 0.6rem !important; }
    .btn-hero-arrow { font-size: 0.75rem !important; }

    /* Carrossel - botões navegação ainda menores */
    .bday-nav { width: 32px; height: 32px; font-size: 0.7rem; }
    .bday-photo-wrap { width: 70%; }

    /* Grade modules stack */
    .grade-modules { grid-template-columns: 1fr; }
    .modules-grid { grid-template-columns: 1fr; }

    /* Reduz ainda mais ícones decorativos */
    .icon-deco { font-size: 24px !important; }
    .icon-4, .icon-5, .icon-6, .icon-7, .icon-8 { display: none; }

    /* Manchas reduzidas */
    .splash-4, .splash-5, .splash-6, .splash-7 { display: none; }

    .footer-phrase h2 { font-size: 1.5rem; }
}

/* ============== MOBILE EXTRA-PEQUENO (até 360px) ============== */
@media (max-width: 360px) {
    .back-home span { display: none; }    /* mantém só a seta */
    .top-bar .ingressos-button span { display: none; }   /* só o ícone do ingresso */
    .top-bar .ingressos-button { padding: 0.5rem 0.75rem; }

    .btn-hero { padding: 0.7rem 0.85rem !important; font-size: 0.68rem !important; }

    .modality-card strong { font-size: 0.85rem; }
    .modality-card span { font-size: 0.72rem; }
}
