/* ============================================
   GRUPO FUTURO — PPC Landing Template v2
   Mobile-first · BEM · CSS Custom Properties
   Base = mobile. min-width queries = enhance.
   ============================================ */

:root {
    --c-navy: #0E2E3E;
    --c-navy-dark: #0A2231;
    --c-navy-light: #1A4257;
    --c-text: #1A1A1A;
    --c-text-soft: #4A4A4A;
    --c-turquoise: #B8E6DD;
    --c-turquoise-soft: #DBF2EE;
    --c-cream: #F5EDD8;
    --c-cream-soft: #FAF5E8;
    --c-white: #FFFFFF;
    --c-border: #E5E7E9;
    --c-error: #D63838;

    --font: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 24px;
    --sp-lg: 40px;
    --sp-xl: 64px;
    --sp-2xl: 96px;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(14, 46, 62, .06);
    --shadow-md: 0 4px 16px rgba(14, 46, 62, .1);
    --shadow-lg: 0 8px 32px rgba(14, 46, 62, .12);

    --ease: .2s ease;
}


/* ─── RESET ─── */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background-color: var(--c-white);
    padding-bottom: 72px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}


/* ─── SVG SPRITE (hidden) ─── */

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* ─── LAYOUT ─── */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-sm);
}

.container--narrow {
    max-width: 800px;
}


/* ─── BUTTONS ─── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-xs);
    padding: 14px 24px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-align: center;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--c-turquoise);
    color: var(--c-navy);
}

.btn--primary:hover {
    background-color: #9EDDD1;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    color: var(--c-navy);
    border: 2px solid var(--c-navy);
}

.btn--secondary:hover {
    background-color: var(--c-navy);
    color: var(--c-white);
}

.btn--white {
    background-color: var(--c-white);
    color: var(--c-navy);
}

.btn--white:hover {
    background-color: var(--c-turquoise-soft);
    transform: translateY(-1px);
}

.btn--outline-light {
    background-color: transparent;
    color: var(--c-white);
    border: 2px solid rgba(255, 255, 255, .5);
}

.btn--outline-light:hover {
    border-color: var(--c-white);
    background-color: rgba(255, 255, 255, .1);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--r-sm);
}

.btn--lg {
    padding: 14px 24px;
    font-size: 15px;
}

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

.btn__loading {
    display: none;
}

.btn.is-loading .btn__label {
    display: none;
}

.btn.is-loading .btn__loading {
    display: inline;
}


/* ─── URGENCY BAR ─── */

.urgency-bar {
    background-color: var(--c-navy);
    color: var(--c-white);
    padding: 10px 0;
    text-align: center;
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    flex-wrap: wrap;
}

.urgency-bar .icon {
    stroke: var(--c-turquoise);
}

.urgency-bar strong {
    color: var(--c-turquoise);
}


/* ─── HEADER ─── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
}

.header__logo {
    display: block;
    flex-shrink: 0;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-navy);
    white-space: nowrap;
}

.header__phone:hover {
    color: var(--c-navy-light);
}

.header__phone .icon {
    stroke: var(--c-navy);
}

.header__phone span {
    display: none;
}


/* ─── HIGHLIGHT ─── */

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: 6%;
    height: 32%;
    background-color: var(--c-turquoise);
    z-index: -1;
    border-radius: 50%;
    transform: rotate(-1.5deg);
    opacity: .85;
}


/* ─── HERO ─── */

.hero {
    padding: var(--sp-lg) 0 var(--sp-md);
    background-color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1600&h=900&fit=crop&q=70&auto=format') center / cover no-repeat;
    opacity: .2;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .5) 55%, rgba(255, 255, 255, .2) 100%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-navy-light);
    margin-bottom: var(--sp-xs);
}

.hero__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
    letter-spacing: -.02em;
}

.hero__bullets {
    list-style: none;
    margin-bottom: var(--sp-md);
}

.hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--c-text-soft);
}

.hero__bullets .icon {
    margin-top: 2px;
    stroke: var(--c-navy);
    width: 16px;
    height: 16px;
}

.hero__bullets strong {
    color: var(--c-text);
    font-weight: 600;
}

.hero__logos {
    margin-top: var(--sp-md);
    max-width: 380px;
}

.hero__logos img {
    width: 100%;
    height: auto;
}

.hero__image {
    order: -1;
}

.hero__image img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
}


/* ─── FEATURES STRIP ─── */

.features {
    background-color: var(--c-navy);
    padding: var(--sp-sm) 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xs);
}

.features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: var(--sp-xs) 4px;
}

.features__item .icon {
    color: var(--c-white);
    margin-bottom: 4px;
    width: 22px;
    height: 22px;
}

.features__item strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-white);
}

.features__item span {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}


