/* ============================================
   INOLVIDARÉ — Stylesheet
   Inspirado en diseño premium de referencia
   Paleta: Morado #2B124C, Fucsia #FF2E88,
   Azul Eléctrico #00C2FF, Blanco Cálido #FFF8F0,
   Dorado Champagne #D9B46F
   Mobile First
   ============================================ */

/* === VARIABLES === */
:root {
    --morado: #2B124C;
    --morado-light: #4B1FA8;
    --fucsia: #FF2E88;
    --fucsia-light: #FF6BAD;
    --azul: #00C2FF;
    --azul-light: #66DBFF;
    --blanco: #FFF8F0;
    --blanco-puro: #FFFFFF;
    --dorado: #D9B46F;
    --dorado-light: #E8CFA0;
    --gris-texto: #4A4A5A;
    --gris-claro: #F5F0EB;
    --gris-borde: #E8E0D8;

    --gradient-primary: linear-gradient(135deg, #FF2E88 0%, #D9B46F 100%);
    --gradient-hero-bg: linear-gradient(160deg, #FFF8F0 0%, #F3E8FF 40%, #E8F8FF 70%, #FFF8F0 100%);
    --gradient-cta: linear-gradient(135deg, #2B124C 0%, #4B1FA8 50%, #FF2E88 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(255,46,136,0.05), rgba(0,194,255,0.05));

    --shadow-sm: 0 2px 8px rgba(43,18,76,0.06);
    --shadow-md: 0 4px 20px rgba(43,18,76,0.08);
    --shadow-lg: 0 8px 40px rgba(43,18,76,0.12);
    --shadow-card: 0 2px 16px rgba(43,18,76,0.06);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --nav-height: 70px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gris-texto);
    background: var(--blanco);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--morado); line-height: 1.2; }

h1 { font-size: 2rem; font-weight: 600; }
h2 { font-size: 1.6rem; font-weight: 500; }
h3 { font-size: 1.1rem; font-weight: 500; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.text-accent { color: var(--fucsia); }
.text-dorado { color: var(--dorado); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fucsia);
    margin-bottom: 8px;
}
.section-title { margin-bottom: 12px; }
.section-desc {
    max-width: 560px;
    margin: 0 auto;
    color: var(--gris-texto);
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Decorative line */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0;
}
.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--dorado);
    opacity: 0.5;
}
.section-divider span {
    color: var(--dorado);
    font-size: 1.2rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255,46,136,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,46,136,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--morado);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    border: 1.5px solid var(--morado);
}
.btn-outline:hover {
    background: var(--morado);
    color: var(--blanco-puro);
}

.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-whatsapp {
    background: #25D366;
    color: var(--blanco-puro);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

.btn-cta-light {
    background: var(--dorado);
    color: var(--morado);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(217,180,111,0.4);
}
.btn-cta-light:hover {
    transform: translateY(-2px);
    background: var(--dorado-light);
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,248,240,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43,18,76,0.06);
    transition: all 0.3s ease;
    height: var(--nav-height);
}
.nav.scrolled {
    background: rgba(255,248,240,0.95);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--morado);
    font-style: italic;
}
.nav-logo .accent-e {
    color: var(--fucsia);
    font-style: italic;
}

.nav-desktop { display: none; align-items: center; gap: 24px; }
.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gris-texto);
}
.nav-desktop a:hover { color: var(--fucsia); }

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--morado);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}
.nav-menu.open { opacity: 1; pointer-events: auto; }
.nav-menu a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--morado);
}
.nav-menu a:hover { color: var(--fucsia); }

/* === HERO === */
.hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 40px) 0 40px;
    background: var(--gradient-hero-bg);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,46,136,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,194,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text { text-align: center; }
