:root {
    --as-primary: #f25454;
    --as-primary-soft: #ffe0df;
    --as-cream: #fff7ea;
    --as-bg: #fffaf2;
    --as-text: #341818;
    --as-muted: #7a6662;
    --as-border: rgba(52, 24, 24, .12);
    --as-sky: #d8f1f7;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--as-bg);
    color: var(--as-text);
    font-family: "Nunito", Arial, sans-serif;
}

h1, h2, h3, h4 {
    font-family: Georgia, "Times New Roman", serif;
}

/* HEADER */
.as-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 242, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--as-border);
}

.as-nav-wrap {
    max-width: 1240px;
    min-height: 74px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.as-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--as-text);
    text-decoration: none;
}

.as-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.as-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

    .as-brand-text strong {
        font-size: 22px;
        font-weight: 800;
    }

    .as-brand-text small {
        margin-top: 4px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.8px;
        color: var(--as-primary);
    }

.as-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .as-nav a {
        padding: 10px 16px;
        border-radius: 999px;
        color: rgba(52, 24, 24, .72);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

        .as-nav a:hover,
        .as-nav a.active {
            background: var(--as-primary-soft);
            color: var(--as-primary);
        }

.as-enroll-btn,
.as-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--as-primary);
    color: white !important;
    font-weight: 800;
    text-decoration: none;
}
.as-primary-btn {
    padding: 16px 30px;
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(242, 84, 84, .25);
}

    .as-primary-btn:hover {
        transform: translateY(-2px);
    }
.as-enroll-btn {
    padding: 13px 26px;
    font-size: 14px;
}

.as-menu-btn {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 999px;
    background: var(--as-primary-soft);
    color: var(--as-text);
    width: 44px;
    height: 44px;
}

/* HERO */
.as-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 74px);
    padding: 72px max(24px, calc((100vw - 1240px) / 2));
    background: radial-gradient(circle at 80% 80%, rgba(255, 170, 150, 0.35), transparent 30%), radial-gradient(circle at 70% 90%, rgba(255, 210, 120, 0.4), transparent 35%), radial-gradient(circle at 10% 10%, rgba(200, 240, 255, 0.6), transparent 40%), linear-gradient(115deg, #fffaf2 0%, #fff3df 60%, #ffe6d8 100%);
}

.as-badge {
    background: #ffd9d6;
    color: #f44f4b;
    padding: 10px 18px;
    font-weight: 800;
    letter-spacing: .14em;
}
.as-hero h1 {
    font-size: clamp(56px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

    .as-hero h1 span {
        color: var(--as-primary);
    }

.as-hero p {
    max-width: 620px;
    color: var(--as-muted);
    font-size: 18px;
    line-height: 1.8;
}

.as-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.as-primary-btn,
.as-outline-btn {
    padding: 16px 28px;
    font-size: 14px;
}

.as-outline-btn {
    border: 2px solid rgba(242, 84, 84, .25);
    border-radius: 999px;
    color: var(--as-text);
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, .4);
}

.as-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 30px;
    border-top: 1px solid var(--as-border);
    max-width: 620px;
}

    .as-stats strong {
        display: block;
        font-size: 30px;
        color: var(--as-primary);
    }

    .as-stats span {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--as-muted);
    }

.as-hero-image {
    position: relative;
}

    .as-hero-image img {
        border-radius: 0 0 36px 36px; /* 👈 key */
        border: 8px solid rgba(255,255,255,0.95);
        box-shadow: 0 30px 70px rgba(90, 40, 20, 0.18), 0 0 0 1px rgba(255,255,255,0.6);
    }

.as-floating-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 250, 243, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 14px 20px;
    border: 1px solid rgba(240, 215, 207, 0.9);
    box-shadow: 0 18px 45px rgba(80, 40, 20, 0.15);
}

    .as-floating-card strong {
        color: var(--as-text);
        font-size: 18px;
    }

.as-card-top {
    top: -24px;
    right: -10px;
}

.as-card-bottom {
    bottom: -28px;
    left: -20px;
}

/* WHATSAPP */
.as-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #25D366;
    color: white !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .35);
}

    .as-whatsapp-float i {
        font-size: 22px;
    }

