:root {
    --negro: #080808;
    --blanco: #F5F2ED;
    --acento: #ff7a45;
    --acento2: #45FFCA;
    --gris: #1A1A1A;
    --gris2: #2A2A2A;
    --texto-muted: #888;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--negro);
    color: var(--blanco);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── CURSOR CUSTOM ── */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--acento);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(200, 255, 69, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s ease, border-color 0.3s;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4vw;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--blanco);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--acento);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--texto-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: var(--blanco);
}

.nav-cta {
    background: var(--acento);
    color: var(--negro) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    transition: opacity 0.2s !important;
}

.nav-cta:hover {
    opacity: 0.85;
    color: var(--negro) !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4vw 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
}

.hero-bg-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--acento);
    top: -200px;
    right: -150px;
}

.hero-bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--acento2);
    bottom: -100px;
    left: -100px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 255, 69, 0.1);
    border: 1px solid rgba(200, 255, 69, 0.25);
    color: var(--acento);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    width: fit-content;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--acento);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight-word {
    color: var(--acento);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--texto-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--acento);
    color: var(--negro);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 255, 69, 0.3);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blanco);
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.btn-ghost:hover {
    border-color: var(--blanco);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--blanco);
}

.hero-stat-num span {
    color: var(--acento);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--texto-muted);
    margin-top: 0.1rem;
}

/* ── MARQUEE ── */
.marquee-section {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    padding: 0 2.5rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto-muted);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--acento);
    border-radius: 50%;
    display: inline-block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTION BASE ── */
section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--texto-muted);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
}

/* ── PROBLEMAS ── */
.problemas {
    padding: 8rem 0;
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 4rem;
}

.problema-item {
    background: var(--negro);
    padding: 2.5rem;
    transition: background 0.3s;
}

.problema-item:hover {
    background: var(--gris);
}

.problema-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.problema-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.problema-item p {
    color: var(--texto-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── SHOWCASE / BEFORE-AFTER ── */
.showcase {
    padding: 8rem 0;
    background: var(--gris);
}

.showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
}

.showcase-side {
    padding: 3rem;
    position: relative;
}

.showcase-side.before {
    background: #111;
}

.showcase-side.after {
    background: #131613;
}

.showcase-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.showcase-badge.bad {
    background: rgba(255, 80, 80, 0.15);
    color: #FF6B6B;
}

.showcase-badge.good {
    background: rgba(200, 255, 69, 0.15);
    color: var(--acento);
}

.fake-site {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fake-site-bar {
    background: #222;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fake-site-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fake-site-bar span:nth-child(1) {
    background: #FF5F57;
}

.fake-site-bar span:nth-child(2) {
    background: #FEBC2E;
}

.fake-site-bar span:nth-child(3) {
    background: #28C840;
}

.fake-site-content-bad {
    background: #f0f0f0;
    padding: 1.5rem;
    min-height: 260px;
}

.fsb-header {
    background: #4a90d9;
    padding: 0.6rem 1rem;
    margin: -1.5rem -1.5rem 1rem;
}

.fsb-header p {
    color: white;
    font-size: 0.85rem;
}

.fsb-word-line {
    height: 8px;
    background: #ccc;
    border-radius: 4px;
    margin-bottom: 8px;
}

.fsb-btn {
    background: #4a90d9;
    color: white;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.5rem;
}

.fake-site-content-good {
    background: #0c0c0c;
    padding: 1.5rem;
    min-height: 260px;
}

.fsg-hero-bar {
    background: linear-gradient(135deg, #1a1a1a, #111);
    padding: 1.5rem;
    margin: -1.5rem -1.5rem 1rem;
    border-bottom: 1px solid #222;
}

.fsg-hero-bar .tag {
    font-size: 0.6rem;
    background: rgba(200, 255, 69, 0.15);
    color: #C8FF45;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fsg-hero-bar h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.fsg-hero-bar h4 span {
    color: #C8FF45;
}

.fsg-word-line {
    height: 6px;
    background: #222;
    border-radius: 4px;
    margin-bottom: 6px;
}

.fsg-btn {
    background: #C8FF45;
    color: #0c0c0c;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 100px;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
}

.showcase-desc {
    margin-top: 1.5rem;
}

.showcase-desc h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.showcase-desc p {
    color: var(--texto-muted);
    font-size: 0.95rem;
}

/* ── PLANES ── */
.planes {
    padding: 8rem 0;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.plan-card {
    background: var(--gris);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 255, 69, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.plan-card.featured {
    border-color: var(--acento);
    background: linear-gradient(145deg, #1a2000, #131a00);
}

.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--acento), var(--acento2));
}

.plan-tag {
    position: absolute;
    top: 0.8rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--acento);
    color: var(--negro);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--texto-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.plan-price .periodo {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--texto-muted);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--texto-muted);
    margin: 1rem 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
}

.plan-features li .check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: rgba(200, 255, 69, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acento);
    font-size: 0.65rem;
    margin-top: 2px;
}

