/* =========================================================
   AlertaEmpresas — styles.css (FULL)
   Light “premium SaaS” + dark sticky header
   Pricing cards: 3 different colored backgrounds (WOW)
   ========================================================= */

/* ---------- Base + Design tokens ---------- */
:root {
    --bg: #f6f8ff;
    --surface: rgba(255, 255, 255, .78);
    --surface-2: rgba(255, 255, 255, .92);
    --stroke: rgba(15, 23, 42, .10);

    --text: rgba(11, 18, 32, .96);
    --muted: rgba(55, 65, 81, .90);
    --faint: rgba(55, 65, 81, .70);

    --primary: #2F6BFF;
    --primary-2: #7C3AED;
    /* accent */
    --ok: #10B981;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, .04), 0 1px 2px rgba(15, 23, 42, .06);
    --shadow-md: 0 12px 34px rgba(15, 23, 42, .08), 0 4px 8px rgba(15, 23, 42, .04);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, .12), 0 8px 16px rgba(15, 23, 42, .04);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);

    overflow-x: hidden;
    background: linear-gradient(160deg, #f8faff 0%, #e2e8ff 100%);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.icon {
    width: 18px;
    height: 18px;
}

/* Selection */
::selection {
    background: rgba(47, 107, 255, .20);
}

/* Focus */
:focus-visible {
    outline: 2px solid rgba(47, 107, 255, .60);
    outline-offset: 3px;
    border-radius: 10px;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 46px rgba(15, 23, 42, .12);
    border-color: rgba(47, 107, 255, .26);
    background: #fff;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-ghost {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .26);
    box-shadow: none;
}

/* Gold Button for Dark Header */
.header-dark .btn-primary {
    background: linear-gradient(135deg, #FACC15 0%, #EAB308 50%, #CA8A04 100%);
    color: #0B1B44;
    border: none;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.3);
}

.header-dark .btn-primary:hover {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.header-dark .btn-primary .icon {
    color: #0B1B44;
}

/* ---------- Header / Nav ---------- */
.header-dark {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0B1B44;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: 20px;
    color: #fff;
    transition: opacity .2s ease;
}

.brand:hover {
    opacity: .9;
}

.brand span.brand-text {
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, .8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.brand-text .weight-bold {
    font-weight: 700;
    -webkit-text-fill-color: #fff;
    /* Keeping Empresas solid for punch */
}

.logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #0B1B44 0%, #2563eb 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.logo svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 13px;
    font-weight: 650;
    color: rgba(255, 255, 255, .72);
    padding: 8px 10px;
    border-radius: 12px;
    transition: background .18s ease, color .18s ease;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, .96);
    background: rgba(255, 255, 255, .06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------- Sections ---------- */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

/* Prism Crystal Link Section Divider (V2 Spectacular) */
section:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 15%;
    right: 15%;
    height: 16px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(102, 126, 234, 0.03) 10%,
            rgba(102, 126, 234, 0.08) 50%,
            rgba(118, 75, 162, 0.03) 90%,
            transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 999px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: inset 0 0 15px rgba(102, 126, 234, 0.05);
    z-index: 2;
    overflow: hidden;
}

/* The Internal Laser Filament (Scanning light) */
section:not(:first-of-type)::before {
    background-image:
        linear-gradient(90deg,
            transparent 0%,
            rgba(102, 126, 234, 0.03) 20%,
            rgba(102, 126, 234, 0.1) 50%,
            rgba(118, 75, 162, 0.03) 80%,
            transparent 100%),
        linear-gradient(90deg,
            transparent 0%,
            rgba(47, 107, 255, 0) 40%,
            rgba(47, 107, 255, 0.4) 50%,
            rgba(47, 107, 255, 0) 60%,
            transparent 100%);
    background-size: 200% 100%;
    animation: prismScan 6s linear infinite;
}

/* The Holographic Centerpiece (The Node) */
section:not(:first-of-type)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(102, 126, 234, 0.3);
    border-radius: 999px;
    box-shadow:
        0 10px 25px -5px rgba(102, 126, 234, 0.2),
        0 0 15px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 10;
}

/* Outer Holographic Halo */
section:not(:first-of-type) .divider-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border: 1px dashed rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: rotateHalo 20s linear infinite;
    pointer-events: none;
}

section:not(:first-of-type) .divider-glow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow:
        0 0 15px 2px #6366f1,
        0 0 30px 5px rgba(99, 102, 241, 0.4);
    animation: corePulse 2s ease-in-out infinite;
    z-index: 11;
}

