/* =========================================================
   SITTRAN - CORPORATIVOS
   CSS RESPONSIVE
   Compatible con PC / Mac / Android / iOS / Tablets
   ========================================================= */

:root {
    --primary-navy: #0f172a;
    --primary-blue: #1e40af;
    --accent: yellowgreen;

    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --border: #e2e8f0;

    --shadow-sm: 0 4px 10px rgba(15, 23, 42, .06);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, .10);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, .14);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --transition: all .3s ease;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;

    background: var(--bg-light);
    color: var(--text-dark);

    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Roboto",
        sans-serif;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    border: 0;
}

section,
header,
footer,
main {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    padding: 14px 0;

    background: rgba(15, 23, 42, .97);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    box-shadow: var(--shadow-md);
}

.header-content {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 45px;

    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;

    min-width: 0;

    flex: 1 1 auto;
}

.logo-text {
    display: block;

    color: #fff;

    font-size: clamp(1.35rem, 3vw, 1.8rem);
    font-weight: 800;

    letter-spacing: 1.5px;
    line-height: 1;

    white-space: nowrap;

    background: linear-gradient(
        135deg,
        yellowgreen,
        #ffffff
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   MENU DESKTOP
   ========================================================= */

.nav-menu {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: clamp(10px, 2vw, 25px);

    flex: 0 0 auto;
}

.nav-link {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 9px 6px;

    color: #e2e8f0;

    font-size: .98rem;
    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);
}

.nav-link i {
    font-size: .95rem;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: yellowgreen;
}


/* =========================================================
   BOTÓN HAMBURGUESA
   ========================================================= */

.menu-toggle {
    display: none;

    position: relative;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    padding: 8px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 10px;

    cursor: pointer;

    z-index: 10001;

    -webkit-tap-highlight-color: transparent;

    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, .15);
}

.menu-toggle:active {
    transform: scale(.96);
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 3px;

    background: #fff;

    border-radius: 5px;

    transition: transform .3s ease,
                opacity .2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;

    padding: clamp(55px, 8vw, 90px) 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(154, 205, 50, .18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172554 50%,
            #465e15 100%
        );

    color: #fff;
}

.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .9),
            rgba(15, 23, 42, .45)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .85fr);

    align-items: center;

    gap: clamp(35px, 6vw, 70px);
}

.hero-copy {
    min-width: 0;
}

.hero-badge {
    display: inline-block;

    max-width: 100%;

    margin-bottom: 20px;

    padding: 7px 15px;

    border: 1px solid rgba(154, 205, 50, .45);

    border-radius: 30px;

    background: rgba(154, 205, 50, .12);

    color: yellowgreen;

    font-size: .78rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.hero h1 {
    max-width: 700px;

    margin-bottom: 22px;

    color: #fff;

    font-size: clamp(
        2rem,
        5vw,
        4rem
    );

    line-height: 1.08;

    font-weight: 800;

    overflow-wrap: break-word;
}

.hero h1 span {
    display: inline;

    color: yellowgreen;
}

.hero-copy > p {
    max-width: 680px;

    margin-bottom: 30px;

    color: #cbd5e1;

    font-size: clamp(.92rem, 2vw, 1.08rem);
}

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: 10px;

    font-weight: 700;

    transition: var(--transition);

    text-align: center;
}

.btn-primary {
    gap: 12px;

    background: yellowgreen;

    color: #0f172a;

    box-shadow:
        0 8px 20px rgba(154, 205, 50, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    background: #b7df45;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .07);

    color: #fff;
}

.btn-secondary:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, .13);

    border-color: yellowgreen;
}


/* =========================================================
   HERO STATS
   ========================================================= */

.hero-stats {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: 100%;
    max-width: 650px;

    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat {
    display: flex;

    flex-direction: column;

    gap: 3px;

    min-width: 0;
}

.hero-stat strong {
    color: yellowgreen;

    font-size: 1.45rem;
}

.hero-stat span {
    color: #cbd5e1;

    font-size: .82rem;
}


/* =========================================================
   HERO PANEL
   ========================================================= */

.hero-panel {
    width: 100%;
    max-width: 100%;

    padding: clamp(22px, 3vw, 30px);

    border: 1px solid rgba(255, 255, 255, .13);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .05)
        );

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow: var(--shadow-lg);
}

