@font-face {
    font-family: Vodafone;
    src: url('../fonts/vodafone-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Vodafone;
    src: url('../fonts/vodafone-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Vodafone;
    src: url('../fonts/vodafone-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Vodafone;
    src: url('../fonts/vodafone-extra-bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap
}

:root {
    --rojo: #E60000;
    --rojo-oscuro: #B30000;
    --rojo-suave: #FFF0F0;
    --negro: #0A0A0A;
    --gris-oscuro: #1C1C1C;
    --gris-medio: #4A4A4A;
    --gris-suave: #F5F5F5;
    --gris-borde: #E0E0E0;
    --blanco: #FFFFFF;
    --verde-ok: #1A7A4A;
    --wa: #25D366;
    --font-display: 'Vodafone', 'Poppins', sans-serif;
    --font-body: 'Vodafone', 'Poppins', sans-serif;
    --max-width: 1160px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 38px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .12)
}

::selection {
    background: var(--rojo);
    color: #fff
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--negro);
    background: var(--blanco);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

ul {
    list-style: none
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--negro);
    border-bottom: 3px solid var(--rojo)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.header__logo img {
    width: 32px;
    height: 32px
}

.header__logo span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .04em;
    color: var(--blanco)
}

.header__nav {
    display: flex;
    gap: 4px
}

.header__nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    padding: 6px 12px;
    transition: color .2s, background .2s
}

.header__nav a.active,
.header__nav a:hover {
    color: var(--blanco);
    border-bottom: 1px solid var(--rojo)
}

.header__tel {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--rojo);
    color: var(--blanco);
    font-weight: 800;
    font-size: 22px;
    padding: 6px 20px;
    border-radius: 50rem;
    transition: background .2s;
    white-space: nowrap
}

.header__tel:hover {
    background: var(--rojo);
    color: var(--blanco)
}

.header__tel .icon-primary-tel {
    width: 22px;
    height: 22px;
    transition: filter .2s
}

.header__tel:hover .icon-primary-tel {
    filter: brightness(0) invert(1)
}

.header__burger {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--rojo)
}

.header__burger svg {
    width: 24px;
    height: 24px
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--negro);
    min-height: 95vh;
    display: flex;
    align-items: center
}

.hero__photo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(135deg, black 15%, transparent 42%);
    mask-image: linear-gradient(135deg, black 15%, transparent 42%)
}

.hero__photo img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    object-position: top center
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(ellipse 90% 70% at 65% 40%, rgba(230, 0, 0, .22) 0, transparent 65%), radial-gradient(ellipse 50% 50% at 10% 90%, rgba(230, 0, 0, .1) 0, transparent 55%)
}

.hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 52px 52px
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    padding: 72px 0 80px;
    width: 100%
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rojo);
    color: var(--blanco);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .7);
    border-radius: 50%;
    animation: pulse-dot 1.6s ease-in-out infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .35;
        transform: scale(.6)
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -2px;
    color: var(--blanco);
    margin-bottom: 20px
}

.hero__title em {
    font-style: normal;
    color: var(--rojo)
}

.hero__platforms {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.hero__platforms-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 14px
}

.hero__platforms-logos {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.platform-logo {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 10px 18px;
    cursor: default;
    will-change: transform, box-shadow;
    animation: platform-glow 8s ease-in-out infinite;
    transition: transform .3s ease
}

.platform-logo:first-child {
    animation-delay: 0s
}

.platform-logo:nth-child(2) {
    animation-delay: 2s
}

.platform-logo:nth-child(3) {
    animation-delay: 4s
}

.platform-logo:nth-child(4) {
    animation-delay: 6s
}

@media (hover:hover) {
    .platform-logo:hover {
        transform: translateY(-7px) scale(1.08);
        background: rgba(255, 255, 255, .14);
        border-color: color-mix(in srgb, var(--glow) 65%, transparent);
        box-shadow: 0 14px 44px color-mix(in srgb, var(--glow) 55%, transparent), 0 0 0 1px color-mix(in srgb, var(--glow) 30%, transparent)
    }

    .platform-logo:hover img {
        filter: brightness(1.2) saturate(1.3)
    }
}

.platform-logo img {
    display: block;
    height: 54px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(.8) saturate(.8);
    border-radius: 5px;
    will-change: filter;
    animation: platform-glow-img 8s ease-in-out infinite;
    transition: filter .3s ease
}

.platform-logo:first-child img {
    animation-delay: 0s
}

.platform-logo:nth-child(2) img {
    animation-delay: 2s
}

.platform-logo:nth-child(3) img {
    animation-delay: 4s
}

.platform-logo:nth-child(4) img {
    animation-delay: 6s
}

.referral-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 200, 0, .08) 0, rgba(255, 120, 0, .08) 100%);
    border: 1px solid rgba(255, 180, 0, .25);
    border-radius: 16px;
    backdrop-filter: blur(8px)
}

