/* =========================================================
   NCMG - LANDING ADMISIONES 2027
   style.css
   ========================================================= */


/* =========================
   VARIABLES
========================= */

:root {
    --green: #386641;
    --green-dark: #173321;
    --red: #b82025;

    --black: #171717;
    --gray: #666666;
    --gray-light: #f5f5f3;

    --white: #ffffff;

    --container: 1240px;
}


/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================
   GLOBAL
========================= */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section-eyebrow {
    display: block;
    margin-bottom: 16px;

    color: var(--red);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__content {
    height: 88px;

    display: flex;
    align-items: center;

    gap: 40px;
}

.header__logo {
    height: 72px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.header__logo img {
    width: auto;
    height: auto;

    max-width: 190px;
    max-height: 68px;

    object-fit: contain;
}

.header__nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 34px;
}

.header__nav a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    transition: color 0.25s ease;
}

.header__nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: width 0.25s ease;
}

.header__nav a:hover {
    color: var(--green);
}

.header__nav a:hover::after {
    width: 100%;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--header {
    min-height: 44px;

    padding-inline: 22px;

    background: var(--green);
    color: var(--white);
}

.btn--header:hover {
    background: var(--green-dark);
}

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

    box-shadow: 0 10px 30px rgba(184, 32, 37, 0.25);
}

.btn--primary:hover {
    background: #9f171c;
}

.btn--whatsapp {
    background: var(--white);
    color: var(--green-dark);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.70);

    color: var(--white);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--green-dark);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding-top: 88px;

    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(16, 28, 20, 0.92) 0%,
            rgba(16, 28, 20, 0.78) 38%,
            rgba(16, 28, 20, 0.42) 68%,
            rgba(16, 28, 20, 0.14) 100%
        );
}

.hero__content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding-top: 50px;
    padding-right: 45px;
    padding-bottom: 50px;
    padding-left: 45px;
}

.hero__text {
    max-width: 620px;
    color: var(--white);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.10);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero h1 {
    margin: 0;

    max-width: 620px;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;

    letter-spacing: -1.2px;

    font-weight: 500;
    color: var(--white);
}

.hero h1 strong {
    display: block;

    margin-top: 3px;

    font-weight: 700;
}

.hero__description,
.hero p {
    max-width: 540px;

    margin-top: 20px;

    font-size: 17px;
    line-height: 1.60;

    color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.hero__levels {
    display: flex;
    flex-wrap: wrap;

    gap: 0;

    margin-top: 28px;
}

.hero__levels span {
    position: relative;

    padding-right: 18px;
    margin-right: 18px;

    font-size: 14px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.82);
}

.hero__levels span:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--red);

    transform: translateY(-50%);
}


/* =========================
   EL COLEGIO / ABOUT
========================= */

.about {
    padding: 110px 0;

    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;
}

.about__content {
    max-width: 560px;
}

.about h2 {
    margin: 0;

    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.12;

    letter-spacing: -1.2px;

    font-weight: 700;

    color: var(--green-dark);
}

.about__lead {
    margin-top: 25px;

    font-size: 18px;
    line-height: 1.70;

    font-weight: 500;

    color: #3d3d3d;
}

.about__content p:not(.about__lead) {
    margin-top: 18px;

    font-size: 15px;
    line-height: 1.80;

    color: var(--gray);
}

.about__link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: var(--green);

    font-size: 14px;
    font-weight: 700;

    transition: gap 0.25s ease, color 0.25s ease;
}

.about__link span {
    font-size: 19px;
}

.about__link:hover {
    gap: 15px;
    color: var(--red);
}

.about__image {
    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 4px;
}

.about__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.about__image:hover img {
    transform: scale(1.025);
}


/* =========================
   NIVELES
========================= */

.levels {
    padding: 105px 0 115px;

    background: #f5f5f3;
}

.levels__header {
    max-width: 720px;

    margin-bottom: 48px;
}

