/* =========================================================
   ILUSTRE CIGEM - STYLE.CSS
   Archivo limpio y unificado
========================================================= */

:root {
    --navy: #061a36;
    --blue: #0a2d5f;
    --blue2: #123f7f;
    --gold: #c99a36;
    --gold2: #f2cf80;
    --ink: #122039;
    --muted: #65738b;
    --light: #f5f8fc;
    --white: #ffffff;
    --line: #e7edf6;
    --shadow: 0 20px 50px rgba(6, 26, 54, 0.12);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--light);
    color: var(--ink);
}

img {
    max-width: 100%;
}

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

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

/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: var(--navy);
    color: #dce7f7;
    font-size: 13px;
    padding: 9px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: #ffffff;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 14px 7%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand strong {
    display: block;
    color: var(--blue);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #24324a;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #eef4ff;
    color: var(--blue);
}

.login,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
}

.login {
    background: var(--blue);
    color: #ffffff;
    padding: 12px 18px;
    white-space: nowrap;
}

.menu-toggle,
.menu-button {
    display: none;
}

/* =========================================================
   BOTONES
========================================================= */

.btn {
    padding: 15px 24px;
    border: 2px solid transparent;
    transition: 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(10, 45, 95, 0.22);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(10, 45, 95, 0.25);
}

.btn.secondary {
    border-color: var(--blue);
    color: var(--blue);
    background: #ffffff;
}

/* =========================================================
   HOME - HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 95px 7%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: center;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(201, 154, 54, 0.24),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #eef5ff 0%,
            #ffffff 52%,
            #f9fbff 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -38% -10%;
    height: 360px;
    background: var(--navy);
    transform: skewY(-4deg);
    z-index: 0;
}

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

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--gold);
}

h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.94;
    color: var(--blue);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 18px 0;
}

.hero p,
.section-head p,
.page-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 650px;
}

.stat {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(6, 26, 54, 0.06);
}

.stat strong {
    display: block;
    color: var(--blue);
    font-size: 28px;
}

.stat span {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.hero-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.seal {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f7faff, #ffffff);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 24px;
    margin-bottom: 22px;
}

.seal img {
    width: min(270px, 80%);
    filter: drop-shadow(0 18px 22px rgba(6, 26, 54, 0.18));
}

.panel-list {
    display: grid;
    gap: 12px;
}

.panel-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f4f8ff;
    padding: 15px;
    border-radius: 18px;
    font-weight: 800;
    color: var(--blue);
}

.panel-list div span {
    color: var(--gold);
}

/* =========================================================
   SECCIONES GENERALES
========================================================= */

section {
    padding: 82px 7%;
}

.section-head {
    text-align: center;
    margin: 0 auto 38px;
    max-width: 780px;
}

.section-head h2,
.page-hero h1 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    color: var(--blue);
    letter-spacing: -0.04em;
    margin: 12px 0;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(6, 26, 54, 0.07);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 18px;
}

.card h3 {
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 10px;
}

.card p,
.card li {
    color: var(--muted);
    line-height: 1.65;
}

.card ul {
    margin-left: 18px;
    margin-top: 12px;
}

/* =========================================================
   BAND
========================================================= */

.band {
    background: var(--navy);
    color: #ffffff;
}

.band .section-head h2,
.band .card h3 {
    color: #ffffff;
}

.band .section-head p {
    color: #cdd9ea;
}

.band .card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: none;
}

.band .card p,
.band .card li {
    color: #dbe5f4;
}

/* =========================================================
   FEATURE
========================================================= */

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.feature-box {
    background: #ffffff;
    border-radius: 34px;
    padding: 38px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.feature-box h2 {
    color: var(--blue);
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.feature-box p {
    color: var(--muted);
    line-height: 1.8;
}

.checklist {
    display: grid;
    gap: 13px;
    margin-top: 22px;
}

.checklist li {
    list-style: none;
    background: #f3f7ff;
    padding: 14px;
    border-radius: 16px;
    color: var(--blue);
    font-weight: 800;
}

/* =========================================================
   CTA GENERAL
========================================================= */

.cta {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: #ffffff;
    text-align: center;
    border-radius: 42px;
    margin: 82px 7%;
    padding: 65px 7%;
}

.cta h2 {
    font-size: 44px;
}

.cta p {
    margin: 14px auto 28px;
    color: #dce7f7;
    max-width: 660px;
    line-height: 1.7;
}

/* =========================================================
   PÁGINAS INTERNAS
========================================================= */

.page-hero {
    padding: 70px 7%;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
    border-bottom: 1px solid var(--line);
}

.page-content {
    padding: 70px 7%;
}

/* =========================================================
   CONTACTO / FORMULARIOS GENERALES
========================================================= */

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form {
    display: grid;
    gap: 14px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    font: inherit;
}

.form textarea {
    min-height: 140px;
}

/* =========================================================
   TABLAS
========================================================= */

.table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.table th {
    background: #eef4ff;
    color: var(--blue);
}

/* =========================================================
   VALORES - EL COLEGIO
========================================================= */

.values-list {
    display: grid;
    gap: 0;
    margin-top: 30px;
}

.value-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #d9e0e7;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item strong {
    font-size: 18px;
    color: #0f7fb5;
    font-weight: 800;
}

.value-item span {
    font-size: 20px;
    font-weight: 600;
    color: #172b4d;
}

/* =========================================================
   MEMBRESÍAS - FOTOGRAFÍAS
========================================================= */

.membership-photo {
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(6, 26, 54, 0.12);
}

.membership-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

/* =========================================================
   MEMBRESÍAS - AFILIACIÓN PRINCIPAL
========================================================= */

section.membership-join {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 30px 90px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    gap: 70px;
    align-items: center;
}

/* TARJETA DEL FORMULARIO */

.membership-join-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dfe6ef;
    border-radius: 28px;
    padding: 38px;

    box-shadow:
        0 10px 30px rgba(6, 26, 54, 0.07),
        0 30px 70px rgba(6, 26, 54, 0.08);
}