.referral-banner__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0
}

.referral-banner__text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.referral-banner__text strong {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em
}

.referral-banner__text span {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4
}

.referral-banner__text em {
    font-style: normal;
    font-weight: 800;
    color: #ffd454;
    display: inline-block;
    animation: referral-pop 2.4s ease-in-out infinite
}

.referral-banner__text em:nth-of-type(2) {
    animation-delay: .4s
}

@keyframes referral-pop {

    0%,
    100%,
    55% {
        text-shadow: none
    }

    28% {
        text-shadow: 0 0 10px rgba(255, 212, 84, .6)
    }
}

@keyframes platform-glow {

    0%,
    100%,
    20% {
        background: rgba(255, 255, 255, .06);
        border-color: rgba(255, 255, 255, .1);
        box-shadow: none
    }

    10% {
        background: rgba(255, 255, 255, .13);
        border-color: color-mix(in srgb, var(--glow) 60%, transparent);
        box-shadow: 0 10px 40px color-mix(in srgb, var(--glow) 55%, transparent), 0 0 20px color-mix(in srgb, var(--glow) 30%, transparent)
    }
}

@keyframes platform-glow-img {

    0%,
    100%,
    20% {
        filter: brightness(.8) saturate(.8)
    }

    10% {
        filter: brightness(1.18) saturate(1.25)
    }
}

.price-card {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: var(--negro);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .06);
    position: relative;
    will-change: transform
}

.price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rojo);
    color: var(--blanco);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: .05em;
    text-transform: uppercase
}

.price-card__header {
    text-align: center;
    margin-bottom: 16px;
    padding-top: 8px
}

.price-card__mes {
    font-size: 12px;
    color: var(--gris-medio);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.price-card__before {
    font-size: 15px;
    color: var(--gris-medio);
    text-decoration: line-through;
    margin-bottom: 4px
}

.price-card__price {
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 800;
    line-height: 1;
    color: var(--negro);
    letter-spacing: -3px
}

.price-card__price sup {
    font-size: 28px;
    letter-spacing: 0;
    vertical-align: super;
    margin-right: 2px
}

.price-card__price sub {
    font-size: 20px;
    letter-spacing: 0;
    vertical-align: baseline
}

.price-card__unit {
    font-size: 13px;
    color: var(--gris-medio);
    margin-top: 6px
}

.price-card__divider {
    border: none;
    border-top: 1px solid var(--gris-borde);
    margin: 16px 0
}

.price-card__features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px
}

.price-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gris-oscuro)
}

.price-card__check {
    width: 18px;
    height: 18px;
    background: #e8f5ee;
    border-radius: 50%;
    color: var(--verde-ok);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    font-weight: 700
}

.price-card__note {
    font-size: 11px;
    color: var(--gris-medio);
    text-align: center;
    line-height: 1.5;
    margin-top: 12px
}

.price-card__countdown {
    display: none;
    background: var(--rojo-suave);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 16px;
    text-align: center
}

.price-card__countdown-label {
    font-size: 11px;
    color: var(--rojo);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.countdown-blocks {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center
}

.countdown-block {
    text-align: center;
    background: var(--rojo);
    color: var(--blanco);
    border-radius: 6px;
    padding: 5px 8px;
    min-width: 40px
}

.countdown-block .num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums
}

