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

:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --navy: #0f172a;
    --slate: #475569;
    --gray: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
}

.main-nav a:hover {
    color: var(--navy);
}

.header-actions,
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.13);
}

.button-secondary {
    color: var(--navy);
    border-color: var(--border);
    background: var(--white);
}

.button-light {
    color: var(--navy);
    background: var(--white);
}

.button-large {
    min-height: 52px;
    padding: 0 25px;
    font-size: 15px;
}

.hero {
    overflow: hidden;
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.14), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 74px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--green-dark);
}

.hero-description {
    max-width: 620px;
    margin: 28px 0 32px;
    color: var(--slate);
    font-size: 19px;
    line-height: 1.7;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: var(--slate);
    font-size: 13px;
    font-weight: 600;
}

.hero-points span::before {
    content: '✓';
    margin-right: 7px;
    color: var(--green-dark);
    font-weight: 800;
}

.dashboard-preview {
    padding: 12px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.16);
    transform: rotate(1.5deg);
}

.preview-topbar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border-bottom: 1px solid var(--border);
}

.preview-topbar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-content {
    min-height: 410px;
    display: grid;
    grid-template-columns: 88px 1fr;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px 17px;
    border-right: 1px solid var(--border);
    background: #f8fafc;
}

.preview-sidebar div {
    height: 10px;
    border-radius: 20px;
    background: #cbd5e1;
}

.preview-main {
    padding: 34px 28px;
}