.levels__header h2 {
    margin: 0;

    font-size: clamp(31px, 3.2vw, 44px);
    line-height: 1.15;

    color: var(--green-dark);

    font-weight: 700;

    letter-spacing: -1px;
}

.levels__header p {
    max-width: 650px;

    margin-top: 18px;

    font-size: 16px;
    line-height: 1.70;

    color: var(--gray);
}

.levels__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.level-card {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 5px;

    background: #222;
}

.level-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.level-card:hover img {
    transform: scale(1.045);
}

.level-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 20%,
            rgba(0, 0, 0, 0.20) 50%,
            rgba(10, 20, 14, 0.88) 100%
        );

    transition: background 0.3s ease;
}

.level-card:hover .level-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 10%,
            rgba(0, 0, 0, 0.30) 45%,
            rgba(10, 20, 14, 0.94) 100%
        );
}

.level-card__content {
    position: absolute;
    left: 0;
    bottom: 0;

    z-index: 2;

    width: 100%;

    padding: 32px;

    color: var(--white);
}

.level-card__number {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.65);
}

.level-card h3 {
    margin: 0;

    font-size: 28px;
    line-height: 1.15;

    font-weight: 700;

    color: var(--white);
}

.level-card p {
    margin-top: 14px;

    font-size: 14px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}

.level-card a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;
    padding-bottom: 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    font-size: 13px;
    font-weight: 700;

    color: var(--white);

    transition:
        gap 0.25s ease,
        border-color 0.25s ease;
}

.level-card a:hover {
    gap: 13px;
    border-color: var(--white);
}


/* =========================
   PROPUESTA EDUCATIVA
========================= */

.education {
    padding: 110px 0 120px;

    background: var(--white);
}

.education__header {
    max-width: 760px;

    margin-bottom: 50px;
}

.education__header h2 {
    margin: 0;

    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;

    color: var(--green-dark);
}

.education__header p {
    max-width: 700px;

    margin-top: 20px;

    font-size: 16px;
    line-height: 1.75;

    color: var(--gray);
}

.education__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-bottom: 80px;
}

.education-card {
    position: relative;

    padding: 38px 38px 34px;

    background: #f7f7f5;

    border: 1px solid #ecece8;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.education-card:hover {
    transform: translateY(-4px);

    border-color: rgba(56, 102, 65, 0.20);

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
}

.education-card__number {
    display: block;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--red);
}

.education-card h3 {
    max-width: 420px;

    margin: 0;

    font-size: 23px;
    line-height: 1.25;

    font-weight: 700;

    color: var(--green-dark);
}

.education-card p {
    max-width: 520px;

    margin-top: 16px;

    font-size: 14px;
    line-height: 1.75;

    color: var(--gray);
}

.education-card__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}

.education-card__tags span {
    padding: 7px 11px;

    border-radius: 30px;

    background: #173321;
    border: 1px solid #173321;

    font-size: 11px;
    font-weight: 600;

    color: var(--white);
}


/* =========================
   PROGRAMA DEL
========================= */

.del-block {
    position: relative;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    min-height: 450px;

    overflow: hidden;

    background: var(--green-dark);
}

.del-block__content {
    position: relative;
    z-index: 2;

    padding: 58px 68px;

    color: var(--white);
}

.del-block__eyebrow {
    display: block;

    margin-bottom: 16px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.68);
}

.del-block h3 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.7px;

    color: #ffffff;
}

.del-block__lead {
    max-width: 650px;

    margin-top: 24px;

    font-size: 16px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.80);
}

.del-block__phrase {
    max-width: 650px;

    margin-top: 27px;

    font-size: 17px;
    line-height: 1.60;

    font-weight: 600;

    color: var(--white);
}

.del-block__skills {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 27px;
}

.del-block__skills span {
    padding: 7px 13px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;

    font-size: 11px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.88);
}

.btn--del {
    margin-top: 30px;

    min-height: 47px;

    padding: 0 25px;

    background: var(--white);

    color: var(--green-dark);

    font-size: 13px;
}