@keyframes prismScan {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes rotateHalo {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes corePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
}

.text-center {
    text-align: center;
}

.text-center .eyebrow {
    justify-content: center;
}

.text-center .section-sub {
    margin-left: auto;
    margin-right: auto;

}

section#producto {
    padding-top: 50px;
}

section#precios {
    padding: 50px 0 !important;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 850;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
}

.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #2563eb;
    margin-bottom: 12px;
}

.highlight {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-sub {
    margin-top: 16px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* ---------- Hero ---------- */
.hero {
    padding-top: 60px;
    padding-bottom: 80px;
}



.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.06);
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

.badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #7C3AED 0%, #2F6BFF 55%, #0EA5E9 100%);
    box-shadow: 0 0 0 6px rgba(47, 107, 255, .12);
}

.h1 {
    margin-top: 16px;
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 980;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.grad {
    background: linear-gradient(90deg, #2F6BFF 0%, #7C3AED 55%, #0EA5E9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    margin-top: 16px;
    max-width: 72ch;
    color: rgba(55, 65, 81, .92);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.micro {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: rgba(55, 65, 81, .86);
    font-size: 13px;
}

.micro span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.trust {
    margin-top: 18px;
    padding: 16px 16px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
    display: grid;
    gap: 10px;
}

.trust b {
    font-size: 13px;
    letter-spacing: -.01em;
}

.trust span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(55, 65, 81, .88);
    font-size: 13px;
}

/* ---------- Preview card (product mock) ---------- */
.preview {
    position: relative;
    border-radius: 32px;
    background: #ffffff;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow:
        0 30px 60px -15px rgba(102, 126, 234, 0.25),
        0 10px 30px -10px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    color: #0f172a;
}

.preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.08), transparent 60%);
    pointer-events: none;
}

.preview-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.15);
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.03), transparent);
}

.preview-top .status-pills {
    display: flex;
    gap: 8px;
}

.preview-top .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    border-radius: 999px;
    color: #4f46e5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow:
        0 4px 12px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.preview-top .status-badge:hover {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.15);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: #6366f1;
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.3));
}

.preview-body {
    padding: 24px;
}

.kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.box {
    padding: 16px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 8px 16px -4px rgba(102, 126, 234, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.box.active {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    box-shadow:
        0 12px 30px -8px rgba(102, 126, 234, 0.35),
        0 0 0 1px rgba(102, 126, 234, 0.2) inset;
}

.box.active .num {
    color: #667eea;
    position: relative;
    display: inline-block;
}

.box.active .num::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -10px;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.num {
    display: block;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #1e293b;
}

.lbl {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.alerts-container {
    position: relative;
    min-height: 160px;
}

.alert-set {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.alert-set.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #ffffff;
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px -2px rgba(102, 126, 234, 0.1);
}

.alert:hover {
    background: #fafafa;
    border-color: rgba(102, 126, 234, 0.35);
    transform: translateX(4px);
    box-shadow: 0 8px 20px -4px rgba(102, 126, 234, 0.2);
}

.alert::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 0 4px 4px 0;
}

.alert.critical::after {
    background: #ef4444;
}

.alert.warning::after {
    background: #f59e0b;
}

.alert.info::after {
    background: #3b82f6;
}

.tag {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.alert .title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.alert .meta {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.preview-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid rgba(102, 126, 234, 0.12);
}

.preview-footer .pill {
    padding: 6px 10px;
    background: transparent;
    border: 1.5px solid rgba(102, 126, 234, 0.25);
    color: #667eea;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* ---------- Product cards ---------- */
.grid-3 {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card {
    position: relative;
    border-radius: 26px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, .12);
    border-color: rgba(47, 107, 255, .18);
}

.card::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: radial-gradient(520px 220px at 20% 0%, rgba(47, 107, 255, .12), transparent 70%);
    opacity: .9;
}

.card>* {
    position: relative;
    z-index: 1;
}

.cap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    color: rgba(11, 18, 32, .86);
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(15, 23, 42, .08);
}

.card h3 {
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ---------- Icon boxes (spectacular!) ---------- */
.icon-box {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow:
        0 10px 30px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    overflow: visible;
}

.icon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
    opacity: 1;
    z-index: 0;
    border-radius: 20px;
}



.icon-box svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    color: #ffffff;
    fill: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

/* Unique gradient for each card */
.card:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow:
        0 10px 30px rgba(102, 126, 234, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.card:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow:
        0 10px 30px rgba(240, 147, 251, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.card:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow:
        0 10px 30px rgba(79, 172, 254, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* Hover effects removed as requested */

/* Pulsing glow animation */
@keyframes iconGlow {

    0%,
    100% {
        box-shadow:
            0 20px 40px -10px rgba(59, 130, 246, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset,
            0 10px 20px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow:
            0 25px 50px -10px rgba(59, 130, 246, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3) inset,
            0 15px 30px rgba(0, 0, 0, 0.15),
            0 0 40px rgba(59, 130, 246, 0.4);
    }
}

/* Gradient shift animation for the glow */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* ---------- Selfserve split cards ---------- */
.selfserve {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ss {
    border-radius: 26px;
    padding: 18px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.ss::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        radial-gradient(520px 220px at 18% 0%, rgba(47, 107, 255, .12), transparent 70%),
        radial-gradient(520px 220px at 90% 10%, rgba(124, 58, 237, .10), transparent 75%);
    opacity: .95;
}

.ss>* {
    position: relative;
    z-index: 1;
}

.ss h3 {
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.ss p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.mini {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mini span {
    font-size: 12px;
    font-weight: 750;
    color: rgba(11, 18, 32, .78);
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

/* ---------- Steps ---------- */
.steps {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.step {
    border-radius: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow-md);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 74px rgba(15, 23, 42, .12);
    border-color: rgba(47, 107, 255, .16);
}

.step .n {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 950;
    color: rgba(255, 255, 255, .94);
    background: linear-gradient(135deg, #2F6BFF, #7C3AED);
    box-shadow: 0 18px 44px rgba(47, 107, 255, .22);
}

.step h4 {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.step p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

/* Steps icon boxes - unique gradients for each step */
.step:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow:
        0 10px 30px rgba(102, 126, 234, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.step:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow:
        0 10px 30px rgba(240, 147, 251, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.step:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow:
        0 10px 30px rgba(79, 172, 254, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.step:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow:
        0 10px 30px rgba(67, 233, 123, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* ---------- Use cases lists ---------- */
.usecases {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.list {
    border-radius: 28px;
    padding: 32px;
    background: #ffffff;
    border: 1.5px solid rgba(102, 126, 234, 0.12);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.list:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.25);
}

.list::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(102, 126, 234, 0.03), transparent 60%);
}

.list>* {
    position: relative;
    z-index: 1;
}

.list ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 16px;
}

.li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    color: #667eea;
    flex-shrink: 0;
}

.li b {
    display: block;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #1e293b;
}

.li span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.55;
}

/* ---------- PRICING (WOW — colored backgrounds per plan) ---------- */
.pricing {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* Base card */
.price {
    position: relative;
    border-radius: 30px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .26);
    box-shadow: 0 34px 96px rgba(15, 23, 42, .16);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    color: rgba(255, 255, 255, .92);
}

/* Glass inner */
.price::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    opacity: .95;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Glow */
.price::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    opacity: 1;
    filter: blur(0px);
}

/* Lift */
.price:hover {
    transform: translateY(-8px);
    box-shadow:
        0 40px 100px rgba(15, 23, 42, 0.18),
        0 12px 24px rgba(15, 23, 42, 0.08);
}

.price>* {
    position: relative;
    z-index: 2;
}

.price h3 {
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.price .who {
    margin-top: 6px;
    color: rgba(255, 255, 255, .80);
    font-size: 13px;
    line-height: 1.55;
}

.price .amount {
    margin-top: 16px;
    font-size: 52px;
    font-weight: 980;
    letter-spacing: -.04em;
    line-height: 1;
}

.price .per {
    margin-top: 6px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.price .features {
    list-style: none;
    padding: 0;
    margin: 16px 0 18px;
    display: grid;
    gap: 12px;
}

.price .features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.55;
}

.price .features .icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    opacity: .92;
}

/* Pricing buttons on colored cards */
.price .btn {
    background: rgba(255, 255, 255, .92);
    color: rgba(11, 18, 32, .92);
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.price .btn:hover {
    background: #fff;
    border-color: rgba(255, 255, 255, .46);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
}

/* Recommended pill */
.price .pill {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Starter (Classic Corporate Blue) --- */
.price-starter {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.price-starter::after {
    background:
        radial-gradient(circle at 15% 15%, rgba(47, 107, 255, 0.15), transparent 70%),
        radial-gradient(circle at 85% 85%, rgba(0, 0, 0, 0.2), transparent 70%);
}

/* --- Growth (Distinct Royal Purple) --- */
.price-growth {
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 100%);
}

.price-growth::after {
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.2), transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.25), transparent 70%);
}

/* Featured gets a ring + more lift */
.price.featured {

    box-shadow: 0 60px 160px rgba(124, 58, 237, .22);
}

.price.featured:hover {
    transform: translateY(-12px);
}

.price.featured {
    outline: 2px solid rgba(255, 255, 255, .22);
    outline-offset: 0px;
}

/* --- Business (Midnight Executive Graphite) --- */
.price-business {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.price-business::after {
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05), transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.4), transparent 70%);
}

/* ---------- FAQ ---------- */
.faq {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

details {
    border-radius: 22px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow-md);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

details:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 74px rgba(15, 23, 42, .12);
    border-color: rgba(47, 107, 255, .16);
}

summary {
    cursor: pointer;
    font-weight: 900;
    letter-spacing: -.02em;
    font-size: 13px;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* ---------- CTA (Corporate WOW Version) ---------- */
.cta {
    border-radius: 44px;
    padding: 80px 60px;
    background: #ffffff;
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    box-shadow:
        0 40px 120px -20px rgba(102, 126, 234, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    position: relative;
    text-align: left;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(102, 126, 234, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(118, 75, 162, 0.04) 0%, transparent 40%);
}

/* Vertical Beam Accent */
.cta::after {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #667eea, #764ba2, transparent);
    border-radius: 0 4px 4px 0;
    opacity: 0.8;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content .eyebrow {
    margin-bottom: 20px;
    letter-spacing: 0.3em;
}

.cta .section-title {
    color: #1e293b;
    font-size: clamp(34px, 5vw, 48px);
    margin: 0;
}

.cta p {
    margin-top: 20px;
    color: #475569;
    font-size: 17px;
    line-height: 1.6;
    max-width: 90%;
}

/* Trust Pillars */
.cta-trust {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1.5px solid rgba(102, 126, 234, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item svg {
    width: 14px;
    height: 14px;
    color: #10b981;
}

.trust-item span {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: -0.01em;
}

/* Actions Area */
.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: rgba(102, 126, 234, 0.02);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
}

.cta .btn-ghost {
    background: #ffffff;
    color: #475569;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* ---------- Footer ---------- */
footer {
    padding: 35px 0 35px;
    background: #0B1B44;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer p {
    color: rgba(255, 255, 255, .72) !important;
}

.foot-links a {
    color: rgba(255, 255, 255, .82);
    font-weight: 750;
    font-size: 13px;
}

.foot-links a:hover {
    color: rgba(47, 107, 255, .95);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .preview {
        order: 2;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .selfserve {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .usecases {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    .faq {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 520px) {
    section {
        padding: 64px 0;
    }

    .hero {
        padding-top: 54px;
    }

    .btn {
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        justify-content: flex-end;
    }

    .kpi {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PRODUCT SECTION — “#producto” (drop-in override)
   Objetivo: más contraste, jerarquía, brillo controlado, cards premium.
   Pega esto al FINAL de tu styles.css para que sobrescriba.
   ========================================================= */

/* Section background + spacing */
#producto {
    position: relative;
    padding: 86px 0 78px;
    overflow: visible;
}





#producto .container {
    position: relative;
    z-index: 1;
}

/* Title + sub */
#producto .section-title {
    font-weight: 980;
    letter-spacing: -.055em;
    line-height: 1.08;
}

#producto .section-sub {
    max-width: 86ch;
    font-size: 15px;
    color: rgba(55, 65, 81, .88);
}

/* Grid cards */
#producto .grid-3 {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Premium card base */
#producto .card {
    position: relative;
    border-radius: 28px;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72));
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, .10),
        0 1px 0 rgba(255, 255, 255, .60) inset;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Subtle “sheen” + color glow */
#producto .card::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        radial-gradient(520px 280px at 15% 10%, rgba(47, 107, 255, .14), transparent 70%),
        radial-gradient(520px 280px at 90% 20%, rgba(124, 58, 237, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 55%);
    opacity: .95;
}

#producto .card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 38%),
        linear-gradient(0deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 60%);
    opacity: .55;
}

#producto .card>* {
    position: relative;
    z-index: 1;
}

#producto .card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 107, 255, .18);
    box-shadow:
        0 30px 86px rgba(15, 23, 42, .14),
        0 1px 0 rgba(255, 255, 255, .70) inset;
}

/* Cap row */
#producto .cap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

/* Chip (left) */
#producto .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -.01em;
    color: rgba(11, 18, 32, .86);
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}



/* Pill (right) */
#producto .pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    color: rgba(11, 18, 32, .76);
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(47, 107, 255, .14);
}

/* Card text hierarchy */
#producto .card h3 {
    font-size: 16px;
    font-weight: 980;
    letter-spacing: -.035em;
    line-height: 1.22;
}

#producto .card p {
    margin-top: 10px;
    color: rgba(55, 65, 81, .88);
    font-size: 14px;
    line-height: 1.75;
}

/* Add a small “corner accent” per card using nth-child */
#producto .grid-3 .card:nth-child(1) {
    --accentA: rgba(47, 107, 255, .26);
    --accentB: rgba(14, 165, 233, .18);
}

#producto .grid-3 .card:nth-child(2) {
    --accentA: rgba(124, 58, 237, .24);
    --accentB: rgba(47, 107, 255, .14);
}

#producto .grid-3 .card:nth-child(3) {
    --accentA: rgba(16, 185, 129, .18);
    --accentB: rgba(47, 107, 255, .14);
}

#producto .grid-3 .card:nth-child(1)::before,
#producto .grid-3 .card:nth-child(2)::before,
#producto .grid-3 .card:nth-child(3)::before {
    background:
        radial-gradient(520px 280px at 18% 10%, var(--accentA), transparent 70%),
        radial-gradient(520px 280px at 92% 20%, var(--accentB), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 55%);
}