.preview-title {
    width: 43%;
    height: 18px;
    margin-bottom: 28px;
    border-radius: 20px;
    background: var(--navy);
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.preview-cards div {
    height: 84px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}

.preview-chart {
    height: 190px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 25px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.preview-chart span {
    flex: 1;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--green), #86efac);
}

.products-section,
.process-section {
    padding: 105px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 48px;
}

.section-heading h2,
.cta-card h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.cta-card p {
    margin: 18px 0 0;
    color: var(--slate);
    font-size: 17px;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.product-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    transition: 180ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #bbf7d0;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.product-label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    color: #166534;
    background: #dcfce7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-label-soon {
    color: #475569;
    background: #f1f5f9;
}

.product-card h3 {
    margin: 24px 0 14px;
    font-size: 27px;
    letter-spacing: -0.025em;
}

.product-card p {
    min-height: 82px;
    margin: 0 0 25px;
    color: var(--slate);
    line-height: 1.7;
}

.product-card a {
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
}

.process-section {
    background: var(--gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-grid article {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.process-grid article > span {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}

.process-grid h3 {
    margin: 18px 0 10px;
    font-size: 18px;
}

.process-grid p {
    margin: 0;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
}

.cta-section {
    padding: 90px 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 58px;
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 10%, rgba(34, 197, 94, 0.5), transparent 35%),
        var(--navy);
}

.cta-card .eyebrow {
    color: #86efac;
}

.cta-card p {
    color: #cbd5e1;
}

.site-footer {
    padding: 42px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: var(--slate);
    font-size: 13px;
}

.footer-inner strong {
    color: var(--navy);
    font-size: 18px;
}

.footer-inner p {
    margin: 8px 0 0;
}

@media (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description,
    .section-heading {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

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

    .header-actions .button-secondary {
        display: none;
    }

    .header-actions .button-primary {
        min-height: 40px;
        padding: 0 14px;
    }

    .hero {
        padding: 75px 0 70px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .preview-content {
        min-height: 310px;
        grid-template-columns: 62px 1fr;
    }

    .preview-main {
        padding: 24px 16px;
    }

    .preview-cards {
        grid-template-columns: 1fr;
    }

    .preview-cards div:nth-child(n+2) {
        display: none;
    }

    .product-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .product-card p {
        min-height: auto;
    }

    .products-section,
    .process-section {
        padding: 75px 0;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 38px 28px;
    }

    .footer-inner {
        flex-direction: column;
    }
}

/* PRODUCTOS LINKOLITO — CORRECCIÓN */

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
}

.product-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-available {
    color: #15803d;
}

.status-available::before {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.status-early {
    color: #b45309;
}

.status-early::before {
    background: #f59e0b;
}

.product-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-top: 27px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.22);
}

.product-icon-dark {
    background: linear-gradient(135deg, #0f172a, #334155);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.2);
}

.product-icon-blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
}

.product-icon-purple {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.2);
}

.product-label-marketing {
    color: #334155;
    background: #e2e8f0;
}

.product-label-edu {
    color: #1d4ed8;
    background: #dbeafe;
}

.product-label-agency {
    color: #6d28d9;
    background: #ede9fe;
}

.product-features {
    display: grid;
    gap: 11px;
    min-height: 100px;
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 24px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 800;
}

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-link {
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.product-demo-link {
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.product-demo-link:hover,
.product-link:hover {
    color: #16a34a !important;
}

.product-card-wide {
    grid-column: 1 / -1;
    background:
        radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.14), transparent 36%),
        #ffffff;
}

.agency-card-content {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 70px;
}

.agency-card-content > div:first-child {
    max-width: 590px;
}

.agency-preview {
    padding: 13px;
    border: 1px solid #ddd6fe;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 55px rgba(76, 29, 149, 0.13);
    transform: rotate(1.5deg);
}

.agency-preview-header {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    border-bottom: 1px solid #ede9fe;
}

.agency-preview-header span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4b5fd;
}

.agency-preview-body {
    display: grid;
    gap: 12px;
    padding: 23px;
}

.agency-client {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid #ede9fe;
    border-radius: 13px;
    background: #fafafa;
}

.agency-client i {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    border-radius: 10px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.agency-client span {
    width: 60%;
    height: 10px;
    border-radius: 20px;
    background: #d8b4fe;
}

@media (max-width: 800px) {
    .agency-card-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .agency-preview {
        display: none;
    }
}

@media (max-width: 520px) {
    .product-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-features {
        min-height: auto;
    }

    .product-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/* PÁGINAS COMERCIALES DE PRODUCTOS */

.product-hero {
    overflow: hidden;
    padding: 75px 0 100px;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.13), transparent 32%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    align-items: center;
    gap: 70px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 33px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.product-breadcrumb a:hover {
    color: #16a34a;
}

.product-heading-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 23px;
    color: #166534;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-heading-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-size: 11px;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.2);
}

.product-hero h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(46px, 5.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.product-hero h1 span {
    color: #16a34a;
}

.product-hero-content > p {
    max-width: 650px;
    margin: 27px 0 32px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 29px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.product-proof span::first-letter {
    color: #16a34a;
}

.product-dashboard {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 36px 90px rgba(15, 23, 42, 0.16);
    transform: rotate(1deg);
}

.product-dashboard-top {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.dashboard-brand > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #ffffff;
    background: #22c55e;
    font-size: 9px;
    font-weight: 800;
}

.dashboard-user {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
}

.product-dashboard-body {
    min-height: 420px;
    display: grid;
    grid-template-columns: 72px 1fr;
}

.dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: 28px 18px;
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
}

.dashboard-menu i {
    height: 9px;
    border-radius: 20px;
    background: #cbd5e1;
}

.dashboard-area {
    padding: 29px 26px;
}

.dashboard-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title-row > div {
    width: 45%;
}

.dashboard-title-row span {
    display: block;
    width: 70%;
    height: 14px;
    border-radius: 20px;
    background: #0f172a;
}

.dashboard-title-row small {
    display: block;
    width: 45%;
    height: 8px;
    margin-top: 9px;
    border-radius: 20px;
    background: #cbd5e1;
}

.dashboard-title-row button {
    width: 86px;
    height: 32px;
    border: 0;
    border-radius: 9px;
    background: #22c55e;
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 25px;
}

.dashboard-stat-grid article {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
}

.dashboard-stat-grid small,
.dashboard-stat-grid strong,
.dashboard-stat-grid span {
    display: block;
}

.dashboard-stat-grid small {
    color: #64748b;
    font-size: 9px;
}

.dashboard-stat-grid strong {
    margin: 8px 0 5px;
    font-size: 20px;
}

.dashboard-stat-grid span {
    color: #16a34a;
    font-size: 8px;
}

.dashboard-data-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 13px;
    margin-top: 14px;
}

.dashboard-chart-card,
.digital-card-preview,
.attendance-card,
.family-list {
    min-height: 180px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.dashboard-chart-card {
    padding: 18px;
}

.chart-heading,
.mini-heading {
    display: block;
    width: 42%;
    height: 9px;
    border-radius: 20px;
    background: #cbd5e1;
}

.chart-bars {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    margin-top: 17px;
}

.chart-bars i {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(180deg, #22c55e, #86efac);
}

.digital-card-preview {
    padding: 18px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255,255,255,.24), transparent 30%),
        linear-gradient(145deg, #16a34a, #0f766e);
}

.digital-card-preview small,
.digital-card-preview strong {
    display: block;
}

.digital-card-preview strong {
    margin: 17px 0 4px;
    font-size: 14px;
}

.wallet-label {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.digital-card-progress {
    height: 5px;
    margin-top: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.25);
}

.digital-card-progress span {
    display: block;
    width: 80%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
}

.digital-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 9px;
}

.digital-card-footer i {
    width: 28px;
    height: 28px;
    background:
        repeating-linear-gradient(45deg, #fff 0 3px, transparent 3px 6px);
}

.product-benefits,
.product-feature-section,
.use-cases-section {
    padding: 105px 0;
}

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

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-grid article {
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
}

.benefit-number {
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
}

.benefit-grid h3 {
    margin: 20px 0 11px;
    font-size: 21px;
}

.benefit-grid p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.product-feature-section {
    background: #f8fafc;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 85px;
}

.feature-copy h2 {
    margin: 0;
    font-size: clamp(35px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.feature-copy > p {
    margin: 22px 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.feature-list {
    display: grid;
    gap: 13px;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 27px;
    color: #334155;
    line-height: 1.55;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 800;
}

.wallet-showcase {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.wallet-card {
    position: absolute;
    width: min(100%, 390px);
    min-height: 245px;
    padding: 27px;
    border-radius: 25px;
    color: #ffffff;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.2);
}

.wallet-card-back {
    transform: translate(35px, -35px) rotate(8deg);
    background: #0f172a;
    opacity: 0.75;
}

.wallet-card-front {
    background:
        radial-gradient(circle at 85% 5%, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(145deg, #22c55e, #15803d);
    transform: rotate(-3deg);
}

.wallet-card-heading,
.wallet-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallet-card-heading small,
.wallet-card-heading strong,
.wallet-person small,
.wallet-person strong,
.wallet-card-bottom small,
.wallet-card-bottom strong {
    display: block;
}

.wallet-card-heading strong {
    margin-top: 4px;
    font-size: 19px;
}

.wallet-card-heading > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255,255,255,.2);
    font-size: 11px;
    font-weight: 800;
}

.wallet-person {
    margin-top: 48px;
}

.wallet-person strong {
    margin-top: 5px;
    font-size: 22px;
}

.wallet-progress {
    height: 7px;
    margin: 24px 0;
    border-radius: 20px;
    background: rgba(255,255,255,.25);
}

.wallet-progress span {
    display: block;
    width: 80%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
}

.wallet-qr {
    width: 46px;
    height: 46px;
    background:
        repeating-linear-gradient(45deg, #ffffff 0 4px, transparent 4px 8px);
}

.use-cases-section {
    background: #ffffff;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.use-case-grid article {
    padding: 27px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
}

.use-case-grid span {
    font-weight: 800;
}

.use-case-grid p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.product-final-cta {
    padding: 45px 0 95px;
}

.product-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 55px;
    border-radius: 27px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 10%, rgba(34, 197, 94, .42), transparent 35%),
        #0f172a;
}

.product-final-card .eyebrow {
    color: #86efac;
}

.product-final-card h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.product-final-card p {
    margin: 16px 0 0;
    color: #cbd5e1;
}

/* ECLE */

.product-hero-ecle {
    background:
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.13), transparent 32%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.product-hero-ecle .product-heading-icon,
.product-dashboard-ecle .dashboard-brand > span,
.product-dashboard-ecle .dashboard-title-row button {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.product-dashboard-ecle .dashboard-stat-grid span {
    color: #0f766e;
}

.ecle-dashboard-lower {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 13px;
    margin-top: 14px;
}

.attendance-card,
.family-list {
    padding: 18px;
}

.attendance-circle {
    width: 105px;
    height: 105px;
    display: grid;
    place-content: center;
    margin: 20px auto 0;
    border-radius: 50%;
    background:
        radial-gradient(circle, #fff 55%, transparent 56%),
        conic-gradient(#14b8a6 0 74%, #e2e8f0 74% 100%);
    text-align: center;
}

.attendance-circle strong,
.attendance-circle small {
    display: block;
}

.attendance-circle strong {
    font-size: 20px;
}

.attendance-circle small {
    color: #64748b;
    font-size: 8px;
}

.family-list > div {
    display: grid;
    grid-template-columns: 30px 1fr 38px;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
}

.family-list i {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #ccfbf1;
}

.family-list b,
.family-list small {
    height: 8px;
    border-radius: 20px;
    background: #cbd5e1;
}

.family-list small {
    background: #99f6e4;
}

.product-feature-ecle {
    background: #f0fdfa;
}

.ecle-module-showcase {
    display: grid;
    gap: 13px;
}

.ecle-module-showcase article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 1px solid #ccfbf1;
    border-radius: 17px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 12px 30px rgba(15, 118, 110, .07);
}

.ecle-module-showcase article > span {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 11px;
    font-weight: 800;
}

.ecle-module-showcase strong,
.ecle-module-showcase small {
    display: block;
}

.ecle-module-showcase small {
    margin-top: 5px;
    color: #64748b;
}

@media (max-width: 980px) {
    .product-hero-grid,
    .product-feature-grid {
        grid-template-columns: 1fr;
    }

    .product-dashboard {
        max-width: 700px;
        margin: 0 auto;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .product-hero {
        padding: 48px 0 75px;
    }

    .product-hero h1 {
        font-size: 45px;
    }

    .product-hero-actions {
        flex-direction: column;
    }

    .product-hero-actions .button {
        width: 100%;
    }

    .product-dashboard-body {
        min-height: 340px;
        grid-template-columns: 48px 1fr;
    }

    .dashboard-menu {
        padding: 23px 10px;
    }

    .dashboard-area {
        padding: 22px 14px;
    }

    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stat-grid article:nth-child(n+2) {
        display: none;
    }

    .dashboard-data-grid,
    .ecle-dashboard-lower {
        grid-template-columns: 1fr;
    }

    .digital-card-preview,
    .attendance-card {
        display: none;
    }

    .product-benefits,
    .product-feature-section,
    .use-cases-section {
        padding: 75px 0;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .product-final-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 38px 28px;
    }
}

/* SOLICITUD DE DEMO */

.demo-page {
    min-height: calc(100vh - 76px);
    padding: 75px 0 100px;
    background:
        radial-gradient(circle at 82% 15%, rgba(34, 197, 94, 0.13), transparent 31%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.demo-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 80px;
}

.demo-copy {
    position: sticky;
    top: 115px;
}

.demo-copy h1 {
    margin: 0;
    font-size: clamp(44px, 5vw, 67px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.demo-copy h1 span {
    color: #16a34a;
}

.demo-copy > p {
    margin: 25px 0 36px;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.demo-benefits {
    display: grid;
    gap: 15px;
}

.demo-benefits article {
    display: flex;
    gap: 16px;
    padding: 19px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
}

.demo-benefits article > span {
    width: 37px;
    height: 37px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: #166534;
    background: #dcfce7;
    font-size: 11px;
    font-weight: 800;
}

.demo-benefits strong {
    font-size: 14px;
}

.demo-benefits p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.demo-form-card {
    padding: 38px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 75px rgba(15, 23, 42, 0.11);
}

.demo-form-heading > span {
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.demo-form-heading h2 {
    margin: 12px 0 8px;
    font-size: 29px;
    letter-spacing: -0.035em;
}

.demo-form-heading p {
    margin: 0 0 29px;
    color: #64748b;
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    color: #0f172a;
    background: #ffffff;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: 160ms ease;
}

.form-field input,
.form-field select {
    height: 48px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 130px;
    padding: 13px 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.form-error {
    color: #dc2626;
    font-size: 11px;
    font-weight: 700;
}

.demo-submit {
    width: 100%;
    margin-top: 25px;
    border: 0;
    cursor: pointer;
}

.demo-privacy {
    margin: 15px auto 0;
    max-width: 520px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.demo-success {
    min-height: 460px;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
}

.demo-success > span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #22c55e;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
}

.demo-success h2 {
    margin: 25px 0 11px;
    font-size: 31px;
    letter-spacing: -0.035em;
}

.demo-success p {
    max-width: 460px;
    margin: 0 0 27px;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 920px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .demo-copy {
        position: static;
    }
}

@media (max-width: 620px) {
    .demo-page {
        padding: 48px 0 75px;
    }

    .demo-copy h1 {
        font-size: 43px;
    }

    .demo-form-card {
        padding: 27px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }
}

/* MARKETING */

.product-hero-marketing {
    background:
        radial-gradient(circle at 82% 18%, rgba(15, 23, 42, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.heading-marketing {
    color: #334155;
}

.icon-marketing {
    background: linear-gradient(135deg, #0f172a, #334155);
}

.marketing-inbox-preview,
.edu-dashboard-preview,
.agency-dashboard-preview {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 35px 85px rgba(15, 23, 42, 0.15);
    transform: rotate(1deg);
}

.marketing-preview-header,
.edu-preview-header,
.agency-dashboard-header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    border-bottom: 1px solid #e2e8f0;
}

.marketing-preview-header > div,
.edu-preview-header > div,
.agency-dashboard-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marketing-preview-header span,
.edu-preview-header span,
.agency-dashboard-header span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #ffffff;
    background: #0f172a;
    font-size: 9px;
    font-weight: 800;
}

.marketing-preview-header i,
.edu-preview-header i,
.agency-dashboard-header i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
}

.marketing-preview-body {
    min-height: 410px;
    display: grid;
    grid-template-columns: 72px 1fr;
}

.marketing-preview-body aside,
.agency-dashboard-body aside {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: 27px 17px;
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
}

.marketing-preview-body aside span,
.agency-dashboard-body aside span {
    height: 9px;
    border-radius: 20px;
    background: #cbd5e1;
}

.conversation-list {
    padding: 27px;
}

.conversation-title {
    width: 35%;
    height: 14px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: #0f172a;
}

.conversation-list article {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 15px;
    margin-bottom: 11px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.conversation-list article > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.channel-whatsapp {
    background: #22c55e;
}

.channel-instagram {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.channel-web {
    background: #2563eb;
}

.conversation-list strong,
.conversation-list span {
    display: block;
}

.conversation-list strong {
    font-size: 12px;
}

.conversation-list span,
.conversation-list small {
    margin-top: 4px;
    color: #64748b;
    font-size: 9px;
}

.marketing-feature-section {
    background: #f8fafc;
}

.pipeline-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    align-items: start;
}

.pipeline-column {
    min-height: 310px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
}

.pipeline-column > strong {
    font-size: 12px;
}

.pipeline-column article {
    margin-top: 14px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.pipeline-column article span,
.pipeline-column article small {
    display: block;
    height: 8px;
    border-radius: 20px;
    background: #cbd5e1;
}

.pipeline-column article small {
    width: 58%;
    margin-top: 9px;
    background: #e2e8f0;
}

/* EDU */

.product-hero-edu {
    background:
        radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.heading-edu {
    color: #1d4ed8;
}

.icon-edu,
.edu-preview-header span {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.edu-preview-content {
    min-height: 410px;
    padding: 28px;
}

.edu-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.edu-statistics article {
    padding: 17px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #eff6ff;
}

.edu-statistics small,
.edu-statistics strong {
    display: block;
}

.edu-statistics small {
    color: #64748b;
    font-size: 9px;
}

.edu-statistics strong {
    margin-top: 8px;
    font-size: 21px;
}

.edu-table {
    margin-top: 18px;
    padding: 17px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
}

.edu-table-head {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.5fr;
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
}

.edu-table > div:not(.edu-table-head) {
    display: grid;
    grid-template-columns: 30px 1fr 0.6fr 0.4fr;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.edu-table i {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #dbeafe;
}

.edu-table > div span,
.edu-table > div small,
.edu-table > div b {
    height: 8px;
    border-radius: 20px;
    background: #cbd5e1;
}

.edu-table > div small {
    background: #bfdbfe;
}

.edu-table > div b {
    background: #86efac;
}

.edu-feature-section {
    background: #eff6ff;
}

.edu-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.edu-modules article {
    padding: 24px;
    border: 1px solid #bfdbfe;
    border-radius: 17px;
    background: #ffffff;
}

.edu-modules span,
.edu-modules strong,
.edu-modules small {
    display: block;
}

.edu-modules span {
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
}

.edu-modules strong {
    margin: 17px 0 7px;
    font-size: 18px;
}

.edu-modules small {
    color: #64748b;
    line-height: 1.5;
}

/* AGENCIAS */

.product-hero-agencies {
    background:
        radial-gradient(circle at 82% 18%, rgba(124, 58, 237, 0.15), transparent 34%),
        linear-gradient(180deg, #ffffff, #faf5ff);
}

.heading-agencies {
    color: #6d28d9;
}

.icon-agencies,
.agency-dashboard-header span {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.agency-dashboard-body {
    min-height: 410px;
    display: grid;
    grid-template-columns: 72px 1fr;
}

.agency-workspace {
    padding: 27px;
}

.agency-workspace-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agency-workspace-heading div {
    width: 34%;
    height: 14px;
    border-radius: 20px;
    background: #0f172a;
}

.agency-workspace-heading button {
    width: 82px;
    height: 31px;
    border: 0;
    border-radius: 9px;
    background: #7c3aed;
}

.agency-client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 22px;
}

.agency-client-grid article {
    padding: 15px;
    border: 1px solid #ede9fe;
    border-radius: 14px;
}

.agency-client-grid i {
    width: 31px;
    height: 31px;
    display: block;
    border-radius: 9px;
    background: #ddd6fe;
}

.agency-client-grid strong,
.agency-client-grid small {
    display: block;
}

.agency-client-grid strong {
    margin-top: 13px;
    font-size: 10px;
}

.agency-client-grid small {
    margin-top: 5px;
    color: #64748b;
    font-size: 8px;
}

.agency-calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.agency-calendar span {
    height: 54px;
    border-radius: 9px;
    background: #f3e8ff;
}

.agencies-feature-section {
    background: #faf5ff;
}

.approval-showcase {
    padding: 20px;
    border: 1px solid #e9d5ff;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(91, 33, 182, 0.11);
}

.approval-image > span {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.approval-image > div {
    height: 230px;
    margin-top: 13px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(124,58,237,.75), rgba(34,197,94,.55)),
        #e2e8f0;
}

.approval-actions {
    display: flex;
    gap: 11px;
    margin-top: 16px;
}

.approval-actions button {
    flex: 1;
    height: 42px;
    border: 1px solid #ddd6fe;
    border-radius: 10px;
    color: #6d28d9;
    background: #ffffff;
    font-weight: 700;
}

.approval-actions button:first-child {
    color: #ffffff;
    background: #7c3aed;
}

.approval-comment {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 15px;
    padding: 13px;
    border-radius: 11px;
    background: #faf5ff;
}

.approval-comment i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #c4b5fd;
}

.approval-comment span {
    width: 65%;
    height: 8px;
    border-radius: 20px;
    background: #d8b4fe;
}

@media (max-width: 680px) {
    .pipeline-showcase {
        grid-template-columns: 1fr;
    }

    .pipeline-column {
        min-height: auto;
    }

    .edu-statistics,
    .agency-client-grid {
        grid-template-columns: 1fr;
    }

    .edu-statistics article:nth-child(n+2),
    .agency-client-grid article:nth-child(n+2) {
        display: none;
    }

    .edu-modules {
        grid-template-columns: 1fr;
    }

    .marketing-preview-body,
    .agency-dashboard-body {
        grid-template-columns: 48px 1fr;
    }

    .conversation-list,
    .agency-workspace,
    .edu-preview-content {
        padding: 19px 14px;
    }

    .conversation-list article {
        grid-template-columns: 38px 1fr;
    }

    .conversation-list article small {
        display: none;
    }
}

/* REGISTRO DE INTERÉS */

.interest-page {
    min-height: calc(100vh - 76px);
    padding: 75px 0 100px;
    background:
        radial-gradient(circle at 82% 15%, rgba(124, 58, 237, 0.13), transparent 31%),
        linear-gradient(180deg, #ffffff, #faf5ff);
}

.interest-grid {
    display: grid;
    grid-template-columns: 0.87fr 1.13fr;
    align-items: start;
    gap: 80px;
}

.interest-copy {
    position: sticky;
    top: 115px;
}

.interest-status {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: #6d28d9;
    background: #ede9fe;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.interest-copy h1 {
    margin: 25px 0 0;
    font-size: clamp(43px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.interest-copy > p {
    margin: 24px 0 30px;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.interest-product-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #ddd6fe;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
}

.interest-product-card > span {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    font-size: 11px;
    font-weight: 800;
}

.interest-product-card small,
.interest-product-card strong {
    display: block;
}

.interest-product-card small {
    color: #64748b;
    font-size: 10px;
}

.interest-product-card strong {
    margin-top: 4px;
    font-size: 15px;
}

.interest-details {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.interest-details article {
    display: flex;
    gap: 13px;
    padding: 15px 0;
}

.interest-details article > span {
    width: 27px;
    height: 27px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #6d28d9;
    background: #ede9fe;
    font-size: 12px;
    font-weight: 800;
}

.interest-details strong {
    font-size: 14px;
}

.interest-details p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.interest-form-card {
    padding: 38px;
    border: 1px solid #e9d5ff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 75px rgba(91, 33, 182, 0.11);
}

.interest-success {
    min-height: 490px;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
}

.interest-success > span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #7c3aed;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
}

.interest-success h2 {
    margin: 25px 0 11px;
    font-size: 31px;
    letter-spacing: -0.035em;
}

.interest-success p {
    max-width: 470px;
    margin: 0 0 27px;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 920px) {
    .interest-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .interest-copy {
        position: static;
    }
}

@media (max-width: 620px) {
    .interest-page {
        padding: 48px 0 75px;
    }

    .interest-copy h1 {
        font-size: 42px;
    }

    .interest-form-card {
        padding: 27px 20px;
    }
}

/* SELECTOR DE MERCADO */

.market-selector {
    position: relative;
}

.market-selector summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.market-selector summary::-webkit-details-marker {
    display: none;
}

.market-selector[open] summary {
    border-color: #bbf7d0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.09);
}

.market-globe {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    color: #166534;
    background: #dcfce7;
    font-size: 17px;
    font-weight: 800;
}

.market-current {
    display: grid;
    gap: 1px;
    text-align: left;
}

.market-current small {
    color: #64748b;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}

.market-current strong {
    color: #0f172a;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.market-chevron {
    margin-left: 3px;
    color: #64748b;
    font-size: 13px;
}

.market-menu {
    width: 285px;
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    z-index: 100;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.17);
}

.market-menu-title {
    display: block;
    padding: 7px 9px 11px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.market-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    border-radius: 11px;
    transition: 160ms ease;
}

.market-menu > a:hover {
    background: #f8fafc;
}

.market-menu > a.is-active {
    background: #f0fdf4;
}

.market-menu > a span,
.market-menu > a strong,
.market-menu > a small {
    display: block;
}

.market-menu > a strong {
    color: #0f172a;
    font-size: 13px;
}

.market-menu > a small {
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
}

.market-menu > a b {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #ffffff;
    background: #22c55e;
    font-size: 11px;
}

.market-menu > p {
    margin: 9px 7px 4px;
    padding-top: 11px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 9px;
    line-height: 1.5;
}

@media (max-width: 1050px) {
    .market-current small {
        display: none;
    }

    .market-current strong {
        font-size: 10px;
    }

    .login-button {
        display: none;
    }
}

@media (max-width: 680px) {
    .market-selector summary {
        min-height: 40px;
        padding: 6px 9px;
    }

    .market-globe {
        width: 26px;
        height: 26px;
    }

    .market-current {
        display: none;
    }

    .market-chevron {
        display: none;
    }

    .market-menu {
        width: min(285px, calc(100vw - 28px));
        position: fixed;
        top: 75px;
        right: 14px;
    }

    .demo-header-button {
        min-height: 40px !important;
        padding: 0 13px !important;
        font-size: 12px !important;
    }
}

/* PÁGINA DE PRECIOS */

.pricing-hero {
    padding: 75px 0 85px;
    background:
        radial-gradient(circle at 78% 18%, rgba(34, 197, 94, 0.13), transparent 33%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.pricing-hero-inner {
    max-width: 870px;
    text-align: center;
}

.pricing-hero .product-breadcrumb {
    justify-content: center;
}

.pricing-hero h1 {
    margin: 0;
    font-size: clamp(47px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.pricing-hero h1 span {
    color: #16a34a;
}

.pricing-hero-inner > p {
    max-width: 720px;
    margin: 25px auto 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.pricing-market-summary {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 32px auto 0;
    padding: 13px 15px 13px 19px;
    border: 1px solid #dbe5dc;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.86);
    text-align: left;
}

.pricing-market-summary small,
.pricing-market-summary strong {
    display: block;
}

.pricing-market-summary small {
    color: #64748b;
    font-size: 10px;
}

.pricing-market-summary strong {
    margin-top: 3px;
    font-size: 13px;
}

.pricing-market-change {
    position: relative;
}

.pricing-market-change summary {
    color: #15803d;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.pricing-market-change summary::-webkit-details-marker {
    display: none;
}

.pricing-market-change > div {
    width: 210px;
    position: absolute;
    top: 31px;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 4px;
    padding: 9px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.pricing-market-change a {
    padding: 10px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-market-change a:hover,
.pricing-market-change a.is-active {
    background: #f0fdf4;
    color: #15803d;
}

.pricing-section {
    padding: 100px 0;
}

.pricing-section-ecle {
    background: #f8fafc;
}

.pricing-product-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.pricing-product-heading > div {
    display: flex;
    align-items: center;
    gap: 17px;
}

.pricing-product-heading small {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-product-heading h2 {
    margin: 0;
    font-size: 38px;
    letter-spacing: -0.045em;
}

.pricing-product-heading > p {
    max-width: 570px;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.pricing-product-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.club-pricing-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
    box-shadow: 0 13px 28px rgba(34, 197, 94, 0.22);
}

.ecle-pricing-icon {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    box-shadow: 0 13px 28px rgba(20, 184, 166, 0.22);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 20px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 31px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
}

.pricing-card-featured {
    border-color: #86efac;
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.12);
}

.pricing-card-ecle {
    border-color: #99f6e4;
    box-shadow: 0 25px 60px rgba(20, 184, 166, 0.12);
}

.pricing-popular {
    position: absolute;
    top: -13px;
    left: 25px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: #16a34a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card-ecle .pricing-popular {
    background: #0f766e;
}

.pricing-plan-type {
    color: #16a34a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card-header h3 {
    margin: 13px 0 10px;
    font-size: 28px;
    letter-spacing: -0.035em;
}

.pricing-card-header p {
    min-height: 68px;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin-top: 27px;
}

.pricing-price strong {
    font-size: clamp(37px, 4vw, 48px);
    letter-spacing: -0.055em;
}

.pricing-price span {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
}

.pricing-annual {
    min-height: 22px;
    margin: 9px 0 23px;
    color: #64748b;
    font-size: 12px;
}

.pricing-custom-price {
    min-height: 100px;
    display: grid;
    align-content: center;
    margin-top: 20px;
}

.pricing-custom-price strong,
.pricing-custom-price span {
    display: block;
}

.pricing-custom-price strong {
    font-size: 23px;
}

.pricing-custom-price span {
    margin-top: 7px;
    color: #64748b;
    font-size: 13px;
}

.pricing-button {
    width: 100%;
}

.pricing-divider {
    height: 1px;
    margin: 28px 0;
    background: #e2e8f0;
}

.pricing-includes-title {
    font-size: 13px;
}

.pricing-features {
    display: grid;
    gap: 12px;
    margin: 19px 0 28px;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 23px;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 800;
}

.implementation-price {
    margin-top: auto;
    padding: 17px;
    border-radius: 14px;
    background: #f8fafc;
}

.implementation-price small,
.implementation-price strong,
.implementation-price span {
    display: block;
}

.implementation-price small {
    color: #64748b;
    font-size: 10px;
}

.implementation-price strong {
    margin-top: 5px;
    font-size: 18px;
}

.implementation-price span {
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
}

.pricing-future-products {
    padding: 100px 0;
}

.future-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.future-pricing-grid article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 27px;
    border: 1px solid #e2e8f0;
    border-radius: 19px;
}

.future-product-icon {
    width: 45px;
    height: 45px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.future-marketing {
    background: #0f172a;
}

.future-edu {
    background: #2563eb;
}

.future-agencies {
    background: #7c3aed;
}

.future-pricing-grid small {
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.future-pricing-grid h3 {
    margin: 7px 0 9px;
    font-size: 19px;
}

.future-pricing-grid p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.future-pricing-grid a {
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
}

.pricing-notes {
    padding: 0 0 65px;
}

.pricing-notes-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    padding: 34px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #f8fafc;
}

.pricing-notes-card strong {
    font-size: 15px;
}

.pricing-notes-card p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .pricing-grid,
    .future-pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-header p {
        min-height: auto;
    }

    .pricing-product-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .pricing-hero {
        padding: 50px 0 70px;
    }

    .pricing-hero h1 {
        font-size: 47px;
    }

    .pricing-market-summary {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .pricing-market-change > div {
        left: 0;
        right: auto;
    }

    .pricing-section,
    .pricing-future-products {
        padding: 75px 0;
    }

    .pricing-product-heading h2 {
        font-size: 32px;
    }

    .pricing-card {
        padding: 27px 22px;
    }

    .pricing-notes-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* SELECTOR DE IDIOMA */

.language-selector {
    position: relative;
}

.language-selector summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.language-selector summary::-webkit-details-marker {
    display: none;
}

.language-selector[open] summary {
    border-color: #bfdbfe;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09);
}

.language-code {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.language-current {
    display: grid;
    gap: 1px;
    text-align: left;
}

.language-current small {
    color: #64748b;
    font-size: 9px;
    line-height: 1;
}

.language-current strong {
    color: #0f172a;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.language-menu {
    width: 210px;
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    z-index: 100;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.17);
}

.language-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    border-radius: 11px;
}

.language-menu > a:hover {
    background: #f8fafc;
}

.language-menu > a.is-active {
    background: #eff6ff;
}

.language-menu > a strong {
    color: #0f172a;
    font-size: 13px;
}

.language-menu > a b {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #2563eb;
    font-size: 11px;
}

@media (max-width: 1180px) {
    .language-current {
        display: none;
    }

    .language-selector summary {
        padding: 7px 9px;
    }
}

@media (max-width: 680px) {
    .language-selector summary {
        min-height: 40px;
        padding: 6px 8px;
    }

    .language-code {
        width: 26px;
        height: 26px;
    }

    .language-selector .market-chevron {
        display: none;
    }

    .language-menu {
        width: min(230px, calc(100vw - 28px));
        position: fixed;
        top: 75px;
        right: 14px;
    }
}
