@import url('https://fonts.googleapis.com/css2?family=Asta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --tone-1: #f8f5f0;
    --tone-2: #eadfce;
    --tone-3: #d8c7af;
    --tone-4: #666666;
    --tone-5: #884441;

    --bg-edge: #eadfce;
    --bg-edge-soft: #f1e9dd;
    --bg-mid: #f8f5f0;
    --bg-core: #ffffff;

    --text: var(--tone-4);
    --muted: rgba(102, 102, 102, 0.78);
    --title: var(--tone-4);
    --title-dark: var(--tone-5);

    --line: rgba(255, 255, 255, 0.72);
    --pill-bg: rgba(255, 255, 255, 0.46);
    --card-bg: rgba(248, 245, 240, 0.86);
    --badge-bg: var(--tone-5);

    --shadow-soft: 0 10px 30px rgba(136, 68, 65, 0.10);
    --shadow-pill: inset 0 1px 1px rgba(255, 255, 255, 0.92), 0 6px 18px rgba(136, 68, 65, 0.12);
    --shadow-card: 0 18px 45px rgba(136, 68, 65, 0.14);
    --shadow-soft-pill: -6px -6px 12px rgba(255, 255, 255, 0.92), 8px 10px 20px rgba(136, 68, 65, 0.12);

    --radius-pill: 999px;
    --radius-card: 40px;
    --radius-badge: 12px;

    --max-width: 1440px;
    --container-x: 25px;
    --header-height: 106px;
    --section-y: 75px;
    --section-gap: 75px;
    --divider-size: 15px;

    --store-height: 50px;
    --store-min-width: 180px;
    --store-gap: 20px;

    --font-sans: 'Asta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Asta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-title: var(--font-sans);
    --font-text: var(--font-secondary);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-text);
    color: var(--text);
    line-height: 1.45;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--header-height);
    background: var(--tone-1);
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--container-x);
    padding-right: var(--container-x);
    position: relative;
    z-index: 2;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px var(--container-x);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: transparent;
    transition:
        backdrop-filter 0.3s ease,
        -webkit-backdrop-filter 0.3s ease,
        background 0.3s ease;
}

.topbar.is-scrolled {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(248, 245, 240, 0.78);
}

.topbar-inner {
    position: relative;
    min-height: calc(var(--header-height) - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand {
    display: flex;
    justify-content: center;
}

.brand img {
    width: min(320px, 42vw);
    height: auto;
    object-fit: contain;
}

.lang-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.lang-pill,
.btn,
.pill-label {
    border-radius: var(--radius-pill);
    background: var(--pill-bg);
    box-shadow: var(--shadow-pill);
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 50px;
    padding: 6px;
}

.lang-toggle {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--title-dark);
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-pill);
    transition: background 0.2s ease, transform 0.2s ease;
}

.lang-toggle .lang-current {
    min-width: 42px;
    text-align: center;
}

.lang-toggle .lang-separator {
    opacity: 0.5;
}

.lang-toggle .lang-next {
    min-width: 42px;
    text-align: center;
    color: var(--title);
}

.lang-toggle .lang-icon {
    font-size: 14px;
    opacity: 0.75;
}

.hero {
    padding: var(--section-y) 0;
    position: relative;
    z-index: 2;
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    justify-content: center;
}


.how,
.access {
    padding: var(--section-y) 0;
    position: relative;
    z-index: 2;
    min-height: calc(100dvh - var(--header-height));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-copy {
    max-width: 840px;
    /* padding-left: 18px; */
}

.how {
    scroll-margin-top: var(--header-height);
}

h1,
h2,
h3,
.btn,
.pill-label,
.step-label,
.store-text strong,
.store-text small,
.social-title,
.early-title {
    font-family: var(--font-title);
}

h1 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--title-dark);
    max-width: 840px;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    line-height: 1.35;
    color: var(--title);
    max-width: 900px;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-highlight {
    margin: 25px 0;
}

.hero-highlight strong {
    display: block;
    font-family: var(--font-title);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--title-dark);
    margin-bottom: 8px;
}

.hero-highlight span {
    font-size: 20px;
    line-height: 1.35;
    color: var(--title);
    max-width: 900px;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-actions {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 350px;
}

.btn {
    width: 100%;
    height: 50px;
    padding: 20px;
    border: none;
    color: var(--title-dark);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.62);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0px;
    padding: 0 10px;
}

.phone-image {
    width: 275px;
    height: auto;
    object-fit: contain;
    display: block;
}