/* MOBILE */
@media (max-width: 991px) {
    .as-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .as-nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        margin: 0;
        padding: 16px 24px;
        background: #fffaf2;
        border-bottom: 1px solid var(--as-border);
        flex-direction: column;
        align-items: stretch;
    }

        .as-nav.show {
            display: flex;
        }

        .as-nav a {
            padding: 14px 16px;
        }

    .as-enroll-btn {
        display: none;
    }

    .as-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 48px;
    }

    .as-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .as-nav-wrap {
        padding: 0 16px;
    }

    .as-brand-text strong {
        font-size: 18px;
    }

    .as-brand-text small {
        font-size: 9px;
    }

    .as-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

        .as-hero h1 {
            font-size: clamp(42px, 13vw, 60px);
        }

    .as-hero-actions {
        flex-direction: column;
    }

    .as-floating-card {
        display: none;
    }

    .as-whatsapp-float {
        bottom: 80px;
        right: 16px;
        padding: 13px 16px;
    }

        .as-whatsapp-float span {
            display: none;
        }
}
.as-footer {
    margin-top: 40px;
    background: var(--as-cream);
    border-top: 1px solid var(--as-border);
}

.as-footer-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.as-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .as-footer-brand strong {
        display: block;
        font-size: 18px;
    }

    .as-footer-brand small {
        font-size: 10px;
        color: var(--as-primary);
        text-transform: uppercase;
        font-weight: 800;
    }

.as-footer-text {
    margin-top: 12px;
    font-size: 14px;
    color: var(--as-muted);
}

.as-socials {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

    .as-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--as-primary);
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

.as-footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--as-primary);
    margin-bottom: 14px;
}

.as-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-footer-col li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--as-muted);
}

    .as-footer-col li.bold {
        font-weight: 700;
        color: var(--as-text);
    }

.as-footer-col a {
    text-decoration: none;
    color: inherit;
}

    .as-footer-col a:hover {
        color: var(--as-primary);
    }

.as-footer-bottom {
    border-top: 1px solid var(--as-border);
    margin-top: 30px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--as-muted);
}

/* MOBILE */
@media (max-width: 991px) {
    .as-footer-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .as-footer-wrap {
        grid-template-columns: 1fr;
    }

    .as-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
.step-card {
    position: relative;
    padding: 25px;
    border-radius: 20px;
    background: white;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .step-card:hover {
        transform: translateY(-5px);
    }

.step-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #0d6efd;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto;
    background: rgba(0, 123, 255, 0.1);
}

.blob-bg {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0,123,255,0.25), transparent);
    filter: blur(40px);
    z-index: 0;
}
.as-section {
    padding: 60px 20px;
}

.as-container {
    max-width: 1200px;
    margin: auto;
}

.as-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.as-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.as-contact-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--as-border);
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

    .as-contact-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .as-contact-card small {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--as-muted);
    }

    .as-contact-card strong {
        font-size: 16px;
    }

.as-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .as-icon.red {
        background: #f25454;
    }

    .as-icon.green {
        background: #25D366;
    }

    .as-icon.blue {
        background: #4da6ff;
    }

    .as-icon.yellow {
        background: #ffb347;
    }

.as-contact-form {
    background: white;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--as-border);
}

    .as-contact-form h2 {
        margin-bottom: 5px;
    }

.as-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.as-contact-form input,
.as-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--as-border);
    margin-top: 6px;
}

.as-map {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--as-border);
}

/* MOBILE */
@media (max-width: 991px) {
    .as-grid {
        grid-template-columns: 1fr;
    }

    .as-form-grid {
        grid-template-columns: 1fr;
    }
}
/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: white;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(52, 24, 24, .10);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease, filter .35s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
        filter: brightness(.92);
    }

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* LIGHTBOX */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(20, 10, 10, .82);
    backdrop-filter: blur(8px);
}

    .gallery-lightbox.show {
        display: flex;
    }

    .gallery-lightbox img {
        max-width: min(100%, 1100px);
        max-height: 86vh;
        border-radius: 28px;
        background: white;
        box-shadow: 0 30px 80px rgba(0,0,0,.35);
    }

.gallery-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: white;
    color: var(--as-text);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

.overflow-hidden {
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-lightbox img {
        border-radius: 18px;
    }
}
.program-card {
    padding: 30px;
    border-radius: 25px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon-box-large {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(13,110,253,0.1);
}

.highlight-box {
    padding: 20px;
    border-radius: 20px;
    background: white;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}