/* =========================================================
   PASALAVENTA
   INFORMACIÓN — DISEÑO PREMIUM RED / BLACK
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
}

:root {
    --black: #050505;
    --black-2: #0a0a0a;
    --black-3: #111111;
    --black-4: #181818;

    --red: #e50914;
    --red-light: #ff1b26;
    --red-dark: #a9000a;

    --white: #ffffff;
    --text: #f5f5f5;
    --text-soft: #a1a1aa;
    --text-dark: #18181b;

    --border: rgba(255,255,255,.08);
    --red-border: rgba(229,9,20,.35);

    --shadow: 0 25px 70px rgba(0,0,0,.45);
}


/* =========================================================
   BODY
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(229,9,20,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(229,9,20,.08),
            transparent 28%
        ),
        #070707;

    color: var(--text);
}


/* =========================================================
   HEADER
   ========================================================= */

.info-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    min-height: 82px;

    padding: 14px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            180deg,
            rgba(5,5,5,.98),
            rgba(5,5,5,.92)
        );

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(229,9,20,.18);

    box-shadow:
        0 10px 40px rgba(0,0,0,.45);
}


/* =========================================================
   LOGO
   ========================================================= */

.info-logo {
    cursor: pointer;

    user-select: none;

    transition: .25s ease;
}

.info-logo:hover {
    transform: translateY(-1px);
}

.info-logo h1 {
    color: #fff;

    font-size: 28px;
    font-weight: 900;

    letter-spacing: -1.4px;

    line-height: 1;
}

.info-logo h1 span {
    color: var(--red);

    text-shadow:
        0 0 20px rgba(229,9,20,.35);
}

.info-logo p {
    margin-top: 7px;

    color: #777;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   BOTÓN VOLVER
   ========================================================= */

.btn-volver {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 19px;

    color: #fff;

    background: #111;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    overflow: hidden;

    transition: .25s ease;
}

.btn-volver::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(229,9,20,.18),
            transparent
        );

    transform: translateX(-100%);

    transition: .5s ease;
}

.btn-volver:hover::before {
    transform: translateX(100%);
}

.btn-volver:hover {
    border-color: var(--red);

    background: #161616;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(229,9,20,.22);
}


/* =========================================================
   MAIN
   ========================================================= */

.info-main {
    flex: 1;

    width: 100%;

    padding: 50px 25px 90px;
}

.info-container {
    width: 100%;
    max-width: 1280px;

    margin: auto;

    display: grid;

    grid-template-columns: 240px minmax(0,1fr);

    gap: 25px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.info-menu {
    position: sticky;
    top: 108px;

    padding: 14px;

    background:
        linear-gradient(
            145deg,
            #111,
            #090909
        );

    border: 1px solid var(--border);

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.4);
}

.info-menu::before {
    content: "";

    display: block;

    height: 2px;

    margin: -14px -14px 14px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            transparent
        );

    border-radius: 20px;
}

.info-menu h3 {
    padding: 8px 10px 15px;

    color: #fff;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .3px;
}

.info-menu a {
    position: relative;

    display: flex;
    align-items: center;

    margin-bottom: 5px;

    padding: 12px 13px 12px 16px;

    color: #8d8d8d;

    border-radius: 9px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: .22s ease;
}

.info-menu a::before {
    content: "";

    position: absolute;

    left: 0;

    width: 3px;
    height: 0;

    background: var(--red);

    border-radius: 20px;

    box-shadow:
        0 0 12px rgba(229,9,20,.8);

    transition: .22s ease;
}

.info-menu a:hover {
    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(229,9,20,.12),
            transparent
        );

    transform: translateX(3px);
}

.info-menu a.activo {
    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(229,9,20,.18),
            rgba(229,9,20,.03)
        );

    border: 1px solid rgba(229,9,20,.18);
}

.info-menu a.activo::before {
    height: 22px;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.info-content {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: #101010;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 22px;

    box-shadow: var(--shadow);
}


/* =========================================================
   CABECERA DEL CONTENIDO
   ========================================================= */

.info-heading {
    position: relative;

    min-height: 220px;

    padding: 48px 50px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(229,9,20,.30),
            transparent 25%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(229,9,20,.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090909,
            #151515
        );

    border-bottom: 1px solid rgba(229,9,20,.20);
}

.info-heading::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -170px;

    border: 1px solid rgba(229,9,20,.20);

    border-radius: 50%;

    box-shadow:
        0 0 80px rgba(229,9,20,.06);
}