.btn--del:hover {
    background: #f0f0ed;
    color: var(--green-dark);
}


/* =========================
   DEL - COLUMNA DERECHA
========================= */

.del-block__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px 48px;

    background: var(--white);

    overflow: hidden;
}

.del-block__visual::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -180px;
    top: -170px;

    border-radius: 50%;

    border: 45px solid rgba(23, 51, 33, 0.035);
}

.del-block__visual::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -110px;
    bottom: -110px;

    border-radius: 50%;

    background: rgba(184, 32, 37, 0.035);
}

.del-block__visual-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 390px;

    text-align: left;
}

.del-block__logo {
    display: block;

    width: 100%;
    max-width: 330px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}

.del-block__separator {
    width: 45px;
    height: 3px;

    margin: 32px 0 22px;

    background: var(--red);
}

.del-block__visual h4 {
    margin: 0;

    font-size: 22px;
    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.3px;

    color: var(--green-dark);
}

.del-block__visual p {
    margin-top: 16px;

    font-size: 14px;
    line-height: 1.70;

    color: #626262;
}

.del-block__concept {
    margin-top: 26px;
    padding-top: 18px;

    border-top: 1px solid #e9e9e5;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--green-dark);
}


/* =========================
   PLACEHOLDERS / SECCIONES
   AÚN NO DESARROLLADAS
========================= */

.placeholder-section {
    min-height: 400px;

    padding: 100px 0;
}

.placeholder-section--alt {
    background: var(--gray-light);
}

.placeholder-section h2 {
    font-size: 42px;

    color: var(--green-dark);
}


/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp-floating {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: var(--white);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
    transform: translateY(-3px) scale(1.03);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}


/* =========================
   CONTACTO
========================= */

.contact {
    padding: 110px 0 120px;

    background: #f5f5f3;
}

.contact__header {
    max-width: 730px;

    margin-bottom: 48px;
}

.contact__header h2 {
    margin: 0;

    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;

    color: var(--green-dark);
}

.contact__header p {
    max-width: 680px;

    margin-top: 18px;

    font-size: 16px;
    line-height: 1.7;

    color: var(--gray);
}


/* GRID */

.contact__grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    background: var(--white);

    box-shadow: 0 18px 50px rgba(0,0,0,.06);
}


/* =========================
   FORMULARIO
========================= */

.contact__form-box {
    padding: 52px 55px;

    background: var(--white);
}

.contact__form-box h3 {
    margin: 0;

    font-size: 26px;
    line-height: 1.2;

    color: var(--green-dark);
}

.contact__form-intro {
    margin-top: 10px;
    margin-bottom: 32px;

    font-size: 14px;
    line-height: 1.6;

    color: var(--gray);
}


/* CAMPOS */

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;

    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #ddddda;
    border-radius: 5px;

    outline: none;

    background: #ffffff;

    font-size: 14px;

    color: #333333;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-group input,
.form-group select {
    min-height: 50px;
}

.form-group textarea {
    resize: vertical;

    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);

    box-shadow: 0 0 0 3px rgba(56,102,65,.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}


/* Honeypot antispam */

.form-honeypot {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;
}


/* BOTÓN */

.btn--contact {
    width: 100%;

    margin-top: 4px;

    background: var(--green-dark);

    color: var(--white);
}

.btn--contact:hover {
    background: var(--red);
}

.btn--contact:disabled {
    opacity: .65;

    cursor: not-allowed;

    transform: none;
}


/* MENSAJE RESULTADO */

.form-message {
    display: none;

    margin-top: 18px;

    padding: 14px 16px;

    border-radius: 5px;

    font-size: 13px;
    line-height: 1.5;
}

.form-message.is-success {
    display: block;

    background: #edf7ef;

    border: 1px solid #cbe5d0;

    color: #24582f;
}

.form-message.is-error {
    display: block;

    background: #fff0f0;

    border: 1px solid #efcccc;

    color: #9e2525;
}