.panel-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 25px;
}

.panel-label {
    color: yellowgreen;

    font-size: .75rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.panel-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 12px;

    background: rgba(154, 205, 50, .15);

    font-size: 1.4rem;
}

.hero-panel h2 {
    margin-bottom: 15px;

    color: #fff;

    font-size: clamp(1.3rem, 3vw, 1.65rem);

    line-height: 1.25;
}

.hero-panel > p {
    margin-bottom: 25px;

    color: #cbd5e1;

    font-size: .95rem;
}

.panel-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.panel-list div {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    min-width: 0;

    color: #e2e8f0;

    font-size: .88rem;
}

.panel-list span {
    color: yellowgreen;

    font-weight: 900;

    flex-shrink: 0;
}


/* =========================================================
   SECCIONES
   ========================================================= */

.experience-section,
.services-section,
.training-section,
.plans-section,
.why-section {
    width: 100%;

    padding: clamp(60px, 8vw, 90px) 0;
}

.experience-section {
    background: #fff;
}

.services-section {
    background: var(--bg-light);
}

.training-section {
    background: #fff;
}

.plans-section {
    background: var(--bg-light);
}

.why-section {
    background: #fff;
}

.contact-section {
    width: 100%;

    padding: clamp(60px, 8vw, 80px) 0;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );

    color: #fff;
}

.notice-section {
    width: 100%;

    padding: 30px 0;

    background: var(--bg-light);
}


/* =========================================================
   TITULOS
   ========================================================= */

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #6b8e23;

    font-size: .76rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.experience-content h2,
.section-heading h2,
.training-content h2,
.why-header h2,
.section-heading.centered h2 {
    color: var(--primary-navy);

    font-size: clamp(
        1.8rem,
        4vw,
        2.7rem
    );

    line-height: 1.2;

    font-weight: 800;

    overflow-wrap: break-word;
}

.experience-content h2 {
    max-width: 650px;

    margin-bottom: 22px;
}

.experience-content p {
    max-width: 700px;

    margin-bottom: 16px;

    color: var(--text-muted);

    font-size: 1rem;
}


/* =========================================================
   EXPERIENCIA
   ========================================================= */

.experience-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .8fr);

    gap: clamp(35px, 6vw, 70px);

    align-items: start;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: var(--primary-blue);

    font-weight: 700;
}

.text-link:hover {
    color: #6b8e23;
}

.credentials {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.credential-card {
    display: grid;

    grid-template-columns: 58px minmax(0, 1fr);

    gap: 18px;

    width: 100%;

    padding: 22px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);

    border-color: rgba(154, 205, 50, .5);
}

.credential-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 14px;

    background: #f0f7df;

    font-size: 1.5rem;
}

.credential-card span {
    color: #6b8e23;

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .8px;
}

.credential-card h3 {
    margin: 4px 0 6px;

    color: var(--primary-navy);

    font-size: 1.05rem;
}

.credential-card p {
    color: var(--text-muted);

    font-size: .88rem;
}


/* =========================================================
   ENCABEZADO SERVICIOS
   ========================================================= */

.section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, .7fr);

    align-items: end;

    gap: 40px;

    margin-bottom: 45px;
}

.section-heading > p {
    color: var(--text-muted);

    font-size: .98rem;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.services-list {
    display: flex;

    flex-direction: column;

    width: 100%;

    gap: 15px;
}

.corporate-service {
    display: grid;

    grid-template-columns:
        50px
        65px
        minmax(0, 1fr)
        40px;

    align-items: center;

    gap: 20px;

    width: 100%;
    min-width: 0;

    padding: 24px 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.corporate-service:hover {
    transform: translateX(5px);

    border-color: rgba(154, 205, 50, .55);

    box-shadow: var(--shadow-md);
}

.featured-service {
    border-color: rgba(154, 205, 50, .7);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f4f9e8
        );
}

.service-number {
    color: #94a3b8;

    font-size: .8rem;
    font-weight: 800;
}

.corporate-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 15px;

    background: #f0f7df;

    font-size: 1.4rem;
}

.corporate-content {
    min-width: 0;
}

.corporate-content > span {
    color: #6b8e23;

    font-size: .7rem;
    font-weight: 800;

    letter-spacing: .8px;
}