.membership-form-heading {
    margin-bottom: 28px;
}

.membership-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.membership-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.membership-form-heading h2 {
    margin: 10px 0 8px;
    color: var(--blue);
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.membership-form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* FORMULARIO */

.membership-form {
    width: 100%;
    display: block;
}

.membership-form-row {
    width: 100%;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.membership-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.membership-field label {
    display: block;
    color: #173257;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.membership-field label span {
    margin-left: 5px;
    color: #98a4b5;
    font-size: 11px;
    font-weight: 500;
}

/* INPUTS DEL FORMULARIO */

.membership-join-card .membership-form input[type="text"],
.membership-join-card .membership-form input[type="email"],
.membership-join-card .membership-form input[type="tel"] {
    display: block;
    width: 100%;
    height: 52px;

    margin: 0;
    padding: 0 15px;

    border: 1px solid #d3dce7;
    border-radius: 12px;

    background: #ffffff;
    color: var(--ink);

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;

    outline: none;

    appearance: none;
    -webkit-appearance: none;

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

.membership-join-card .membership-form input[type="text"]::placeholder,
.membership-join-card .membership-form input[type="email"]::placeholder,
.membership-join-card .membership-form input[type="tel"]::placeholder {
    color: #a7b0bd;
    opacity: 1;
}

.membership-join-card .membership-form input[type="text"]:hover,
.membership-join-card .membership-form input[type="email"]:hover,
.membership-join-card .membership-form input[type="tel"]:hover {
    border-color: #b7c5d4;
}

.membership-join-card .membership-form input[type="text"]:focus,
.membership-join-card .membership-form input[type="email"]:focus,
.membership-join-card .membership-form input[type="tel"]:focus {
    border-color: #1788b8;
    box-shadow: 0 0 0 4px rgba(23, 136, 184, 0.11);
}

/* CHECKBOX */

.membership-checkbox {
    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin: 4px 0 22px;
    padding: 14px 15px;

    background: #f7f9fc;

    border: 1px solid #e3e9f0;
    border-radius: 12px;

    cursor: pointer;
}

.membership-checkbox input {
    width: 17px;
    height: 17px;

    margin: 1px 0 0;

    flex: 0 0 auto;

    accent-color: #1484b3;
}

.membership-checkbox span {
    color: #59687b;
    font-size: 13px;
    line-height: 1.5;
}

/* BOTÓN */

.membership-submit {
    width: 100%;
    min-height: 54px;

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

    border: 0;
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--navy)
        );

    color: #ffffff;

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 14px 28px rgba(10, 45, 95, 0.18);

    transition: 0.2s ease;
}

.membership-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 18px 34px rgba(10, 45, 95, 0.23);
}