.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--morado);
}
.hero-text p {
    font-size: 0.95rem;
    color: var(--gris-texto);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Features Row */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gris-texto);
}
.hero-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blanco-puro);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Hero Mockups */
.hero-mockups {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mockup-phone {
    width: 160px;
    height: 300px;
    background: var(--blanco-puro);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: absolute;
    overflow: hidden;
    border: 2px solid var(--gris-borde);
}
.mockup-phone-center { z-index: 3; }
.mockup-phone-left {
    z-index: 2;
    transform: translateX(-100px) scale(0.85) rotate(-5deg);
    opacity: 0.9;
}
.mockup-phone-right {
    z-index: 2;
    transform: translateX(100px) scale(0.85) rotate(5deg);
    opacity: 0.9;
}
.mockup-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    text-align: center;
}
.mockup-screen-boda {
    background: linear-gradient(180deg, #FFF8F0 0%, #F3E8FF 100%);
}
.mockup-screen-xv {
    background: linear-gradient(180deg, #FFE8F5 0%, #F3E8FF 100%);
}
.mockup-screen-grad {
    background: linear-gradient(180deg, #E8F8FF 0%, #F3E8FF 100%);
}
.mockup-screen h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--morado);
    margin-bottom: 4px;
}
.mockup-screen .mockup-names {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--morado);
    margin-bottom: 8px;
}
.mockup-screen .mockup-date {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dorado);
    margin-bottom: 12px;
}
.mockup-countdown {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.mockup-countdown-item {
    background: rgba(43,18,76,0.06);
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
    min-width: 36px;
}
.mockup-countdown-item .num {
    font-size: 1rem;
    font-weight: 600;
    color: var(--morado);
    display: block;
}
.mockup-countdown-item .label {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: var(--gris-texto);
    opacity: 0.7;
}
.mockup-btn {
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    font-size: 0.6rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* Floating badges */
.hero-badge-float {
    position: absolute;
    background: var(--blanco-puro);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    box-shadow: var(--shadow-md);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--morado);
    display: flex;
    align-items: center;

    gap: 6px;
    z-index: 5;
    white-space: nowrap;
}
.hero-badge-float .badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,46,136,0.1), rgba(0,194,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.badge-rsvp { top: 10%; left: 5%; }
.badge-galeria { top: 5%; right: 5%; }
.badge-musica { top: 40%; right: 0%; }
.badge-mapa { bottom: 15%; left: 10%; }
.badge-cuenta { bottom: 35%; left: 0%; }

/* === SECTION === */
.section {
    padding: 60px 0;
}
.section-light {
    background: var(--blanco);
}
.section-alt {
    background: var(--gris-claro);
}

/* === CATEGORIES GRID === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.category-card {
    background: var(--blanco-puro);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,46,136,0.15);
}
.category-card-img {
    width: 100%;
    height: 80px;
    border-radius: var(--radius-sm);
    background: var(--gradient-hero-bg);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}
.category-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.category-card p {
    font-size: 0.75rem;
    color: var(--gris-texto);
    opacity: 0.8;
}

/* === HOW IT WORKS === */
.how-it-works {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.step-card {
    text-align: center;
    padding: 16px;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.step-card h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--morado);
}
.step-card p {
    font-size: 0.78rem;
    color: var(--gris-texto);
    opacity: 0.85;
}

/* Steps connector dots (hidden on mobile) */
.steps-connector { display: none; }

/* === FEATURES BOX === */
.features-box {
    background: var(--blanco-puro);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gris-borde);
}
.features-box h3 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--morado);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-item {
    text-align: center;
    padding: 8px;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,46,136,0.08), rgba(0,194,255,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.2rem;
}
.feature-item span {
    font-size: 0.78rem;
    color: var(--gris-texto);
    font-weight: 500;
}

/* === TEMPLATES SECTION === */
.templates-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.template-tab {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gris-texto);
    background: var(--blanco-puro);
    border: 1px solid var(--gris-borde);
    cursor: pointer;
    transition: all 0.3s ease;
}
.template-tab.active,
.template-tab:hover {
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    border-color: transparent;
}

.templates-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px;
    scrollbar-width: none;
}
.templates-carousel::-webkit-scrollbar { display: none; }