.corporate-content h3 {
    margin: 4px 0 6px;

    color: var(--primary-navy);

    font-size: 1.12rem;

    line-height: 1.3;

    overflow-wrap: break-word;
}

.corporate-content p {
    color: var(--text-muted);

    font-size: .88rem;

    line-height: 1.55;

    overflow-wrap: break-word;
}

.service-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    color: #6b8e23;

    font-size: 1.4rem;
    font-weight: 700;
}


/* =========================================================
   TRAINING
   ========================================================= */

.training-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .75fr);

    align-items: center;

    gap: clamp(35px, 6vw, 70px);
}

.training-content h2 {
    max-width: 650px;

    margin-bottom: 20px;
}

.training-content > p {
    max-width: 680px;

    margin-bottom: 25px;

    color: var(--text-muted);
}

.training-points {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.training-points div {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    min-width: 0;

    color: var(--text-dark);

    font-size: .9rem;
}

.training-points span {
    color: #6b8e23;

    font-weight: 900;

    flex-shrink: 0;
}

.training-card {
    width: 100%;

    padding: clamp(25px, 4vw, 35px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #0f172a,
            #172554
        );

    color: #fff;

    box-shadow: var(--shadow-lg);
}

.training-card-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    border-radius: 15px;

    background: rgba(154, 205, 50, .15);

    font-size: 1.5rem;
}

.training-card > span {
    color: yellowgreen;

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.training-card h3 {
    margin: 8px 0 12px;

    font-size: 1.5rem;

    line-height: 1.25;
}

.training-card p {
    margin-bottom: 25px;

    color: #cbd5e1;

    font-size: .92rem;
}

.training-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    width: 100%;

    padding: 13px 17px;

    border-radius: 10px;

    background: yellowgreen;

    color: #0f172a;

    font-weight: 800;

    transition: var(--transition);
}

.training-button:hover {
    background: #b7df45;

    transform: translateY(-2px);
}


/* =========================================================
   PLANES
   ========================================================= */

.section-heading.centered {
    display: block;

    width: 100%;
    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-heading.centered h2 {
    margin-bottom: 15px;
}

.section-heading.centered p {
    color: var(--text-muted);
}

.plans-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.plan-card {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;
    min-width: 0;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 2px solid yellowgreen;

    box-shadow:
        0 15px 35px rgba(154, 205, 50, .16);
}

.featured-label {
    position: absolute;

    top: 0;
    right: 25px;

    transform: translateY(-50%);

    padding: 5px 12px;

    border-radius: 20px;

    background: yellowgreen;

    color: #0f172a;

    font-size: .65rem;
    font-weight: 900;

    letter-spacing: .5px;
}

.plan-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}

.plan-header > span {
    color: #6b8e23;

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .8px;
}

.plan-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #f0f7df;
}

.plan-card h3 {
    margin-bottom: 10px;

    color: var(--primary-navy);

    font-size: 1.4rem;
}

.plan-card > p {
    margin-bottom: 25px;

    color: var(--text-muted);

    font-size: .9rem;
}

.plan-card ul {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 30px;

    padding: 0;

    list-style: none;
}

.plan-card li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: var(--text-dark);

    font-size: .88rem;
}

.plan-card li span {
    color: #6b8e23;

    font-weight: 900;

    flex-shrink: 0;
}

.plan-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: auto;

    padding: 12px 18px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #fff;

    color: var(--primary-navy);

    font-weight: 700;

    text-align: center;

    transition: var(--transition);
}

.plan-button:hover {
    border-color: yellowgreen;

    background: #f4f9e8;
}

.plan-button.primary {
    border-color: yellowgreen;

    background: yellowgreen;

    color: #0f172a;
}


/* =========================================================
   POR QUÉ SITTRAN
   ========================================================= */

.why-header {
    margin-bottom: 45px;

    text-align: center;
}

.why-header h2 {
    max-width: 700px;

    margin: 0 auto;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}

.why-item {
    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr);

    gap: 20px;

    width: 100%;
    min-width: 0;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: #fff;

    transition: var(--transition);
}

.why-item:hover {
    border-color: rgba(154, 205, 50, .5);

    box-shadow: var(--shadow-md);
}

.why-item > strong {
    color: #6b8e23;

    font-size: 1rem;
}

