/* ==========================================================================
   IMPULSALabs Premium CSS Design System
   ========================================================================== */

/* Variables & Base resets */
:root {
    --bg-main: #070313;
    --bg-darker: #04010b;
    --purple-primary: #a855f7;
    --purple-light: #c084fc;
    --purple-dark: #7e22ce;
    --pink-primary: #ec4899;
    --pink-light: #f472b6;
    --green-whatsapp: #25d366;
    --text-white: #ffffff;
    --text-gray-light: #e5e7eb;
    --text-gray-dark: #9ca3af;
    --font-sans: 'Outfit', sans-serif;
    --font-script: 'Yellowtail', cursive;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(15, 7, 30, 0.6);
    --glass-border: rgba(168, 85, 247, 0.15);
    --neon-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 50px rgba(236, 72, 153, 0.2);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-gray-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glowing Accents */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}

.bg-glow-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--purple-primary) 0%, transparent 70%);
}

.bg-glow-2 {
    top: 40%;
    left: -200px;
    background: radial-gradient(circle, var(--pink-primary) 0%, transparent 70%);
    opacity: 0.3;
}

.bg-glow-3 {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--purple-dark) 0%, transparent 70%);
}

/* Typography Helpers */
.highlight-pro {
    background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.highlight-handwritten {
    font-family: var(--font-script);
    color: var(--text-white);
    font-size: 4.8rem;
    font-weight: 400;
    display: inline-block;
    transform: rotate(-4deg);
    margin-left: 10px;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.highlight-purple {
    color: var(--purple-light);
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.highlight-pink {
    color: var(--pink-light);
    text-shadow: 0 0 10px rgba(244, 114, 182, 0.4);
}

.highlight-gradient {
    background: linear-gradient(90deg, var(--purple-light), var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 3, 19, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(4, 1, 11, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    padding: 0.6rem 2rem;
}

.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 160px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 100px;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-bolt {
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.logo-icon-bolt i {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
}

.logo-subbrand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--purple-light);
}

.logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-gray-dark);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--purple-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-primary), var(--pink-primary));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-escribeme {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    color: var(--text-white);
    text-decoration: none;
    padding: 0.4rem 1.4rem 0.4rem 0.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    transition: var(--transition-smooth);
    height: 42px;
    overflow: hidden;
}

.btn-escribeme:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.btn-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-left: -18px;
    margin-right: -18px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   MAIN HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 10rem 2rem 2rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Hero Info Card Box */
.info-card-container {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.price-badge {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

.price-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-gray-dark);
}

.price-val {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.info-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.bullet-check {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple-light);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.bullet-check i {
    width: 12px;
    height: 12px;
}

/* Call to Action Button */
.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.6);
}

.whatsapp-icon-bg {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cta-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray-dark);
    margin-top: 1rem;
    letter-spacing: 1px;
}

.tagline-icon {
    width: 14px;
    height: 14px;
    color: var(--pink-primary);
}

/* Hero Image Visual Side with Interactive CSS Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 700px;
}

/* If real image is loaded, hide the CSS decorations to avoid duplication */
.hero-visual:has(.mockup-img:not([style*="display: none"])) .neon-ring,
.hero-visual:has(.mockup-img:not([style*="display: none"])) .floating-badge,
.hero-visual:has(.mockup-img:not([style*="display: none"])) .floating-arrow {
    display: none;
}

.neon-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 8px solid transparent;
    background: linear-gradient(var(--bg-main), var(--bg-main)) padding-box,
                linear-gradient(135deg, var(--purple-primary), var(--pink-primary)) border-box;
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.7));
    z-index: 1;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
    color: var(--text-white);
}

.badge-thumb {
    background: #3b82f6;
    left: 10%;
    top: 50%;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.badge-heart {
    background: #ef4444;
    right: 25%;
    top: 5%;
    animation-delay: 1.5s;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.floating-arrow {
    position: absolute;
    right: 5%;
    top: 25%;
    color: var(--purple-light);
    transform: rotate(30deg);
    font-size: 2.5rem;
    z-index: 5;
    animation: float-alternate 5s ease-in-out infinite;
}

.floating-arrow i {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--purple-primary));
}

.floating-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    right: 5%;
    bottom: 10%;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-alternate {
    0%, 100% { transform: translateY(0) rotate(30deg); }
    50% { transform: translateY(12px) rotate(35deg); }
}