.countdown-block .lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .8
}

.countdown-sep {
    color: var(--rojo);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    line-height: 1
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.btn--primary {
    background: var(--rojo);
    color: var(--blanco);
    border-color: var(--rojo)
}

.btn--primary:hover {
    background: var(--rojo-oscuro);
    border-color: var(--rojo-oscuro);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(230, 0, 0, .4)
}

.btn--outline {
    background: 0 0;
    color: var(--blanco);
    border-color: rgba(255, 255, 255, .4)
}

.btn--outline:hover {
    border-color: var(--blanco);
    background: rgba(255, 255, 255, .08)
}

.btn--full {
    width: 100%
}

.btn--lg {
    font-size: 17px;
    padding: 17px 32px
}

.btn--loading {
    opacity: .7;
    pointer-events: none
}

.btn--loading::after {
    content: '';
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: var(--blanco);
    border-radius: 50%;
    animation: spin .6s linear infinite;
    display: inline-block;
    margin-left: 8px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.contacto {
    padding: 80px 0;
    background: var(--blanco)
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--rojo);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px
}

.contacto__info h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px
}

.contacto__info h2 em {
    font-style: normal;
    color: var(--rojo)
}

.contacto__info p {
    font-size: 16px;
    color: var(--gris-medio);
    line-height: 1.6;
    margin-bottom: 28px
}

.contacto__canales {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.canal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f3f3f3;
    border-radius: var(--radius-md);
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer
}

.canal:hover {
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, .08)
}

.canal__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blanco)
}

.canal__icon--tel {
    background: var(--rojo)
}

.canal__icon--wa {
    background: var(--wa)
}

.canal__icon svg {
    width: 20px;
    height: 20px
}

.canal__text strong {
    font-size: 14px;
    font-weight: 600;
    display: block
}

.canal__text span {
    font-size: 12px;
    color: var(--gris-medio)
}

.form-card {
    background: var(--gris-suave);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm)
}

.form-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px
}

.form-card__sub {
    font-size: 14px;
    color: var(--gris-medio);
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gris-oscuro);
    margin-bottom: 6px
}

.form-group label span {
    color: var(--rojo)
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gris-borde);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--negro);
    background: var(--blanco);
    transition: border-color .2s, box-shadow .2s;
    appearance: none
}

.form-group input:focus,
.form-group select:focus {
    outline: 0;
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, .005)
}

.form-group input.error {
    border-color: var(--rojo)
}

.form-group .form-error {
    font-size: 12px;
    color: var(--rojo);
    margin-top: 4px;
    display: none
}

.form-group .form-error.show {
    display: block
}

.form-consent {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0
}

.form-consent input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--rojo)
}

.form-consent label {
    font-size: 12px;
    color: var(--gris-medio);
    line-height: 1.5
}

.form-consent a {
    color: var(--rojo);
    text-decoration: underline
}

.form-consent .form-error {
    width: 100%;
    font-size: 12px;
    color: var(--rojo);
    display: none
}

.form-consent .form-error.show {
    display: block
}

.form-pot {
    display: none !important
}

.form-feedback {
    display: none;
    text-align: center;
    padding: 24px
}

.form-feedback.show {
    display: block
}

.form-feedback__icon {
    width: 56px;
    height: 56px;
    background: #e8f5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--verde-ok);
    font-size: 24px
}

.form-feedback__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px
}

.form-feedback__desc {
    font-size: 14px;
    color: var(--gris-medio)
}

.cta-final {
    background: var(--rojo);
    padding: 64px 0;
    text-align: center
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--blanco);
    letter-spacing: -1px;
    margin-bottom: 12px
}

.cta-final__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px
}

.cta-final__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.footer {
    background: var(--negro);
    color: #6e6e6e;
    padding: 32px 0
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.footer__logo img {
    width: 32px;
    height: 32px
}

.footer__logo span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .04em;
    color: var(--blanco)
}

.footer__links {
    display: flex;
    gap: 20px;
    font-size: 13px
}