/* ---------- Selfserve split cards ---------- */
#producto .selfserve {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Base */
#producto .ss {
    position: relative;
    border-radius: 28px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .70));
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, .10),
        0 1px 0 rgba(255, 255, 255, .62) inset;
    overflow: hidden;
}

#producto .ss::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        radial-gradient(720px 360px at 18% 0%, rgba(47, 107, 255, .14), transparent 70%),
        radial-gradient(720px 360px at 88% 10%, rgba(124, 58, 237, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 60%);
    opacity: .95;
}

#producto .ss>* {
    position: relative;
    z-index: 1;
}

#producto .ss h3 {
    font-size: 16px;
    font-weight: 980;
    letter-spacing: -.03em;
}

#producto .ss p {
    margin-top: 10px;
    color: rgba(55, 65, 81, .88);
    font-size: 14px;
    line-height: 1.75;
}

/* Mini tags -> more premium */
#producto .mini {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#producto .mini span {
    position: relative;
    padding: 9px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 850;
    color: rgba(11, 18, 32, .78);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

#producto .mini span:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 107, 255, .18);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .10);
}

/* Give each selfserve card its own identity */
#producto .selfserve .ss:first-child::before {
    background:
        radial-gradient(760px 380px at 16% 0%, rgba(47, 107, 255, .16), transparent 70%),
        radial-gradient(560px 340px at 92% 20%, rgba(14, 165, 233, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 60%);
}