/* Smartphone Mockup */
.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.mockup-img {
    max-width: 150%;
    width: 140%;
    max-height: 850px;
    object-fit: contain;
    z-index: 4;
    position: relative;
    left: -15%;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsive CSS phones fallback styling */
.mockup-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-phone {
    width: 200px;
    height: 380px;
    background: #000;
    border: 4px solid #1f2937;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--neon-shadow);
    position: absolute;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 16px;
    background: #1f2937;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-left {
    transform: rotate(-10deg) translateX(-60px) translateY(10px);
    z-index: 3;
    animation: floatPhone1 6s ease-in-out infinite;
}

.phone-right {
    transform: rotate(8deg) translateX(70px) translateY(-10px);
    z-index: 2;
    animation: floatPhone2 6s ease-in-out infinite;
}

@keyframes floatPhone1 {
    0%, 100% { transform: rotate(-10deg) translateX(-60px) translateY(10px); }
    50% { transform: rotate(-12deg) translateX(-60px) translateY(-5px); }
}

@keyframes floatPhone2 {
    0%, 100% { transform: rotate(8deg) translateX(70px) translateY(-10px); }
    50% { transform: rotate(6deg) translateX(70px) translateY(5px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b071a;
    padding: 1.5rem 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    font-size: 0.6rem;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray-dark);
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
}

.user-handle {
    font-weight: 700;
}

.post-image-placeholder {
    flex: 1;
    border-radius: 12px;
    background: linear-gradient(180deg, #180d2d, #0b0518);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 1rem;
}

.burger-emoji {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.lightning-emoji {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--purple-light);
    filter: drop-shadow(0 0 10px var(--purple-primary));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.burger-tag {
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
}

.agency-tag {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
}

.yellow-text {
    color: #f59e0b;
}

.cyan-text {
    color: #06b6d4;
}

.burger-price {
    background: #f59e0b;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 800;
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.spark-badge {
    background: linear-gradient(90deg, var(--purple-primary), var(--pink-primary));
    color: var(--text-white);
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.5rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.purple-bg {
    background: linear-gradient(180deg, #32115c, #0e051c);
}

.post-actions {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray-light);
    padding-top: 0.5rem;
}

.actions-left {
    display: flex;
    gap: 0.5rem;
}

.post-actions i {
    width: 12px;
    height: 12px;
}

.icon-liked {
    color: #ef4444;
    fill: #ef4444;
}

/* ==========================================================================
   PAIN SECTION: ¿TE PASA ESTO?
   ========================================================================== */
.pain-section {
    padding: 2rem 2rem 6rem;
    background: linear-gradient(180deg, #070313 0%, #030109 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pain-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.pain-header {
    text-align: left;
}

.pain-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.15;
    letter-spacing: -1px;
}

.pain-title-highlight {
    color: var(--pink-primary);
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pain-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: none;
}

.pain-card:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
}

.pain-icon-wrapper {
    background: var(--purple-primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    border: none;
}

.pain-icon {
    width: 32px;
    height: 32px;
}

.pain-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.4;
}

.pain-conclusion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    gap: 0.25rem;
}

.conclusion-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
}

.conclusion-highlight {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--pink-primary);
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    line-height: 1.15;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 6rem 2rem;
    position: relative;
    background: #ffffff;
    color: #111827;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-block {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: transparent;
}

.service-icon-bg {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-primary);
    margin-bottom: 2rem;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.1);
}

.service-card:hover .service-icon-bg {
    background: var(--purple-primary);
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

.service-icon-bg i {
    width: 30px;
    height: 30px;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.85rem;
}

.service-card-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 8rem 2rem;
    background: #04010a;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray-dark); }

.pricing-layout-full {
    margin-top: 3rem;
}

.pricing-cards-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.price-card {
    background: rgba(13, 8, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-5px);
}

/* Accent Card Borders and Shadows */
.price-card.pack-emprendedor {
    border-color: rgba(245, 158, 11, 0.15);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.05);
}
.price-card.pack-emprendedor:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}
.price-card.pack-emprendedor .pack-icon-glow {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.price-card.pack-crecimiento {
    border-color: rgba(236, 72, 153, 0.15);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.05);
}
.price-card.pack-crecimiento:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}
.price-card.pack-crecimiento .pack-icon-glow {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.price-card.pack-ventas {
    border-color: rgba(34, 197, 94, 0.15);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.05);
}
.price-card.pack-ventas:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}
.price-card.pack-ventas .pack-icon-glow {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.price-card.pack-pro {
    border-color: rgba(6, 182, 212, 0.25);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.08);
}
.price-card.pack-pro:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}
.price-card.pack-pro.popular {
    background: rgba(10, 20, 38, 0.7);
    border: 2px solid #06b6d4;
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.35);
    transform: scale(1.04);
    z-index: 5;
}
.price-card.pack-pro.popular:hover {
    border-color: rgba(6, 182, 212, 0.8);
    box-shadow: 0 0 45px rgba(6, 182, 212, 0.55);
    transform: scale(1.07) translateY(-5px);
}
.price-card.pack-pro .pack-icon-glow {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.price-card.pack-elite {
    border-color: rgba(168, 85, 247, 0.15);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.05);
}
.price-card.pack-elite:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}
.price-card.pack-elite .pack-icon-glow {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.pack-icon-glow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}
.pack-icon-glow i {
    width: 22px;
    height: 22px;
}
.price-card:hover .pack-icon-glow {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06b6d4, #00f2fe);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.55rem 1.6rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.card-header {
    margin-bottom: 1.5rem;
}