.info-heading::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 20px;
    bottom: -130px;

    border: 1px solid rgba(229,9,20,.12);

    border-radius: 50%;
}

.info-label {
    position: relative;
    z-index: 2;

    display: inline-flex;

    margin-bottom: 14px;

    padding: 6px 11px;

    color: #ff4a52;

    background: rgba(229,9,20,.10);

    border: 1px solid rgba(229,9,20,.30);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.info-heading h1 {
    position: relative;
    z-index: 2;

    max-width: 700px;

    color: #fff;

    font-size: 38px;
    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -1.2px;
}

.info-heading p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin-top: 13px;

    color: #969696;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CUERPO
   ========================================================= */

.info-body {
    padding: 45px 50px;

    background:
        linear-gradient(
            180deg,
            #101010,
            #0c0c0c
        );
}

.info-body > p {
    margin-bottom: 18px;

    color: #a1a1aa;

    font-size: 14px;

    line-height: 1.85;
}

.info-body strong {
    color: #fff;

    font-weight: 800;
}


/* =========================================================
   TÍTULOS
   ========================================================= */

.info-section-title {
    display: flex;
    align-items: center;

    gap: 13px;

    margin: 45px 0 20px;
}

.info-section-title span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 43px;
    height: 29px;

    padding: 0 9px;

    color: #ff3b44;

    background:
        rgba(229,9,20,.10);

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 7px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .8px;
}

.info-section-title h2 {
    color: #fff;

    font-size: 21px;
    font-weight: 800;

    letter-spacing: -.4px;
}

.info-section-title h2::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 7px;

    background: var(--red);
}


/* =========================================================
   HERO CARD
   ========================================================= */

.info-hero-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-bottom: 32px;

    padding: 27px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(229,9,20,.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #171717,
            #0d0d0d
        );

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 17px;

    box-shadow:
        inset 0 1px rgba(255,255,255,.03);
}

.info-hero-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    top: -70px;

    border: 1px solid rgba(229,9,20,.18);

    border-radius: 50%;
}

.info-hero-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 70px;
    height: 70px;

    background:
        linear-gradient(
            145deg,
            #1c1c1c,
            #090909
        );

    border: 1px solid rgba(229,9,20,.35);

    border-radius: 17px;

    font-size: 32px;

    box-shadow:
        0 0 25px rgba(229,9,20,.10);
}

.mini-label {
    color: #ff3b44;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.info-hero-card h2 {
    margin: 6px 0;

    color: #fff;

    font-size: 22px;
    font-weight: 800;
}

.info-hero-card p {
    color: #999;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   TARJETAS DE PERSONAS
   ========================================================= */

.info-cards {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 14px;

    margin: 28px 0 12px;
}

.info-person-card {
    position: relative;

    padding: 23px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0c0c0c
        );

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    overflow: hidden;

    transition: .25s ease;
}

.info-person-card::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    right: -30px;
    top: -30px;

    background: rgba(229,9,20,.08);

    border-radius: 50%;
}

.info-person-card:hover {
    transform: translateY(-5px);

    border-color: rgba(229,9,20,.40);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35),
        0 0 25px rgba(229,9,20,.06);
}

.person-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    margin-bottom: 16px;

    background: #0b0b0b;

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 12px;

    font-size: 21px;
}

.info-person-card h3 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 14px;
}

.info-person-card p {
    color: #858585;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   FRASE DESTACADA
   ========================================================= */

.quote-card {
    position: relative;

    margin: 35px 0;

    padding: 34px 38px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(229,9,20,.20),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #171717,
            #090909
        );

    border: 1px solid rgba(229,9,20,.30);

    border-left: 3px solid var(--red);

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);
}

.quote-mark {
    position: absolute;

    top: -25px;
    left: 15px;

    color: rgba(229,9,20,.18);

    font-size: 110px;

    line-height: 1;
}

.quote-card p {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 19px;
    font-weight: 800;

    line-height: 1.5;
}


/* =========================================================
   VISIÓN
   ========================================================= */

.vision-card {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 25px;

    padding: 23px;

    background:
        linear-gradient(
            135deg,
            rgba(229,9,20,.10),
            #111
        );

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 15px;
}

.vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 53px;
    height: 53px;

    background: #090909;

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 13px;

    font-size: 24px;
}