.membership-payment-note {
    margin: 12px 0 0;

    color: #8793a3;

    text-align: center;

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

/* =========================================================
   MEMBRESÍAS - LADO DERECHO
========================================================= */

.membership-join-info {
    width: 100%;
    max-width: 520px;
}

.membership-join-info h1 {
    margin: 14px 0 24px;

    color: var(--blue);

    font-size: clamp(58px, 6vw, 86px);
    font-weight: 900;

    line-height: 0.92;

    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.membership-join-intro {
    margin: 0;

    color: #42536a;

    font-size: 17px;
    line-height: 1.75;
}

.membership-mini-benefits {
    display: grid;
    gap: 20px;

    margin-top: 32px;
}

.membership-mini-benefit {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 14px;

    align-items: flex-start;
}

.membership-check {
    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: #1387b7;

    color: #ffffff;

    font-size: 15px;
    font-weight: 900;
}

.membership-mini-benefit strong {
    display: block;

    margin: 1px 0 4px;

    color: #132f55;

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

.membership-mini-benefit p {
    margin: 0;

    color: #6b7789;

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

/* SIGUIENTE PASO */

.membership-step-box {
    margin-top: 34px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid #e0e7ee;
    border-left: 4px solid #1387b7;

    border-radius: 4px 14px 14px 4px;

    box-shadow:
        0 8px 25px rgba(18, 47, 85, 0.05);
}

.membership-step-box > span {
    display: block;

    margin-bottom: 4px;

    color: #1387b7;

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

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.membership-step-box strong {
    display: block;

    color: #132f55;

    font-size: 16px;
}

.membership-step-box p {
    margin: 5px 0 0;

    color: #738094;

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

/* =========================================================
   MEMBRESÍAS - DUDAS
========================================================= */

.membership-help {
    max-width: 1180px;

    margin: 70px auto;

    padding: 38px 42px;

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

    gap: 30px;

    background: #eef4fa;

    border: 1px solid #e1e8f0;
    border-radius: 24px;
}

.membership-help h2 {
    margin: 9px 0 8px;

    color: var(--blue);

    font-size: 30px;
}

.membership-help p {
    margin: 0;

    color: var(--muted);

    line-height: 1.6;
}

.membership-help-actions {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}

.membership-help-email,
.membership-help-whatsapp {
    min-height: 48px;

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

    padding: 0 24px;

    border-radius: 999px;

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

.membership-help-email {
    background: #1184b5;
    color: #ffffff;
}

.membership-help-whatsapp {
    background: var(--blue);
    color: #ffffff;
}

/* =========================================================
   MEMBRESÍAS - CTA FINAL
========================================================= */

.membership-final-cta {
    max-width: 1180px;

    margin: 80px auto 100px;

    padding: 70px 40px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--navy)
        );

    border-radius: 30px;

    box-shadow:
        0 22px 55px rgba(6, 26, 54, 0.18);
}

.membership-label-light {
    color: #ffffff;
}

.membership-final-cta h2 {
    margin: 14px 0;

    color: #ffffff;

    font-size: clamp(48px, 7vw, 76px);
    font-weight: 900;

    line-height: 1;
}

.membership-final-cta p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.78);

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

.membership-final-cta > a {
    min-height: 52px;

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

    padding: 0 28px;

    border-radius: 999px;

    background: #ffffff;

    color: var(--blue);

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

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #031225;
    color: #ffffff;
    padding: 58px 7% 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 54px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
    display: block;
    color: #cbd7e8;
    line-height: 1.8;
    margin-bottom: 5px;
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    margin-top: 34px;
    padding-top: 20px;

    color: #91a3be;

    font-size: 13px;
    text-align: center;
}

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

@media (max-width: 1100px) {

    .site-header {
        gap: 18px;
    }

    .main-nav a {
        padding: 9px 9px;
        font-size: 13px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand small {
        font-size: 10px;
    }

}

@media (max-width: 980px) {

    .topbar {
        display: none;
    }

    .site-header {
        padding: 12px 5%;
        flex-wrap: wrap;
    }

    .menu-button {
        display: block;

        margin-left: auto;

        width: 44px;
        height: 44px;

        border-radius: 14px;

        background: #eef4ff;

        position: relative;

        cursor: pointer;
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
        content: "";

        position: absolute;

        left: 11px;
        right: 11px;

        height: 2px;

        background: var(--blue);

        transition: 0.2s;
    }

    .menu-button span {
        top: 21px;
    }

    .menu-button::before {
        top: 14px;
    }

    .menu-button::after {
        top: 28px;
    }

    .main-nav {
        display: none;

        order: 5;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        background: #ffffff;

        border-top: 1px solid var(--line);

        padding-top: 12px;
    }

    .menu-toggle:checked ~ .main-nav {
        display: flex;
    }

    .login {
        display: none;
    }

    .hero,
    .feature,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 65px 5%;
        min-height: auto;
    }

    .stats,
    .grid.four,
    .grid.three,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 520px;
        margin: auto;
    }

    section,
    .page-content,
    .page-hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .cta {
        margin-left: 5%;
        margin-right: 5%;
        border-radius: 28px;
    }

    h1 {
        font-size: 42px;
    }

    .brand strong {
        font-size: 17px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    section.membership-join {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 55px 5% 75px;
    }

    .membership-join-card {
        order: 2;
    }

    .membership-join-info {
        order: 1;

        max-width: 700px;
    }

    .membership-help {
        margin-left: 5%;
        margin-right: 5%;
    }

    .membership-final-cta {
        margin-left: 5%;
        margin-right: 5%;
    }

}

/* =========================================================
   RESPONSIVE - MÓVIL
========================================================= */

@media (max-width: 700px) {

    .membership-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .membership-join-card {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .membership-form-heading h2 {
        font-size: 27px;
    }

    .membership-join-info h1 {
        font-size: 54px;
    }

    .membership-join-intro {
        font-size: 15px;
    }

    .membership-help {
        padding: 30px 24px;

        flex-direction: column;

        align-items: flex-start;
    }

    .membership-help-actions {
        width: 100%;

        flex-direction: column;
    }

    .membership-help-email,
    .membership-help-whatsapp {
        width: 100%;
    }

    .membership-final-cta {
        padding: 50px 24px;
    }

    .membership-photo,
    .membership-photo img {
        min-height: 280px;
    }

    .value-item {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }

    .value-item span {
        font-size: 18px;
    }

}