.pack-name {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.pack-sub {
    font-size: 0.75rem;
    color: var(--text-gray-dark);
    font-weight: 600;
}

.card-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
}

.amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

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

.pack-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #d1d5db;
    line-height: 1.3;
}

.check-icon {
    width: 14px;
    height: 14px;
    color: var(--purple-light);
    flex-shrink: 0;
}

.btn-pack-buy {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.pack-emprendedor .btn-pack-buy:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}
.pack-crecimiento .btn-pack-buy:hover {
    background: #ec4899;
    border-color: #ec4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}
.pack-ventas .btn-pack-buy:hover {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}
.pack-pro .btn-pack-buy {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}
.pack-pro .btn-pack-buy:hover {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}
.pack-elite .btn-pack-buy:hover {
    background: #a855f7;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Full Table Trigger Button */
.full-table-trigger-block {
    text-align: center;
    margin: 3.5rem 0 2rem;
}

.btn-view-table {
    background: rgba(168, 85, 247, 0.08);
    border: 1px dashed rgba(168, 85, 247, 0.4);
    color: var(--purple-light);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-view-table:hover {
    background: var(--purple-primary);
    color: var(--text-white);
    border-style: solid;
    border-color: var(--purple-primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

/* Horizontal Benefits Bar */
.benefits-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 3.5rem;
}

.benefit-item-card {
    background: rgba(18, 10, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.benefit-item-card:hover {
    border-color: rgba(168, 85, 247, 0.15);
    background: rgba(18, 10, 36, 0.5);
}

.benefit-icon-wrapper {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--purple-light);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrapper i {
    width: 20px;
    height: 20px;
}

.benefit-content h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.78rem;
    color: var(--text-gray-dark);
    line-height: 1.4;
}

/* ==========================================================================
   MODAL COMPONENT STYLING
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 1, 11, 0.96);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.modal-active {
    display: flex;
    opacity: 1;
}

.modal-content-wrapper {
    max-width: 1100px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #060211;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.modal-active .modal-content-wrapper {
    transform: scale(1);
}

.modal-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 3001;
    line-height: 1;
}

.close-modal:hover {
    color: var(--pink-primary);
    transform: scale(1.1) rotate(90deg);
}

/* ==========================================================================
   FOOTER CALL TO ACTION & FOOTER
   ========================================================================== */
.footer-cta-section {
    padding: 8rem 2rem 3rem;
    position: relative;
    background: linear-gradient(180deg, #070313 0%, #04010a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 7, 43, 0.8), rgba(6, 2, 20, 0.8));
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: var(--neon-shadow);
    border-radius: 32px;
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-left {
    max-width: 60%;
    position: relative;
}

.footer-cta-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.footer-cta-desc {
    font-size: 1.1rem;
    color: var(--text-gray-light);
    opacity: 0.9;
}

.curly-arrow-container {
    position: absolute;
    right: -60px;
    bottom: -50px;
    width: 120px;
    height: 70px;
    opacity: 0.8;
}

.curly-arrow {
    width: 100%;
    height: 100%;
}

.footer-cta-right {
    display: flex;
    justify-content: flex-end;
}

.btn-whatsapp-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    color: var(--text-white);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.45);
    transition: var(--transition-smooth);
}

.btn-whatsapp-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.65);
}

.whatsapp-icon-footer {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-bottom {
    max-width: 1200px;
    margin: 5rem auto 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-gray-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pain-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 3rem 1.5rem;
    }
    
    .pain-header {
        text-align: center;
    }
    
    .pain-title {
        font-size: 2rem;
    }
    
    .pain-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pain-conclusion {
        align-items: center;
        text-align: center;
    }

    .hero-visual {
        height: auto;
        min-height: 500px;
    }
    
    .mockup-img {
        max-width: 100%;
        width: 100%;
        max-height: 500px;
        left: 0;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .info-card-container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-cards-grid-5 .price-card:last-child {
        grid-column: span 2;
    }
    
    .benefits-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-cta-container {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
        gap: 3rem;
    }
    
    .footer-cta-left {
        max-width: 100%;
    }
    
    .curly-arrow-container {
        display: none;
    }
    
    .footer-cta-right {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 100px;
    }
    
    .header.scrolled .logo-img {
        height: 70px;
    }

    .nav-menu {
        display: none; /* In a real scenario, this would trigger a mobile hamburger */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .btn-escribeme {
        display: none; /* Focus action on landing CTA */
    }
    
    .hero-section {
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .highlight-handwritten {
        font-size: 3.5rem;
    }
    
    .info-card-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .price-badge {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .pain-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-conclusion {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards-grid-5 {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-cards-grid-5 .price-card:last-child {
        grid-column: span 1 !important;
    }
}

/* Base animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