.vision-card h3 {
    margin-bottom: 5px;

    color: #fff;

    font-size: 15px;
}

.vision-card p {
    color: #929292;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   PASOS
   ========================================================= */

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 14px;

    margin-top: 25px;
}

.step-card {
    position: relative;

    padding: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0c0c0c
        );

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 16px;

    transition: .25s ease;
}

.step-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--red),
            transparent
        );

    opacity: .5;
}

.step-card:hover {
    transform: translateY(-5px);

    border-color: rgba(229,9,20,.35);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35);
}

.step-card > span {
    position: absolute;

    top: 16px;
    right: 18px;

    color: #444;

    font-size: 11px;
    font-weight: 900;
}

.step-icon {
    margin-bottom: 16px;

    font-size: 28px;
}

.step-card h3 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 16px;
}

.step-card p {
    color: #858585;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   VENDER
   ========================================================= */

.selling-list {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 20px;
}

.selling-list > div {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 17px;

    background: #141414;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 13px;

    transition: .2s ease;
}

.selling-list > div:hover {
    border-color: rgba(229,9,20,.30);

    transform: translateX(3px);
}

.selling-list > div > strong {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--red-light),
            var(--red-dark)
        );

    border-radius: 9px;

    font-size: 10px;

    box-shadow:
        0 5px 15px rgba(229,9,20,.18);
}

.selling-list h3 {
    margin-bottom: 4px;

    color: #fff;

    font-size: 14px;
}

.selling-list p {
    color: #858585;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   COMISIONES
   ========================================================= */

.commission-card {
    display: flex;

    gap: 17px;

    margin-top: 25px;

    padding: 23px;

    background:
        linear-gradient(
            135deg,
            rgba(229,9,20,.12),
            #111
        );

    border: 1px solid rgba(229,9,20,.28);

    border-radius: 15px;
}

.commission-card > div {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 51px;
    height: 51px;

    background: #0a0a0a;

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 12px;

    font-size: 22px;
}

.commission-card h3 {
    margin-bottom: 5px;

    color: #fff;

    font-size: 16px;
}

.commission-card p {
    margin-bottom: 8px;

    color: #929292;

    font-size: 13px;

    line-height: 1.6;
}

.commission-card strong {
    color: #ff3b44;

    font-size: 13px;
}


/* =========================================================
   TÉRMINOS
   ========================================================= */

.legal-notice {
    margin-bottom: 25px;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(229,9,20,.12),
            #141414
        );

    border: 1px solid rgba(229,9,20,.28);

    border-left: 3px solid var(--red);

    border-radius: 13px;
}

.legal-notice strong {
    color: #ff3b44;

    font-size: 12px;
}

.legal-notice p {
    margin-top: 7px;

    color: #999;

    font-size: 13px;

    line-height: 1.6;
}

.legal-section {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 15px;

    padding: 21px 0;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.legal-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ff3b44;

    background: rgba(229,9,20,.10);

    border: 1px solid rgba(229,9,20,.20);

    border-radius: 10px;

    font-size: 10px;
    font-weight: 900;
}

.legal-section h3 {
    margin-bottom: 7px;

    color: #fff;

    font-size: 15px;
}

.legal-section p {
    color: #858585;

    font-size: 13px;

    line-height: 1.7;
}

.terms-footer {
    margin-top: 30px;

    padding: 27px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(229,9,20,.12),
            transparent 55%
        ),
        #0a0a0a;

    border: 1px solid rgba(229,9,20,.22);

    border-radius: 15px;
}

.terms-footer strong {
    color: #fff;

    font-size: 18px;
}

.terms-footer p {
    margin: 6px 0;

    color: #777;

    font-size: 13px;
}

.terms-footer span {
    color: #ff3b44;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 25px;
}

.faq details {
    overflow: hidden;

    background: #141414;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 12px;

    transition: .2s;
}

.faq details[open] {
    background: #111;

    border-color: rgba(229,9,20,.30);
}

.faq summary {
    padding: 18px;

    cursor: pointer;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";

    float: right;

    color: var(--red);

    font-size: 19px;

    transition: .2s;
}

.faq details[open] summary::after {
    content: "−";
}

.faq details p {
    padding: 0 18px 18px;

    color: #858585;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact-hero {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

    padding: 25px;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(229,9,20,.12),
            transparent 40%
        ),
        #141414;

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 16px;
}