.store-inline,
.mid-download,
.bottom-download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--store-gap);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.store-inline {
    padding-top: var(--section-gap);
}

.mid-download,
.bottom-download {
    align-items: center;
}

.store-badge {
    min-width: var(--store-min-width);
    height: var(--store-height);
    border-radius: var(--radius-badge);
    background: var(--pill-bg);
    color: var(--title-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow-pill);
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-icon {
    width: 28px;
    display: flex;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    gap: 4px;
}

.store-text small {
    font-size: 9px;
    font-weight: 300;
    text-transform: none;
}

.store-text strong {
    font-size: 16px;
    font-weight: 500;
}

.steps {
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(136, 68, 65, 0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 18px;
    color: var(--title);
    flex: 0 0 auto;
}

.step-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--title);
}

.section-title {
    text-align: center;
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 700;
    color: var(--title-dark);
    margin: var(--section-gap) 0;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 75px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 20px;
    color: var(--title-dark);
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    width: -webkit-fill-available;
    gap: 15px;
}

.pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--title-dark);
    font-size: 20px;
}

.pill-label-text {
    display: inline-block;
    line-height: 1.1;
    font-size: 16px;
}

.content-card {
    width: 100%;
    min-height: 450px;
    border-radius: var(--radius-card);
    padding: 42px 34px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pill-bg);
    box-shadow: var(--shadow-pill);
}

.content-card p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--title);
    font-weight: 500;
}

.content-card strong {
    font-weight: 700;
}