/* ─── GENERIC SECTION ─── */

.section {
    padding: var(--sp-lg) 0;
}

.section--cream {
    background-color: var(--c-cream-soft);
}

.section--accent {
    background-color: var(--c-turquoise-soft);
}

.section--dark {
    background-color: var(--c-navy);
    color: var(--c-white);
}

.kicker {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-navy-light);
    margin-bottom: var(--sp-xs);
}

.kicker--center {
    text-align: center;
}

.section--dark .kicker {
    color: var(--c-turquoise);
}

.section--accent .kicker {
    color: var(--c-navy);
}

h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
    letter-spacing: -.01em;
}

.section__title--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-md);
}

.section--dark h2 {
    color: var(--c-white);
}

.section--accent h2 {
    color: var(--c-navy);
}

.lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text-soft);
    margin-bottom: var(--sp-md);
    max-width: 720px;
}

.lead--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.lead strong {
    color: var(--c-text);
    font-weight: 600;
}

.section__cta {
    text-align: center;
    margin-top: var(--sp-md);
}


/* ─── SPLIT LAYOUT ─── */

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    align-items: center;
}

.split__image {
    order: -1;
}

.split__image img {
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-height: 240px;
    object-fit: cover;
}


/* ─── CHECK LIST ─── */

.check-list {
    list-style: none;
    margin-bottom: var(--sp-md);
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-text-soft);
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--c-navy);
    font-size: 17px;
}


/* ─── MODULES ─── */

.modules {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
}

.module {
    background-color: var(--c-turquoise-soft);
    padding: var(--sp-sm);
    border-radius: var(--r-lg);
    transition: transform var(--ease), box-shadow var(--ease);
}

.module:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.module__code {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-navy);
    background-color: var(--c-turquoise);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: var(--sp-xs);
}

.module__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.3;
    margin-bottom: var(--sp-xs);
}

.module__data {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-xs);
    padding: var(--sp-xs);
    background-color: rgba(255, 255, 255, .6);
    border-radius: var(--r-sm);
}

.module__data div {
    display: flex;
    gap: 6px;
    font-size: 13px;
}

.module__data dt {
    font-weight: 600;
    color: var(--c-navy);
    white-space: nowrap;
}

.module__data dt::after {
    content: ':';
}

.module__data dd {
    color: var(--c-text-soft);
}

.module__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-text-soft);
}


/* ─── REQUISITOS ─── */

.requisitos {
    margin-top: var(--sp-md);
    padding: var(--sp-sm);
    background-color: var(--c-turquoise-soft);
    border-radius: var(--r-lg);
}

.requisitos__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: var(--sp-sm);
}

.requisitos .check-list {
    margin-bottom: var(--sp-sm);
}

.requisitos__note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text-soft);
    padding-top: var(--sp-sm);
    border-top: 1px solid rgba(14, 46, 62, .1);
}


/* ─── GALLERY ─── */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
}

.gallery__item {
    border-radius: var(--r-lg);
    overflow: hidden;
    background-color: var(--c-white);
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .3s ease;
}

.gallery__item:hover img {
    transform: scale(1.03);
}

.gallery__item figcaption {
    padding: var(--sp-xs);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--c-navy);
}


/* ─── INSTITUTIONAL LOGOS ─── */

.institutional-logos {
    margin-top: var(--sp-md);
    text-align: center;
}

.institutional-logos img {
    width: 100%;
    display: block;
    border-radius: var(--r-md);
}


/* ─── CONTACT GRID ─── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
    align-items: stretch;
    margin-top: var(--sp-md);
}

.contact-grid__card {
    background-color: var(--c-white);
    border-radius: var(--r-lg);
    padding: var(--sp-md);
    display: flex;
    flex-direction: column;
}

.contact-grid__card--alt {
    background-color: var(--c-cream-soft);
}

.contact-grid__heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-navy);
    text-align: center;
    margin-bottom: var(--sp-sm);
    padding-bottom: var(--sp-xs);
    border-bottom: 2px solid var(--c-turquoise);
}

.contact-grid__intro {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text-soft);
    text-align: center;
    margin-bottom: var(--sp-sm);
}

.contact-grid__phone {
    text-align: center;
    font-size: 14px;
    color: var(--c-text-soft);
    margin-top: var(--sp-md);
    padding-top: var(--sp-sm);
    border-top: 1px solid var(--c-border);
}

.contact-grid__phone a {
    font-weight: 600;
    color: var(--c-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-grid__footnote {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-navy);
    margin-top: var(--sp-lg);
}


/* ─── STEPS (ordered list inside card) ─── */

.steps {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-md);
}

.steps li {
    counter-increment: step;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 40px;
    position: relative;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--c-navy);
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.steps li strong {
    font-size: 14px;
    color: var(--c-text);
}