#producto .selfserve .ss:last-child::before {
    background:
        radial-gradient(760px 380px at 18% 0%, rgba(124, 58, 237, .16), transparent 70%),
        radial-gradient(560px 340px at 88% 20%, rgba(47, 107, 255, .12), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 60%);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    #producto .grid-3 {
        grid-template-columns: 1fr;
    }

    #producto .selfserve {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    #producto {
        padding: 72px 0 62px;
    }

    #producto .card,
    #producto .ss {
        padding: 18px;
        border-radius: 24px;
    }
}

/* =========================================================
   #producto — versión premium PRO (alto contraste, wow)
   ========================================================= */

/* =========================================================
   #producto — TECH-PRO REDESIGN (Apple/Stripe Style)
   ========================================================= */

#producto {
    position: relative;
    padding: 120px 0 50px;
    background-color: #f8fafc;
    /* Subtle off-white background */
    overflow: visible;
}

#producto .section-title {
    font-size: clamp(38px, 5.5vw, 40px);
    margin-bottom: 24px;
}

#producto .section-sub {

    font-size: 17px;
    line-height: 1.6;
    color: #64748b;
}

#producto .grid-3 {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Redesigned Pro Card */
#producto .card {
    position: relative;
    border-radius: 20px;
    padding: 48px 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-align: center;
    /* Layered precision shadows */
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.03),
        0 12px 24px rgba(0, 0, 0, 0.04);

    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}