.footer__links a {
    transition: color .2s
}

.footer__links a:hover {
    color: var(--blanco)
}

.footer__copy {
    font-size: 12px;
    color: #6e6e6e;
    text-align: left;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 16px
}

.faq {
    padding: 72px 0;
    background: var(--blanco)
}

.faq__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start
}

.faq .section-tag {
    display: inline-block;
    margin-bottom: 12px
}

.faq__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 40px
}

.faq__title em {
    color: var(--rojo);
    font-style: normal
}

.faq__list {
    width: 100%
}

.faq__image {
    position: sticky;
    top: 88px
}

.faq__image img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.faq__item {
    border-bottom: .0625rem solid var(--gris-oscuro)
}

.faq__item:first-child {
    border-top: .0625rem solid var(--gris-oscuro)
}

.faq__question-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.25;
    padding-bottom: 1rem;
    padding-top: 1rem
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: 0 0;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--negro);
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 400
}

.faq__icon {
    flex-shrink: 0;
    transition: transform .3s ease
}

.faq__item.open .faq__icon {
    transform: rotate(180deg)
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease
}

.faq__item.open .faq__answer {
    grid-template-rows: 1fr
}

.faq__answer-inner {
    overflow: hidden
}

.faq__answer p {
    margin: 0;
    font-size: 14px;
    color: var(--gris-medio);
    line-height: 1.7;
    padding-bottom: 18px;
    padding-left: 1rem;
    padding-right: 1rem
}

.float-phone-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 300;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--rojo);
    color: var(--blanco);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(230, 0, 0, .55);
    animation: phone-pulse 2.4s ease-in-out infinite;
    transition: transform .2s, background .2s
}

.float-phone-btn:hover {
    transform: scale(1.1);
    background: var(--rojo-oscuro)
}

.float-phone-btn svg {
    width: 26px;
    height: 26px
}

@keyframes phone-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(230, 0, 0, .55), 0 0 0 0 rgba(230, 0, 0, .4)
    }

    50% {
        box-shadow: 0 6px 24px rgba(230, 0, 0, .55), 0 0 0 16px rgba(230, 0, 0, 0)
    }
}

.float-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--negro);
    border-top: 2px solid var(--gris-borde);
    padding: 10px 16px;
    z-index: 200;
    gap: 10px
}

.float-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 14px
}

.btn--wa {
    background: var(--wa);
    color: #fff;
    border-color: var(--wa)
}

.btn--wa:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    border: 1px solid var(--rojo);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
    transform: translateY(28px) scale(.96);
    transition: transform .32s cubic-bezier(.34, 1.4, .64, 1), opacity .25s;
    opacity: 0;
    overflow: hidden;
    position: relative
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
    opacity: 1
}

.modal__header {
    text-align: center
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: var(--negro);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background .2s, transform .3s ease
}

.modal__close:hover {
    background: rgba(0, 0, 0, .22);
    transform: rotate(90deg)
}

.modal__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--negro)
}

.modal__subtitle {
    font-size: 24px;
    color: var(--gris-oscuro);
    margin-bottom: 4px
}

.modal__body {
    padding: 2rem 1rem 1rem
}

.modal-canal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid var(--gris-borde);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    color: inherit
}

.modal-canal:hover {
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, .08);
    transform: translateX(3px)
}

.modal-canal__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blanco)
}

.modal-canal__icon svg {
    width: 22px;
    height: 22px
}

.modal-canal__info {
    flex: 1;
    font-size: 22px
}

.modal-canal__info strong {
    font-weight: 600;
    display: block
}

.modal-canal__phone {
    color: var(--rojo);
    font-weight: 600
}

.modal-canal__arrow {
    color: var(--gris-medio);
    font-size: 20px;
    font-weight: 300;
    display: flex;
    align-items: center
}

.form-rounded-pill {
    background: #f3f3f3;
    border-radius: 2.375rem;
    margin: .25rem 0;
    padding: .5rem 1rem;
    position: relative
}

.form-rounded-pill .modal-canal {
    border: none;
    padding: 10px 4px;
    margin-bottom: 0
}