/* =========================
   INFORMACIÓN DERECHA
========================= */

.contact__info {
    position: relative;

    padding: 55px 50px;

    background: var(--green-dark);

    color: var(--white);

    overflow: hidden;
}

.contact__info::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    border: 55px solid rgba(255,255,255,.035);
}

.contact__info-eyebrow {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.58);
}

.contact__info h3 {
    position: relative;
    z-index: 2;

    max-width: 430px;

    margin: 0;

    font-size: 30px;
    line-height: 1.2;

    color: var(--white);
}

.contact__info > p {
    position: relative;
    z-index: 2;

    max-width: 430px;

    margin-top: 18px;

    font-size: 14px;
    line-height: 1.75;

    color: rgba(255,255,255,.75);
}


/* WHATSAPP */

.contact__whatsapp {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 32px;

    padding: 18px;

    background: var(--white);

    border-radius: 6px;

    color: var(--green-dark);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact__whatsapp:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.contact__whatsapp-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
}

.contact__whatsapp div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.contact__whatsapp div:nth-child(2) span {
    font-size: 11px;

    color: #777;
}

.contact__whatsapp div:nth-child(2) strong {
    margin-top: 3px;

    font-size: 14px;
}

.contact__whatsapp-arrow {
    margin-left: auto;

    font-size: 22px;

    color: var(--green-dark);
}


/* DATOS COLEGIO */

.contact__separator {
    position: relative;
    z-index: 2;

    height: 1px;

    margin: 35px 0;

    background: rgba(255,255,255,.13);
}

.contact__school {
    position: relative;
    z-index: 2;
}

.contact__school > span {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: rgba(255,255,255,.55);
}

.contact__school p {
    margin-top: 9px;

    font-size: 13px;

    color: rgba(255,255,255,.82);
}

.contact__school a {
    display: inline-block;

    margin-top: 10px;

    font-size: 13px;
    font-weight: 600;

    color: var(--white);
}