.why-item h3 {
    margin-bottom: 5px;

    color: var(--primary-navy);

    font-size: 1.1rem;
}

.why-item p {
    color: var(--text-muted);

    font-size: .9rem;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, .7fr);

    align-items: center;

    gap: clamp(35px, 6vw, 60px);
}

.contact-content > span {
    color: yellowgreen;

    font-size: .75rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.contact-content h2 {
    max-width: 650px;

    margin: 12px 0 18px;

    color: #fff;

    font-size: clamp(
        1.8rem,
        4vw,
        2.7rem
    );

    line-height: 1.2;
}

.contact-content p {
    max-width: 650px;

    color: #cbd5e1;
}

.contact-actions {
    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 0;
}

.contact-button {
    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;
    min-width: 0;

    padding: 15px 18px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 12px;

    background: rgba(255, 255, 255, .06);

    color: #fff;

    font-weight: 600;

    transition: var(--transition);
}

.contact-button:hover {
    transform: translateX(5px);

    border-color: yellowgreen;

    background: rgba(154, 205, 50, .1);
}

.contact-button-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 10px;

    background: rgba(154, 205, 50, .15);

    color: yellowgreen;
}

.contact-button > span:last-child {
    min-width: 0;

    overflow-wrap: anywhere;
}


/* =========================================================
   NOTICE
   ========================================================= */

.notice-box {
    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr);

    gap: 18px;

    width: 100%;

    padding: 20px;

    border: 1px solid #dbe4c5;

    border-radius: var(--radius-md);

    background: #f7faef;
}

.notice-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 10px;

    background: #eaf3d5;

    font-size: 1.2rem;
}

.notice-box strong {
    color: var(--primary-navy);
}

.notice-box p {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: .85rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width: 100%;

    padding: 25px 20px 18px;

    background: var(--primary-navy);

    color: #94a3b8;

    text-align: center;
}

.footer-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    width: 100%;
}

.redes-footer {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 12px;
}

.redes-footer a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    transition: var(--transition);
}

.icon-redes-footer {
    color: #fff;

    font-size: 1rem;
}

.redes-footer a:hover {
    transform: translateY(-3px);

    background: yellowgreen;
}

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 12px 0;

    border: 0;

    background: rgba(255, 255, 255, .1);
}

.footer-info {
    width: 100%;
}

.footer-info h5 {
    margin: 3px 0;

    color: #cbd5e1;

    font-size: .82rem;
    font-weight: 500;

    line-height: 1.4;

    overflow-wrap: break-word;
}


/* =========================================================
   TABLETS GRANDES
   993px - 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-content {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, .8fr);

        gap: 40px;
    }

    .experience-container,
    .training-container {
        gap: 40px;
    }

    .plans-grid {
        gap: 18px;
    }

    .plan-card {
        padding: 25px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: .9rem;
    }
}


/* =========================================================
   TABLETS
   <= 992px
   ========================================================= */