.steps li p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--c-text-soft);
}


/* ─── DOC DOWNLOAD ─── */

.doc-download {
    text-align: center;
}

.doc-download__note {
    margin-top: var(--sp-sm);
    font-size: 14px;
    color: var(--c-text-soft);
}


/* ─── SEND OPTIONS ─── */

.send-options {
    margin-top: var(--sp-md);
    padding-top: var(--sp-sm);
    border-top: 1px solid rgba(14, 46, 62, .1);
}

.send-options__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-xs);
}

.send-options__list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
}

.send-options__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-navy);
    font-weight: 600;
}


/* ─── FORM ─── */

.form {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form .btn {
    margin-top: auto;
}

.form__field {
    margin-bottom: var(--sp-sm);
}

.form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 4px;
}

.form__input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 2px solid var(--c-border);
    border-radius: var(--r-sm);
    background-color: var(--c-white);
    color: var(--c-text);
    transition: border-color var(--ease);
}

.form__input:focus {
    outline: none;
    border-color: var(--c-navy);
}

.form__input.is-invalid {
    border-color: var(--c-error);
}

.form__input::placeholder {
    color: #999;
    font-size: 14px;
}

.form__error {
    display: none;
    color: var(--c-error);
    font-size: 13px;
    margin-top: 4px;
}

.form__error.is-visible {
    display: block;
}

.form__field--checkbox {
    margin-bottom: var(--sp-sm);
}

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--c-text-soft);
    cursor: pointer;
}

.form__checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--c-navy);
    cursor: pointer;
}

.form__checkbox.is-invalid {
    outline: 2px solid var(--c-error);
    outline-offset: 1px;
}

.form__checkbox-label a {
    color: var(--c-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form__checkbox-label a:hover {
    color: var(--c-navy-dark);
}


/* ─── FAQ ─── */

.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: var(--sp-md);
}

.faq__item {
    background-color: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--ease);
}

.faq__item[open] {
    border-color: var(--c-navy);
    box-shadow: var(--shadow-sm);
}

.faq__q {
    list-style: none;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    cursor: pointer;
    position: relative;
    transition: color var(--ease);
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--c-navy);
}

.faq__item[open] .faq__q::after {
    content: '\2212';
}

.faq__a {
    padding: 0 16px 16px;
}

.faq__a p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--c-text-soft);
}

.faq__a a {
    color: var(--c-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ─── BANNER FINAL ─── */

.banner__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--sp-sm);
    text-align: center;
}

.banner__text {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: var(--sp-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

.banner__buttons {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.banner__buttons .btn {
    width: 100%;
    max-width: 320px;
}


/* ─── FOOTER ─── */

.site-footer {
    background-color: var(--c-navy-dark);
    color: rgba(255, 255, 255, .85);
    padding: var(--sp-md) 0;
    text-align: center;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-md);
}

.site-footer__brand img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.site-footer__legal {
    font-size: 12px;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, .7);
}

.site-footer__links {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}

.site-footer__links a:hover {
    color: var(--c-white);
}


/* ─── STICKY CTA (mobile) ─── */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 10px var(--sp-sm);
    background-color: var(--c-white);
    box-shadow: 0 -4px 16px rgba(14, 46, 62, .1);
    transform: translateY(100%);
    transition: transform .3s ease;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    font-size: 15px;
    padding: 14px;
}


/* ─── COOKIE BANNER ─── */

.cookie-banner {
    position: fixed;
    bottom: 80px;
    left: 8px;
    right: 8px;
    z-index: 200;
    background-color: var(--c-white);
    padding: var(--sp-sm);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    margin: 0 auto;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}


/* ─── ACCESSIBILITY ─── */