.plan-features li .cross {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texto-muted);
    font-size: 0.65rem;
    margin-top: 2px;
}

.plan-features li span {
    line-height: 1.4;
}

.plan-features li.muted span {
    color: var(--texto-muted);
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-plan-featured {
    background: var(--acento);
    color: var(--negro);
}

.btn-plan-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 255, 69, 0.35);
}

.btn-plan-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--blanco);
}

.btn-plan-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* ── PLAN PERSONALIZADO ── */
.custom-plan {
    grid-column: 1 / -1;
    margin: 2rem auto 0;
}

.custom-plan-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.custom-plan-header .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 255, 69, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acento);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.custom-plan-subtitle {
    color: var(--texto-muted);
    font-size: 0.9rem;
    margin: 0;
}

.custom-plan-desc {
    color: var(--texto-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.btn-custom-plan {
    display: table;
    margin: 0 auto;
    width: auto;
    text-align: center;
    padding: 0.85rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    background: var(--acento);
    color: var(--negro);
}

.btn-custom-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 255, 69, 0.35);
}

/* ── PROCESO ── */
.proceso {
    padding: 8rem 0;
    background: var(--gris);
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.proceso-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 69, 0.4), transparent);
}

.paso {
    padding: 1.5rem;
    text-align: center;
}

.paso-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200, 255, 69, 0.1);
    border: 1px solid rgba(200, 255, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--acento);
    margin: 0 auto 1.5rem;
}

.paso h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.paso p {
    color: var(--texto-muted);
    font-size: 0.9rem;
}

/* ── TESTIMONIOS ── */
.testimonios {
    padding: 8rem 0;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.test-card {
    background: var(--gris);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s;
}

.test-card:hover {
    border-color: rgba(200, 255, 69, 0.2);
}

.test-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.test-stars span {
    color: var(--acento);
    font-size: 0.9rem;
}

.test-text {
    font-size: 0.97rem;
    line-height: 1.7;
    color: rgba(245, 242, 237, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(200, 255, 69, 0.15);
    color: var(--acento);
    flex-shrink: 0;
}

.test-author-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.test-author-role {
    color: var(--texto-muted);
    font-size: 0.82rem;
}

/* ── FAQ ── */
.faq {
    padding: 8rem 0;
    background: var(--gris);
}

.faq-list {
    margin-top: 4rem;
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--blanco);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--acento);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--acento);
    color: var(--negro);
    border-color: var(--acento);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--texto-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* ── CTA FINAL ── */
.cta-final {
    padding: 8rem 4vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 255, 69, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.cta-final h2 span {
    color: var(--acento);
}

.cta-final p {
    color: var(--texto-muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    color: var(--texto-muted);
    font-size: 0.85rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--blanco);
}

.footer-logo span {
    color: var(--acento);
}

/* ── CHAT WIDGET (MODAL CON IFRAME) ── */
.chat-widget {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 200;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: flex-end;
    animation: fadeIn 0.3s ease;
}

.chat-widget.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.chat-container {
    display: flex;
    flex-direction: column;
    width: 450px;
    max-width: 100%;
    height: 100%;
    max-height: 100vh;
    background: var(--negro);
    border: 1px solid rgba(200, 255, 69, 0.3);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(500px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .chat-container {
        width: 100%;
        border-radius: 0;
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--acento), var(--acento2));
    color: var(--negro);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(200, 255, 69, 0.2);
}

.chat-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-icon {
    font-size: 1.5rem;
}

.chat-close {
    background: none;
    border: none;
    color: var(--negro);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-overlay-click {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 199;
}

.whatsapp-widget {
    width: 320px;
    max-width: calc(100vw - 32px);
}

.whatsapp-body {
    padding: 20px;
    text-align: center;
    background: white;
}

.whatsapp-body p {
    margin: 0 0 18px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: .2s;
}

.whatsapp-button:hover {
    background: #1ebe5b;
}

.whatsapp-button svg {
    width: 22px;
    height: 22px;
}

/* ── CHAT FLOTANTE BUTTON ── */
.chat-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 199;
    background: linear-gradient(135deg, var(--acento), var(--acento2));
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(200, 255, 69, 0.35);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    animation: float 3s ease-in-out infinite;
}

.chat-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(200, 255, 69, 0.5);
}

.chat-float.hidden {
    display: none;
}

.chat-float svg {
    width: 28px;
    height: 28px;
}

.chat-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(200, 255, 69, 0.4);
    animation: pulse-chat 2s ease-in-out infinite;
}

@keyframes pulse-chat {

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

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.chat-float:hover .chat-float-pulse {
    animation: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .showcase-inner {
        grid-template-columns: 1fr;
    }

    .proceso-steps::before {
        display: none;
    }
}