@media (max-width: 992px) {

    .hero-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .hero-panel {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .experience-container,
    .training-container {
        grid-template-columns: 1fr;
    }

    .credentials {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .credential-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .credential-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .plans-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .training-card {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-content h2,
    .contact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-actions {
        width: 100%;
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   MENÚ MÓVIL / TABLETS
   <= 900px
   ========================================================= */

@media (max-width: 900px) {

    .header {
        padding: 10px 0;
    }

    .header-content {
        min-height: 45px;
    }

    /* MOSTRAR HAMBURGUESA */
    .menu-toggle {
        display: flex;
    }

    /* OCULTAR MENU NORMAL */
    .nav-menu {
        position: absolute;

        top: calc(100% + 10px);

        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        width: 100%;

        max-height: calc(100vh - 80px);
        max-height: calc(100dvh - 80px);

        overflow-y: auto;
        overflow-x: hidden;

        gap: 8px;

        padding: 14px;

        border: 1px solid rgba(255, 255, 255, .08);

        border-radius: 14px;

        background: rgba(15, 23, 42, .99);

        box-shadow:
            0 15px 35px rgba(0, 0, 0, .3);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        -webkit-overflow-scrolling: touch;
    }

    /* MENU ABIERTO */
    .nav-menu.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .nav-link {
        display: flex;

        width: 100%;

        min-height: 48px;

        justify-content: center;

        padding: 13px;

        border-radius: 9px;

        background: rgba(255, 255, 255, .05);

        color: #fff;

        font-size: .95rem;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
        color: #fff;

        background: rgba(154, 205, 50, .12);
    }

    .hero {
        padding: 65px 0;
    }

    .credentials {
        grid-template-columns: 1fr;
    }

    .credential-card {
        grid-template-columns: 58px minmax(0, 1fr);

        text-align: left;
    }

    .credential-icon {
        margin: 0;
    }

    .corporate-service {
        grid-template-columns:
            40px
            55px
            minmax(0, 1fr)
            30px;

        gap: 12px;

        padding: 20px;
    }

    .corporate-icon {
        width: 50px;
        height: 50px;
    }

    .corporate-content h3 {
        font-size: 1rem;
    }

    .corporate-content p {
        font-size: .83rem;
    }

    .training-points {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .notice-box {
        grid-template-columns:
            45px
            minmax(0, 1fr);
    }
}


/* =========================================================
   MÓVILES
   <= 576px
   ========================================================= */

@media (max-width: 576px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo-text {
        font-size: 1.45rem;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .hero {
        padding: 55px 0;
    }

    .hero-badge {
        max-width: 100%;

        font-size: .65rem;

        letter-spacing: .5px;

        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .hero h1 span {
        display: inline;
    }

    .hero-copy > p {
        font-size: .92rem;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 15px;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .hero-stat span {
        font-size: .75rem;
    }

    .hero-panel {
        padding: 22px;

        border-radius: 17px;
    }

    .hero-panel h2 {
        font-size: 1.35rem;
    }

    .panel-top {
        align-items: flex-start;
    }

    .panel-list {
        grid-template-columns: 1fr;
    }

    .section-heading.centered {
        margin-bottom: 35px;
    }

    .corporate-service {
        display: grid;

        grid-template-columns:
            45px
            minmax(0, 1fr);

        gap: 12px;

        padding: 18px;
    }

    .service-number {
        grid-column: 1;
        grid-row: 1;

        align-self: start;
    }

    .corporate-icon {
        grid-column: 1;
        grid-row: 2;
    }

    .corporate-content {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .service-arrow {
        display: none;
    }

    .corporate-content h3 {
        font-size: .98rem;
    }

    .corporate-content p {
        font-size: .82rem;
    }

    .plan-card {
        padding: 24px 20px;
    }

    .training-card {
        padding: 25px 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-button {
        font-size: .85rem;
    }

    .notice-box {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .notice-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-info h5 {
        font-size: .74rem;
    }
}


/* =========================================================
   MÓVILES MUY PEQUEÑOS
   <= 400px
   ========================================================= */

@media (max-width: 400px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-panel {
        padding: 18px;
    }

    .panel-icon {
        width: 42px;
        height: 42px;
    }

    .corporate-service {
        padding: 15px;
    }

    .corporate-content h3 {
        font-size: .92rem;
    }

    .corporate-content p {
        font-size: .78rem;
    }

    .plan-card h3 {
        font-size: 1.25rem;
    }

    .why-item {
        grid-template-columns:
            35px
            minmax(0, 1fr);

        gap: 12px;

        padding: 18px;
    }

    .contact-button {
        padding: 12px;

        gap: 9px;

        word-break: break-word;
    }
}


/* =========================================================
   PANTALLAS MUY ESTRECHAS
   320px - 350px
   ========================================================= */

@media (max-width: 350px) {

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .menu-toggle span {
        width: 22px;
    }

    .hero h1 {
        font-size: 1.55rem;
    }

    .hero-badge {
        font-size: .58rem;
    }

    .corporate-service {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        padding: 13px;
    }

    .corporate-icon {
        width: 40px;
        height: 40px;

        font-size: 1.1rem;
    }

    .corporate-content h3 {
        font-size: .88rem;
    }

    .corporate-content p {
        font-size: .76rem;
    }
}


/* =========================================================
   DISPOSITIVOS CON POCA ALTURA
   ========================================================= */

@media (max-height: 600px) and (max-width: 900px) {

    .nav-menu {
        max-height: calc(100dvh - 70px);
    }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

:focus-visible {
    outline: 3px solid yellowgreen;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