.contact-big-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 59px;
    height: 59px;

    background: #0a0a0a;

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 14px;

    font-size: 26px;
}

.contact-hero h2 {
    margin-bottom: 5px;

    color: #fff;

    font-size: 18px;
}

.contact-hero p {
    color: #858585;

    font-size: 13px;

    line-height: 1.5;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 13px;
}

.contact-card {
    display: block;

    padding: 23px;

    color: inherit;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0d0d0d
        );

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    transition: .25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: rgba(229,9,20,.40);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35);
}

.contact-card > span {
    display: block;

    margin-bottom: 15px;

    font-size: 26px;
}

.contact-card h3 {
    margin-bottom: 6px;

    color: #fff;

    font-size: 14px;
}

.contact-card strong {
    display: block;

    margin-bottom: 7px;

    color: #ff3b44;

    font-size: 14px;
}

.contact-card p {
    color: #777;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SEGURIDAD
   ========================================================= */

.security-hero {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(229,9,20,.12),
            #111
        );

    border: 1px solid rgba(229,9,20,.28);

    border-radius: 16px;
}

.security-hero > div {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 59px;
    height: 59px;

    background: #090909;

    border: 1px solid rgba(229,9,20,.25);

    border-radius: 14px;

    font-size: 27px;
}

.security-hero h2 {
    margin-bottom: 5px;

    color: #fff;

    font-size: 18px;
}

.security-hero p {
    color: #858585;

    font-size: 13px;
}

.security-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 13px;
}

.security-card {
    padding: 22px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0d0d0d
        );

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    transition: .25s ease;
}

.security-card:hover {
    transform: translateY(-4px);

    border-color: rgba(229,9,20,.35);

    box-shadow:
        0 12px 30px rgba(0,0,0,.35);
}

.security-icon {
    margin-bottom: 13px;

    font-size: 25px;
}

.security-card h3 {
    margin-bottom: 6px;

    color: #fff;

    font-size: 14px;
}

.security-card p {
    color: #858585;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
   ========================================================= */

.info-footer {
    padding: 27px 20px;

    text-align: center;

    background: #050505;

    border-top: 1px solid rgba(229,9,20,.14);
}

.info-footer p {
    color: #555;

    font-size: 11px;

    letter-spacing: .3px;
}


/* =========================================================
   ANIMACIONES
   ========================================================= */

.info-content {
    animation: aparecer .45s ease;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 950px) {

    .info-container {
        grid-template-columns: 1fr;
    }

    .info-menu {
        position: static;

        display: flex;
        flex-wrap: wrap;

        gap: 5px;
    }

    .info-menu::before {
        display: none;
    }

    .info-menu h3 {
        width: 100%;
    }

    .info-menu a {
        margin: 0;
    }

    .info-cards,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 700px) {

    .info-header {
        padding: 14px 20px;
    }

    .info-main {
        padding: 25px 12px 55px;
    }

    .info-heading {
        padding: 35px 25px;
    }

    .info-heading h1 {
        font-size: 30px;
    }

    .info-body {
        padding: 30px 24px;
    }

    .steps-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .info-hero-card,
    .contact-hero,
    .security-hero {
        align-items: flex-start;
    }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 500px) {

    .info-header {
        flex-direction: column;
        align-items: stretch;

        gap: 13px;
    }

    .info-logo {
        text-align: center;
    }

    .info-logo h1 {
        font-size: 25px;
    }

    .btn-volver {
        width: 100%;
    }

    .info-menu {
        display: block;
    }

    .info-menu h3 {
        padding-bottom: 10px;
    }

    .info-menu a {
        width: 100%;
    }

    .info-heading {
        padding: 30px 20px;
    }

    .info-heading h1 {
        font-size: 26px;
    }

    .info-heading p {
        font-size: 13px;
    }

    .info-body {
        padding: 25px 18px;
    }

    .info-body > p {
        font-size: 13px;
    }

    .info-hero-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 22px;
    }

    .info-section-title h2 {
        font-size: 18px;
    }

    .quote-card {
        padding: 28px 24px;
    }

    .quote-card p {
        font-size: 16px;
    }

    .vision-card {
        align-items: flex-start;
    }

    .commission-card {
        flex-direction: column;
    }

    .legal-section {
        grid-template-columns: 38px 1fr;

        gap: 12px;
    }

    .legal-number {
        width: 35px;
        height: 35px;
    }
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #292929;

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}