.form-rounded-pill .modal-canal:hover {
    border-color: transparent;
    box-shadow: none
}

.modal-form__row {
    display: flex
}

.modal-form__row input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1.5px solid var(--gris-borde);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--negro);
    background: var(--blanco);
    transition: border-color .2s, box-shadow .2s
}

.modal-form__row input:focus {
    outline: 0;
    border-color: var(--rojo);
    box-shadow: inset 0 0 0 1px rgba(230, 0, 0, .3)
}

.modal-form__row .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    min-width: 110px;
    white-space: nowrap;
    flex-shrink: 0
}

.modal-form__consent {
    font-size: 11px;
    color: var(--gris-medio);
    line-height: 1.5;
    margin-top: 10px
}

.modal-form__consent a {
    color: var(--rojo);
    text-decoration: underline
}

.modal-feedback {
    display: none;
    text-align: center;
    padding: 16px 0
}

.modal-feedback.show {
    display: block
}

.modal-feedback__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px
}

.modal-feedback__icon img {
    width: 64px;
    height: 64px
}

.modal-feedback__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px
}

.modal-feedback__desc {
    font-size: 16px;
    color: var(--gris-medio)
}

@media(max-width:1024px) {
    .hero__inner {
        grid-template-columns: 1fr
    }

    .hero__photo img {
        width: 80%
    }
}

@media(max-width:768px) {
    .hero__inner {
        padding: 40px 0 48px
    }

    .hero__photo {
        display: none
    }

    .contacto__inner {
        grid-template-columns: 1fr
    }

    .faq__inner {
        grid-template-columns: 1fr
    }

    .faq__image {
        position: static;
        order: -1
    }

    .header__logo span {
        display: none
    }

    .header__nav {
        display: none
    }

    .header__burger {
        display: flex
    }

    .header__tel span {
        display: none
    }

    .header__tel {
        padding: 8px 12px
    }

    .hero__platforms {
        margin-top: 28px;
        padding-top: 20px
    }

    .hero__platforms-logos {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between
    }

    .platform-logo {
        flex: 1;
        min-width: 0;
        padding: 8px 6px
    }

    .platform-logo img {
        height: 36px;
        max-width: 100%;
        margin: 0 auto
    }

    .float-cta {
        display: flex
    }

    .float-cta .btn {
        padding: 0
    }

    #CookiebotWidget:not(.CookiebotWidget-inactive) {
        bottom: 80px !important;
        left: 16px !important
    }

    .float-phone-btn {
        bottom: 80px;
        right: 16px
    }

    body {
        padding-bottom: 68px
    }

    .footer__inner {
        flex-direction: column;
        text-align: center
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center
    }

    .modal {
        max-width: 100%;
        border-radius: var(--radius-md) var(--radius-md) 0 0
    }

    .modal-overlay {
        align-items: flex-end;
        padding: 0
    }
}

.legal-page .header {
    position: relative
}

.legal-content {
    padding-top: 56px;
    padding-bottom: 80px;
    min-height: 60vh
}

.legal-article {
    max-width: 760px;
    margin: 0 auto
}

.legal-article h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 4px
}

.legal-updated {
    font-size: 13px;
    color: var(--gris-medio);
    margin-bottom: 40px
}

.legal-article h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--negro);
    margin-top: 36px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee
}

.legal-article li,
.legal-article p {
    font-size: .95rem;
    color: #444;
    line-height: 1.75
}

.legal-article ul {
    padding-left: 20px;
    margin: 10px 0
}

.legal-article li {
    margin-bottom: 6px
}

.legal-article a {
    color: var(--rojo);
    text-decoration: underline
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin: 16px 0 24px
}

.legal-table td,
.legal-table th {
    text-align: left;
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    vertical-align: top
}

.legal-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: var(--negro)
}

.legal-table td code {
    font-family: monospace;
    font-size: .85rem;
    background: #f0f0f0;
    padding: 1px 4px;
    border-radius: 3px
}

@media (max-width:600px) {
    .legal-table {
        display: block;
        overflow-x: auto
    }
}