/* =========================
   MENÚ MOBILE
========================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--black);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    /* HEADER */

    .header__content {
        height: 76px;
    }

    .header__logo {
        height: 62px;
    }

    .header__logo img {
        max-width: 155px;
        max-height: 58px;
    }

    .btn--header {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    .header__nav {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        padding: 24px;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        background: var(--white);

        border-top: 1px solid #eeeeee;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .header__nav.is-active {
        display: flex;
    }


    /* HERO */

    .hero {
        min-height: 700px;

        padding-top: 76px;

        background-position: 62% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(16, 28, 20, 0.94) 0%,
                rgba(16, 28, 20, 0.76) 60%,
                rgba(16, 28, 20, 0.42) 100%
            );
    }

    .hero__content {
        padding-top: 60px;
        padding-right: 20px;
        padding-bottom: 60px;
        padding-left: 20px;
    }

    .hero h1 {
        font-size: clamp(34px, 6vw, 46px);
    }

    .hero__description,
    .hero p {
        font-size: 16px;
    }


    /* ABOUT */

    .about {
        padding: 80px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about__content {
        max-width: 680px;
    }

    .about__image {
        height: 430px;
    }


    /* NIVELES */

    .levels {
        padding: 80px 0;
    }

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

    .level-card:last-child {
        grid-column: 1 / -1;
    }

    .level-card {
        min-height: 470px;
    }


    /* EDUCATION */

    .education {
        padding: 80px 0;
    }

    .education__grid {
        gap: 18px;

        margin-bottom: 60px;
    }

    .education-card {
        padding: 30px;
    }


    /* DEL */

    .del-block {
        grid-template-columns: 1fr;
    }

    .del-block__content {
        padding: 50px;
    }

    .del-block__visual {
        padding: 50px;
    }

    .del-block__visual-inner {
        max-width: 600px;
    }

    .del-block__logo {
        max-width: 360px;
        margin-left: 0;
    }



    .contact {
    padding: 80px 0;
}

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

.contact__form-box {
    padding: 45px;
}

.contact__info {
    padding: 45px;
}

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-eyebrow {
        margin-bottom: 12px;

        font-size: 10px;
    }


    /* HERO */

    .hero {
        min-height: 720px;

        align-items: flex-end;

        padding-bottom: 42px;

        background-position: 68% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(16, 28, 20, 0.28) 0%,
                rgba(16, 28, 20, 0.64) 38%,
                rgba(16, 28, 20, 0.96) 100%
            );
    }

    .hero__content {
        padding-top: 90px;
        padding-right: 8px;
        padding-bottom: 0;
        padding-left: 8px;
    }

    .hero__eyebrow {
        margin-bottom: 15px;

        font-size: 10px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.08;

        letter-spacing: -0.8px;
    }

    .hero__description,
    .hero p {
        margin-top: 16px;

        font-size: 15px;
        line-height: 1.55;
    }

    .hero__actions {
        flex-direction: column;

        margin-top: 28px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__levels {
        flex-direction: column;

        gap: 7px;

        margin-top: 24px;
    }

    .hero__levels span {
        padding: 0;
        margin: 0;

        font-size: 13px;
    }

    .hero__levels span::after {
        display: none;
    }


    /* ABOUT */

    .about {
        padding: 65px 0;
    }

    .about__grid {
        gap: 35px;
    }

    .about h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .about__lead {
        margin-top: 20px;

        font-size: 16px;
        line-height: 1.65;
    }

    .about__content p:not(.about__lead) {
        font-size: 14px;
    }

    .about__image {
        height: 330px;
    }


    /* NIVELES */

    .levels {
        padding: 65px 0;
    }

    .levels__header {
        margin-bottom: 32px;
    }

    .levels__header h2 {
        font-size: 30px;
    }

    .levels__header p {
        font-size: 14px;
    }

    .levels__grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .level-card:last-child {
        grid-column: auto;
    }

    .level-card {
        min-height: 430px;
    }

    .level-card__content {
        padding: 26px;
    }

    .level-card h3 {
        font-size: 25px;
    }


    /* EDUCATION */

    .education {
        padding: 65px 0;
    }

    .education__header {
        margin-bottom: 32px;
    }

    .education__header h2 {
        font-size: 30px;
    }

    .education__header p {
        font-size: 14px;
    }

    .education__grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-bottom: 45px;
    }

    .education-card {
        padding: 26px;
    }

    .education-card h3 {
        font-size: 21px;
    }


    /* DEL */

    .del-block {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .del-block__content {
        padding: 34px 26px;
    }

    .del-block h3 {
        font-size: 28px;
    }

    .del-block__lead {
        font-size: 14px;
    }

    .del-block__phrase {
        font-size: 16px;
    }

    .btn--del {
        width: 100%;
    }

    .del-block__visual {
        padding: 38px 26px 42px;
    }

    .del-block__logo {
        max-width: 290px;
        margin: 0 auto;
    }

    .del-block__separator {
        margin-top: 28px;
    }

    .del-block__visual h4 {
        font-size: 20px;
    }

    .del-block__visual p {
        font-size: 13px;
    }


    /* PLACEHOLDER */

    .placeholder-section {
        padding: 70px 0;
    }


    .contact {
    padding: 65px 0;
}

.contact__header {
    margin-bottom: 32px;
}

.contact__header h2 {
    font-size: 30px;
}

.contact__header p {
    font-size: 14px;
}

.contact__form-box {
    padding: 30px 24px;
}

.contact__form-box h3 {
    font-size: 23px;
}

.form-row {
    grid-template-columns: 1fr;

    gap: 0;
}

.contact__info {
    padding: 36px 24px;
}

.contact__info h3 {
    font-size: 26px;
}

.contact__whatsapp {
    padding: 15px;
}

}
/* =========================
   DEL - INVERTIR COLUMNAS
========================= */

.del-block__visual {
    order: 1;
}

.del-block__content {
    order: 2;
}