.access-inner {
    min-height: calc(80dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.early-title,
.social-title {
    font-weight: 700;
    color: var(--title-dark);
}

.early-title {
    /* font-size: 40px; */
    font-size: 30px;
    margin-bottom: 40px;
}

.mail-icon {
    font-size: 22px;
    color: var(--title-dark);
    margin-bottom: 75px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--title-dark);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.mail-icon:hover {
    transform: translateY(-2px);
}

.social-title {
    font-size: 30px;
    /* font-size: 40px; */
    margin-bottom: 40px;
}

.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--title-dark);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

@media (max-width: 1350px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        max-width: 1000px;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
    }

    .steps,
    .blocks-grid {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .step {
        justify-content: center;
    }

    .blocks-grid {
        gap: 38px;
    }
}

@media (max-width: 980px) {
    :root {
        --section-y: 72px;
        --section-gap: 36px;
        --container-x: 20px;
        --header-height: 92px;
    }

    .topbar {
        padding: 10px var(--container-x) 8px;
    }

    .topbar-inner {
        min-height: 68px;
    }

    .brand img {
        width: min(220px, 52vw);
    }

    .lang-wrap {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-top: 0;
    }

    .lang-pill {
        min-width: 170px;
        height: 46px;
    }

    .lang-toggle {
        font-size: 14px;
        gap: 8px;
    }

    .phones-wrap {
        gap: 20px;
    }

    .phone-image {
        width: 220px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-highlight strong {
        font-size: 28px;
    }

    .hero-highlight span {
        font-size: 20px;
    }

    .step-label {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .content-card p {
        font-size: 17px;
    }

    .content-card {
        padding: 34px 24px;
    }

    .early-title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .social-title {
        margin-bottom: 20px;
        font-size: 28px;
    }
}

@media (max-width: 680px) {
    :root {
        --section-y: 50px;
        --section-gap: 50px;
        --container-x: 25px;
    }

    body {
        padding-top: var(--header-height);
    }

    .topbar-inner {
        justify-content: space-between;
        max-width: var(--max-width);
        padding: 0;
    }

    .brand {
        justify-content: flex-start;
    }

    .brand img {
        width: 170px;
    }

    .lang-wrap {
        position: static;
        transform: none;
        margin-left: auto;
    }

    .lang-pill {
        min-width: 118px;
        height: 42px;
        padding: 4px;
    }

    .lang-toggle {
        font-size: 13px;
        gap: 6px;
    }

    .lang-toggle .lang-current,
    .lang-toggle .lang-next {
        min-width: 28px;
    }

    h1 {
        font-size: 30px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-highlight strong {
        font-size: 22px;
    }

    .hero-highlight span {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-actions {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
    }

    .btn {
        min-height: 60px;
        font-size: 15px;
    }

    .phones-wrap {
        flex-direction: column;
        align-items: center;
    }

    .phone-image {
        width: min(280px, 82vw);
    }

    .step {
        gap: 15px;
        justify-content: start;
    }

    .step-label {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .pill-label {
        min-width: 100%;
        max-width: 360px;
        font-size: 15px;
        min-height: 60px;
        padding: 12px 18px;
    }

    .content-card {
        max-width: 100%;
    }

    .content-card p {
        font-size: 16px;
    }

    .store-inline,
    .mid-download,
    .bottom-download {
        align-items: center;
    }

    .store-badge {
        max-width: 250px;
        justify-content: flex-start;
    }

    .access-inner {
        padding-bottom: 20px;
    }

    .mail-icon {
        margin-bottom: 56px;
    }
}

.site-footer {
    position: relative;
    z-index: 2;
    padding: 25px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 500;
    color: var(--title-dark);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}

.footer-copy {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 500;
    color: var(--title);
}

@media (max-width: 680px) {
    .site-footer {
        padding: 24px 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .footer-brand img {
        width: 120px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-links a,
    .footer-copy {
        font-size: 13px;
    }
}

/* =========================
   páginas legales
========================= */

.legal-section {
    position: relative;
    z-index: 2;
    padding: 40px 0 70px;
}

.legal-section .container {
    max-width: var(--max-width);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-dark);
}

.legal-section h1,
.legal-section h2 {
    font-family: var(--font-title);
    color: var(--title-dark);
}

.legal-section h1 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.legal-section h2 {
    font-size: 20px;
    line-height: 1.2;
    margin: 28px 0 12px;
}

.legal-section p,
.legal-section li {
    font-size: 20px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.6;
}

.legal-section p+p {
    margin-top: 12px;
}

.legal-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.legal-section li+li {
    margin-top: 8px;
}

.legal-section strong {
    color: var(--title-dark);
}

.legal-section .intro {
    color: var(--muted);
    margin-bottom: 10px;
}

@media (max-width: 980px) {
    .legal-section h1 {
        font-size: 28px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 680px) {
    .legal-section {
        padding: 24px 0 50px;
    }

    .legal-section h1 {
        font-size: 24px;
    }

    .legal-section h2 {
        font-size: 17px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 15px;
    }
}

/* =========================
   contact
========================= */

.contact-page {
    position: relative;
    z-index: 2;
    padding: 100px 40px;
    min-height: calc(100dvh - var(--header-height));
}

.contact-page-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 20px;
    border-radius: var(--radius-pill);
    background: var(--pill-bg);
    box-shadow: var(--shadow-pill);
    color: var(--title-dark);
    text-transform: uppercase;
    font-weight: 700;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-page h1 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--title-dark);
    max-width: 680px;
    margin-bottom: 24px;
}

.contact-lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--title);
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 760px;
}

.contact-info-card {
    width: 100%;
    border-radius: var(--radius-card);
    padding: 34px 30px;
    background: var(--pill-bg);
    box-shadow: var(--shadow-pill);
}

.contact-info-card p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text);
    font-weight: 500;
}

.contact-info-card p+p {
    margin-top: 16px;
}

.contact-info-card a {
    color: var(--title-dark);
    font-weight: 700;
    word-break: break-word;
}

.contact-form-wrap {
    width: 100%;
}

.contact-form {
    width: 100%;
    border-radius: var(--radius-card);
    padding: 38px 34px;
    background: var(--pill-bg);
    box-shadow: var(--shadow-pill);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--title-dark);
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    resize: vertical;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), 0 6px 18px rgba(122, 98, 78, 0.08);
    padding: 16px 18px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 600;
    color: var(--title-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
    font-weight: 500;
}

.form-group textarea {
    min-height: 170px;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-note i {
    color: var(--title-dark);
    margin-top: 2px;
    flex: 0 0 auto;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
}

.contact-consent input {
    margin-top: 4px;
    flex: 0 0 auto;
    accent-color: var(--title-dark);
}

.contact-consent a {
    color: var(--title-dark);
    font-weight: 700;
}

.contact-submit {
    margin-top: 6px;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 1100px) {
    .contact-page-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 980px) {
    .contact-page h1 {
        font-size: 28px;
    }

    .contact-lead {
        font-size: 18px;
    }

    .contact-info-card p {
        font-size: 17px;
    }
}

@media (max-width: 680px) {
    .contact-page {
        padding: 24px 0 50px;
    }

    .contact-page h1 {
        font-size: 24px;
    }

    .contact-lead {
        font-size: 16px;
    }

    .contact-info-card,
    .contact-form {
        padding: 24px 20px;
        border-radius: 28px;
    }

    .contact-info-card p {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }

    .contact-note,
    .contact-consent {
        font-size: 14px;
    }
}