:focus-visible {
    outline: 3px solid var(--c-navy);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ============================================
   TABLET+ (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {

    .container {
        padding: 0 var(--sp-md);
    }

    body {
        padding-bottom: 0;
    }

    /* Urgency bar sticky */
    .urgency-bar {
        position: sticky;
        top: 0;
        z-index: 110;
        height: 44px;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .urgency-bar .container {
        font-size: 15px;
    }

    .site-header {
        top: 44px;
        padding: 14px 0;
    }

    .header__logo img {
        height: 52px;
    }

    .header__phone span {
        display: inline;
    }

    /* Hero */
    .hero {
        padding: var(--sp-xl) 0;
    }

    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-xl);
    }

    .hero__kicker {
        font-size: 13px;
    }

    .hero__title {
        font-size: clamp(32px, 4vw, 44px);
        margin-bottom: var(--sp-md);
    }

    .hero__bullets {
        margin-bottom: var(--sp-lg);
    }

    .hero__bullets li {
        font-size: 15px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hero__bullets .icon {
        width: 18px;
        height: 18px;
    }

    .hero__image {
        order: 0;
    }

    .hero__image img {
        max-height: none;
        border-radius: var(--r-xl);
    }

    /* Buttons */
    .btn--lg {
        padding: 18px 36px;
        font-size: 17px;
    }

    /* Features */
    .features {
        padding: var(--sp-md) 0;
    }

    .features__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-sm);
    }

    .features__item {
        padding: var(--sp-sm);
    }

    .features__item .icon {
        width: 28px;
        height: 28px;
    }

    .features__item strong {
        font-size: 16px;
    }

    .features__item span {
        font-size: 13px;
    }

    /* Sections */
    .section {
        padding: var(--sp-2xl) 0;
    }

    .kicker {
        font-size: 13px;
    }

    h2 {
        font-size: clamp(28px, 4vw, 40px);
        margin-bottom: var(--sp-md);
    }

    .section__title--center {
        margin-bottom: var(--sp-lg);
    }

    .lead {
        font-size: 17px;
        margin-bottom: var(--sp-lg);
    }

    .section__cta {
        margin-top: var(--sp-lg);
    }

    /* Split */
    .split {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-xl);
    }

    .split__image img {
        max-height: none;
        border-radius: var(--r-xl);
    }

    /* Check list */
    .check-list {
        margin-bottom: var(--sp-lg);
    }

    .check-list li {
        font-size: 17px;
        padding-left: 32px;
        margin-bottom: 14px;
    }

    .check-list li::before {
        font-size: 20px;
    }

    /* Modules */
    .modules {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-md);
        margin-top: var(--sp-lg);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .module {
        padding: var(--sp-md);
    }

    .module__title {
        font-size: 18px;
        margin-bottom: var(--sp-sm);
    }

    .module__data {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--sp-xs) var(--sp-md);
        margin-bottom: var(--sp-sm);
        padding: var(--sp-sm);
    }

    .module__data div {
        font-size: 14px;
    }

    .module__desc {
        font-size: 15px;
    }

    /* Requisitos */
    .requisitos {
        margin-top: var(--sp-lg);
        padding: var(--sp-md);
    }

    .requisitos__title {
        font-size: 18px;
    }

    /* Gallery */
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        margin-top: var(--sp-lg);
    }

    .gallery__item figcaption {
        padding: var(--sp-sm);
        font-size: 14px;
    }

    /* Institutional */
    .institutional-logos {
        margin-top: var(--sp-lg);
    }

    .institutional-logos img {
        max-height: 160px;
        object-fit: cover;
        object-position: top;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-lg);
        margin-top: var(--sp-lg);
    }

    .contact-grid__card {
        padding: var(--sp-lg);
    }

    .contact-grid__heading {
        font-size: 18px;
        margin-bottom: var(--sp-md);
    }

    .contact-grid__intro {
        font-size: 15px;
        margin-bottom: var(--sp-md);
    }

    /* Steps */
    .steps {
        gap: var(--sp-sm);
        margin-bottom: var(--sp-lg);
    }

    .steps li::before {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .steps li {
        padding-left: 48px;
    }

    .steps li strong {
        font-size: 15px;
    }

    .steps li p {
        font-size: 14px;
    }

    /* Send options */
    .send-options__list {
        flex-direction: row;
        gap: var(--sp-xs) var(--sp-md);
    }

    /* Form */
    .form__input {
        height: 44px;
    }

    /* FAQ */
    .faq__q {
        padding: 18px 50px 18px 24px;
        font-size: 16px;
    }

    .faq__q::after {
        right: 24px;
    }

    .faq__a {
        padding: 0 24px 20px;
    }

    .faq__a p {
        font-size: 15px;
    }

    /* Banner */
    .banner__title {
        font-size: clamp(24px, 3.5vw, 36px);
    }

    .banner__text {
        font-size: 17px;
        margin-bottom: var(--sp-lg);
    }

    .banner__buttons {
        flex-direction: row;
    }

    .banner__buttons .btn {
        width: auto;
        max-width: none;
    }

    /* Footer */
    .site-footer {
        padding: var(--sp-lg) 0;
    }

    .site-footer__brand img {
        height: 48px;
    }

    .site-footer__legal {
        font-size: 13px;
    }

    /* Sticky CTA hidden on tablet+ */
    .sticky-cta,
    .sticky-cta.is-visible {
        display: none;
    }

    /* Cookie banner */
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: var(--sp-md);
    }

    .cookie-banner p {
        font-size: 14px;
    }
}


/* ============================================
   DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {

    .container {
        padding: 0 var(--sp-lg);
    }

    .institutional-logos img {
        max-height: 180px;
    }
}