.template-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: var(--blanco-puro);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.template-card:hover {
    transform: translateY(-4px);
    border-color: var(--fucsia);
    box-shadow: var(--shadow-lg);
}
.template-card-preview {
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
    position: relative;
}
.template-card-preview.tpl-boda {
    background: linear-gradient(180deg, #FFF8F0 0%, #F3E8FF 100%);
}
.template-card-preview.tpl-xv {
    background: linear-gradient(180deg, #FFE8F5 0%, #F8E8FF 100%);
}
.template-card-preview.tpl-cumple {
    background: linear-gradient(180deg, #E8FFF0 0%, #E8F8FF 100%);
}
.template-card-preview.tpl-bautizo {
    background: linear-gradient(180deg, #FFF8E8 0%, #FFF0E8 100%);
}
.template-card-preview.tpl-corp {
    background: linear-gradient(180deg, #E8EEFF 0%, #F3E8FF 100%);
}
.template-card-preview .tpl-type {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dorado);
    margin-bottom: 4px;
}
.template-card-preview .tpl-names {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--morado);
    margin-bottom: 4px;
}
.template-card-preview .tpl-date {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--dorado);
}
.template-card-preview .tpl-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    font-size: 0.55rem;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.testimonial-card {
    background: var(--blanco-puro);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gris-borde);
}
.testimonial-stars {
    color: var(--dorado);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 0.9rem;
    color: var(--gris-texto);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--morado);
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--gris-texto);
    opacity: 0.7;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--gradient-cta);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,46,136,0.2) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0,194,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: 1.6rem;
    color: var(--blanco);
    margin-bottom: 8px;
}
.cta-section h2 em {
    font-style: italic;
    color: var(--dorado-light);
}
.cta-section p {
    color: rgba(255,248,240,0.8);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.cta-sub {
    font-size: 0.75rem;
    color: rgba(255,248,240,0.6);
    margin-top: 8px;
}

/* === DISRUPTIVE SECTION === */
.disruptive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.disruptive-card {
    background: var(--blanco-puro);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gris-borde);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.disruptive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.disruptive-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.disruptive-card:hover::before { opacity: 1; }
.disruptive-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--morado);
}
.disruptive-card p {
    font-size: 0.85rem;
    color: var(--gris-texto);
    line-height: 1.6;
}
.disruptive-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.tag-exclusive { background: rgba(255,46,136,0.1); color: var(--fucsia); }
.tag-new { background: rgba(0,194,255,0.1); color: var(--azul); }
.tag-interactive { background: rgba(217,180,111,0.15); color: var(--dorado); }
.tag-impact { background: rgba(75,31,168,0.1); color: var(--morado-light); }
.tag-emotional { background: rgba(255,46,136,0.08); color: var(--fucsia-light); }
.tag-ai { background: rgba(0,194,255,0.08); color: var(--azul); }

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.pricing-card {
    background: var(--blanco-puro);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gris-borde);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card-featured {
    border: 2px solid var(--fucsia);
    box-shadow: 0 8px 30px rgba(255,46,136,0.15);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--blanco-puro);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.pricing-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--morado);
    margin-bottom: 8px;
}
.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--morado);
    margin-bottom: 4px;
}
.pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gris-texto);
}
.pricing-desc {
    font-size: 0.8rem;
    color: var(--gris-texto);
    margin-bottom: 20px;
}
.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}
.pricing-features li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gris-texto);
    border-bottom: 1px solid rgba(43,18,76,0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--fucsia);
    font-weight: 700;
    font-size: 0.8rem;
}

/* === CONTACT FORM === */
.form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--morado);
    margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gris-borde);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gris-texto);
    background: var(--blanco-puro);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--fucsia);
    box-shadow: 0 0 0 3px rgba(255,46,136,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* === FOOTER === */
.footer {
    background: var(--morado);
    color: rgba(255,248,240,0.8);
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-brand .nav-logo {
    color: var(--blanco);
    margin-bottom: 12px;
    display: inline-block;
}
.footer-brand .accent-e { color: var(--fucsia); }
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--blanco);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,248,240,0.6);
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--fucsia); }

.footer-newsletter { max-width: 280px; }
.footer-newsletter p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,248,240,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,248,240,0.08);
    color: var(--blanco);
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,248,240,0.4); }
.newsletter-form input:focus { border-color: var(--fucsia); }
.newsletter-form button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--fucsia);
    color: var(--blanco-puro);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.newsletter-form button:hover { background: var(--fucsia-light); }
.newsletter-disclaimer {
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,248,240,0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,248,240,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,248,240,0.6);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--fucsia);
    color: var(--blanco-puro);
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-scale.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

/* === SPARKLE DECORATIONS === */
.sparkle {
    display: inline-block;
    color: var(--dorado);
    font-size: 1rem;
    animation: sparkle-pulse 2s ease-in-out infinite;
}
@keyframes sparkle-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }

    .container { padding: 0 32px; }

    .section { padding: 80px 0; }

    .hero { padding: calc(var(--nav-height) + 60px) 0 60px; }
    .hero-inner { flex-direction: row; text-align: left; }
    .hero-text { text-align: left; flex: 1; }
    .hero-text p { margin: 0 0 24px; }
    .hero-ctas { justify-content: flex-start; }
    .hero-features { justify-content: flex-start; }
    .hero-mockups { flex: 1; max-width: 450px; height: 400px; }
    .mockup-phone { width: 180px; height: 340px; }

    .categories-grid { grid-template-columns: repeat(3, 1fr); }

    .how-it-works { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }

    .features-grid { grid-template-columns: repeat(4, 1fr); }

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

    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

    .pricing-grid { grid-template-columns: repeat(3, 1fr); }

    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }

    .cta-buttons { flex-direction: row; }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    .nav-desktop { display: flex; }
    .nav-toggle { display: none; }

    .hero-mockups { max-width: 520px; height: 450px; }
    .mockup-phone { width: 200px; height: 380px; }
    .mockup-phone-left { transform: translateX(-120px) scale(0.85) rotate(-5deg); }
    .mockup-phone-right { transform: translateX(120px) scale(0.85) rotate(5deg); }

    .categories-grid { grid-template-columns: repeat(6, 1fr); }

    .disruptive-grid { grid-template-columns: repeat(3, 1fr); }

    .template-card { flex: 0 0 220px; }
}