/* Precision Icon Box */
#producto .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    /* White icons on gradient background */
    display: grid;
    place-items: center;
    margin: 0 auto 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

#producto .icon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    border-radius: 16px;
}



#producto .icon-box svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5px;
}

#producto .cap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

#producto .chip {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
}

#producto .pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
    background: #fff;
    color: #3b82f6;
    border: 1px solid #bfdbfe;
}

#producto .card h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.25;
}

#producto .card p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-top: 0;
}

/* Panels (Self-Serve Section) */
#producto .selfserve {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

#producto .ss {
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}



#producto .ss h3 {
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

#producto .ss p {
    color: #64748b;
    font-size: 15px;
}

#producto .mini span {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
}



/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    #producto {
        padding: 82px 0 70px;
    }

    #producto .grid-3 {
        grid-template-columns: 1fr;
    }

    #producto .selfserve {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    #producto .card,
    #producto .ss {
        padding: 18px;
        border-radius: 24px;
    }
}

/* =========================================================
   #como-funciona — Versión Ultra-Polished Aurora
   ========================================================= */

#como-funciona {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    overflow: visible;
}

/* Subtle background gradient */
.aurora-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.04), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.04), transparent 50%);
}

#como-funciona .steps {
    position: relative;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Connecting line between steps */
#como-funciona .steps::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(102, 126, 234, 0.2) 10%,
            rgba(102, 126, 234, 0.4) 50%,
            rgba(102, 126, 234, 0.2) 90%,
            transparent 100%);
    z-index: 0;
}

#como-funciona .step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 20px;
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#como-funciona .step:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
}

.step-icon-wrap {
    position: relative;
    margin-bottom: 24px;
    z-index: 2;
}

#como-funciona .n {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    z-index: 10;
}



#como-funciona .icon-box {
    width: 80px;
    height: 80px;
}

#como-funciona .icon-box svg {
    width: 38px;
    height: 38px;
    stroke-width: 2;
}



.step-content {
    text-align: center;
    width: 100%;
}

#como-funciona .step h4 {
    font-size: 17px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

#como-funciona .step p {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

@media (max-width: 1024px) {
    #como-funciona .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }

    #como-funciona .steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    #como-funciona .steps {
        grid-template-columns: 1fr;
    }
}

.bg-white {
    background-color: #fff !important;
    padding: 20px 0;
}

/* =========================================================
   #faq — WOW Corporate Dashboard CONCEPT
   ========================================================= */

#faq {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* Left Column: Support Hub */
.faq-hub {
    position: sticky;
    top: 120px;
}

.faq-hub .section-title {
    margin: 12px 0 20px;
}

.support-card {
    margin-top: 40px;
    padding: 32px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.sc-icon svg {
    width: 22px;
    height: 22px;
}

.support-card h4 {
    font-size: 18px;
    font-weight: 850;
    color: #1e293b;
    margin: 0;
}

.support-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Right Column: FAQ Items (The Slates - Compact Grid) */
.faq-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
}

.faq-items details {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid rgba(102, 126, 234, 0.12);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    height: fit-content;
}

.faq-items details::after {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.faq-items details[open] {
    border-color: rgba(102, 126, 234, 0.25);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.06);
    grid-column: span 2;
    /* Open item takes full width for readability */
}

.faq-items details[open]::after {
    height: 32px;
}

.faq-items summary {
    list-style: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-items summary::-webkit-details-marker {
    display: none;
}

.s-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.s-icon {
    width: 34px;
    height: 34px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #667eea;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.s-icon svg {
    width: 18px;
    height: 18px;
}

.faq-items summary span:not(.s-icon) {
    font-size: 14.5px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.faq-items details[open] .s-icon {
    background: #667eea;
    color: #fff;
}

.faq-items .chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-items details[open] .chevron {
    transform: rotate(-135deg);
    border-color: #667eea;
}

.a-content {
    padding: 0 24px 24px 72px;
    opacity: 0;
    transform: translateY(-8px);
}

.faq-items details[open] .a-content {
    animation: slideInFade 0.4s ease forwards;
}

@keyframes slideInFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.a-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

@media (max-width: 1280px) {
    .faq-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .faq-items {
        grid-template-columns: 1fr;
    }

    .faq-items details[open] {
        grid-column: span 1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-hub {
        position: static;
        text-align: center;
    }

    .faq-hub .section-sub {
        margin: 0 auto;
    }

    .support-card {
        display: none;
    }

    .a-content {
        padding: 0 24px 24px 24px;
    }
}