/* CSS Reset & Variables */
:root {
    /* Theme: Light & Colorful */
    --bg-color: #ffffff;
    --bg-secondary: #fdfbf7;
    /* Warm white */

    --text-primary: #2d3250;
    /* Navy */
    --text-secondary: #676f9d;
    /* Muted Navy */
    --text-muted: #676f9d;

    /* Expanded Color Palette */
    --accent: #f9b17a;
    /* Peach */
    --accent-pop: #ff7e67;
    /* Coral */
    --accent-cool: #7fb5b5;
    /* Sage/Teal */
    --accent-purple: #9d8db1;
    /* Soft Purple */
    --accent-deep-purple: #7b2cbf;
    /* Darker Purple for Pack Completo */
    --accent-gold: #ffd700;
    /* For new badges/stars */

    --accent-light: #fff0e3;

    /* Accent Hovers (Slightly darker versions) */
    --accent-hover: #e6a069;
    --accent-hover-pop: #e66a55;
    --accent-hover-cool: #6fa6a6;
    --accent-hover-purple: #5a189a;

    --accent-vibrant-purple: #9d4edd;
    --accent-vibrant-light: #c77dff;

    /* Neutral/Grays */
    --gray-100: #f8f9fa;
    --gray-200: #eee;
    --gray-300: #ccc;
    --gray-400: #bbb;
    --gray-500: #999;
    --gray-700: #444;

    /* External Brands */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Specific UI Hues */
    --text-primary-hover: #424769;
    --lavender-light: #f3e5f5;
    --lavender-soft: #f8f0ff;

    --black: #000000;
    --white: #ffffff;
    --accent-cool-light: #e0f2f1;

    /* Gradients */
    --gradient-text: linear-gradient(45deg, var(--white), var(--accent));
    --gradient-warm: linear-gradient(135deg, var(--accent) 0%, var(--accent-pop) 100%);
    --gradient-cool: linear-gradient(135deg, var(--accent-cool-light) 0%, var(--accent-cool) 100%);
    --gradient-purple: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-deep-purple) 100%);

    --fiesta-pink: #ff007f;
    --fiesta-blue: #00ffff;
    --fiesta-yellow: #ffd700;
    --fiesta-orange: #ff7e67;
    --fiesta-purple: #9d4edd;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(45, 50, 80, 0.05);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --container-width: 1100px;
    --radius-lg: 24px;
    --radius-md: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

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

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

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

.mobile-only {
    display: none;
}

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

/* Responsive Br */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: inline-block;
}

.btn.sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--text-primary);
    /* Navy Button for contrast */
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 50, 80, 0.2);
    background-color: var(--text-primary-hover);
    /* Slightly lighter navy on hover */
}

.btn-outline {
    border: 1px solid white;
    background: transparent;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: white;
    /* Force all navbar text to be white */
}

.navbar .btn-primary {
    background-color: white;
    color: var(--text-primary);
    font-weight: 600;
}

.navbar .btn-primary:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
}

.navbar .btn-whatsapp-nav {
    background-color: var(--whatsapp);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navbar .btn-whatsapp-nav:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.navbar.scrolled {
    background: var(--text-primary);
    /* Dark Navy Background on Scroll */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Forces Logo to be 100% White */
}

.navbar.scrolled .nav-logo-img {
    filter: brightness(0) invert(1);
    /* Keep it white on scroll too */
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.nav-link i.nav-icon {
    font-size: 1.1rem;
}

/* Common colors for nav link icons */
.nav-link:nth-child(1) i.nav-icon {
    color: var(--accent-pop);
}

.nav-link:nth-child(2) i.nav-icon {
    color: var(--accent-cool);
}

.nav-link:nth-child(3) i.nav-icon {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 1. Immersive Hero */
.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    align-items: center;
    overflow: hidden;
    color: white;
    /* Reverted to white text for dark overlay */
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-media img,
.hero-bg-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-media .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for contrast */
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.pill-badge {
    display: block;
    padding: 0;
    backdrop-filter: none;
    border-radius: 0;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: none;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content .cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--accent-pop);
    vertical-align: text-bottom;
    animation: blinkCursor 0.8s infinite;
    margin-left: 2px;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-content em {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-content p strong {
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Animated Arrows */
.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-arrows i {
    display: block;
    font-size: 1rem;
    margin: -10px 0;
    animation: arrow-scroll 2s infinite;
    opacity: 0;
}

.scroll-arrows i:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrows i:nth-child(2) {
    animation-delay: .2s;
}

.scroll-arrows i:nth-child(3) {
    animation-delay: .4s;
}

@keyframes arrow-scroll {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(0, 10px);
    }
}

/* 2. Narrative Section (Sticky) */
.narrative-section {
    padding: 60px 0;
    position: relative;
}

.sticky-wrapper {
    display: flex;
    gap: 60px;
}

/* Left side: Sticky Phone */
.phone-stage {
    width: 45%;
    height: 80vh;
    /* Viewport height for the sticky area */
    position: sticky;
    top: 10vh;
    /* Center vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sticky Phone Container - Clean (Image Based/User Mockup) */
.phone-frame {
    width: 420px;
    /* Increased slightly to accommodate full mockup */
    height: auto;
    aspect-ratio: 9/19.5;
    /* Typical phone aspect ratio */
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
    display: block;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

/* Screen States (Animated via JS) */
.screen-state {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.screen-state.visible {
    opacity: 1;
    z-index: 2;
}

/* Image Content for Phone */
.phone-img-content {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure the whole mockup is visible */
}

/* Mock UI Elements */
.mock-invite {
    text-align: center;
    width: 80%;
}

.mock-invite small {
    display: block;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.mock-invite h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mock-invite button {
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
}

.mock-camera {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
    background: var(--text-primary);
    color: white;
}

.mock-camera .cam-view {
    width: 100%;
    flex: 1;
    background: url('https://images.unsplash.com/photo-1511285560982-1351cdeb9821?q=80&w=400') center/cover;
    opacity: 0.7;
}

.mock-camera .shutter-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 10px;
}

.mock-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    width: 100%;
    height: 100%;
    align-content: start;
    background: white;
}

.mock-gallery .photo {
    aspect-ratio: 1;
    background-color: var(--bg-secondary);
    background-size: cover;
    border-radius: 4px;
}

.mock-gallery .p1 {
    background-image: url('https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?q=80&w=300');
}

.mock-gallery .p2 {
    background-image: url('https://images.unsplash.com/photo-1520854221256-17451cc330e7?q=80&w=300');
}

.mock-gallery .p3 {
    background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?q=80&w=300');
}

.mock-gallery .p4 {
    background-image: url('https://images.unsplash.com/photo-1519225468359-2996bcd013e9?q=80&w=300');
}

/* Right side: Story Track */
.story-track {
    width: 50%;
    padding-top: 20vh;
    /* Start offset */
    padding-bottom: 20vh;
    /* End offset */
}

.story-step {
    min-height: 50vh;
    /* Each step takes up adequate scroll space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.3;
    transition: opacity 0.5s;
    padding-left: 40px;
}

.mobile-visual {
    display: none;
    /* Hidden on Desktop */
}


.story-step.active {
    opacity: 1;
}

.story-step h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-step p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 400px;
}


/* 3. Bento Grid Section */
.bento-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.section-title em {
    font-style: italic;
    color: var(--accent-pop);
}

/* 3. Projection Showcase Section (Single Feature) */
.bento-section {
    padding: 100px 0;
    background-color: var(--text-primary);
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.section-title em {
    font-style: italic;
    color: var(--accent-pop);
}

/* 3. Live Experience (Cinema Mode - Robust) */
.live-party-section {
    background-color: var(--text-primary);
    /* Deep Dark Blue/Black */
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    /* Optional subtle pattern or gradient */
    background-image: radial-gradient(circle at 70% 50%, var(--text-secondary) 0%, var(--text-primary) 60%);
}

.party-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Text Side */
.party-text {
    z-index: 2;
}

.pill-badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.party-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.text-gradient-red {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.party-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 450px;
}

.party-description strong {
    color: white;
}

.party-features {
    display: flex;
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    font-size: 1.2rem;
}

.text-red {
    color: var(--accent-pop);
}

/* Visual Side - Monitor Mockup */
.party-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.projector-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: rgba(255, 126, 103, 0.4);
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.monitor-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    background: var(--text-primary);
    padding: 12px 12px 0 12px;
    /* Bezel */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--text-secondary);
}

.monitor-screen {
    width: 100%;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.slideshow-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.live-indicator {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    /* More vibrant red for 'live' effect */
    border-radius: 50%;
    position: relative;
}

.dot-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Live Experience New Feature Highlight */
.party-feature-highlight {
    background: rgba(157, 141, 177, 0.1);
    /* accent-purple with low opacity */
    border-left: 3px solid var(--accent-purple);
    padding: 16px 20px;
    margin-bottom: 32px;
    border-radius: 0 12px 12px 0;
    max-width: 450px;
}

.feature-tag {
    background: var(--accent-pop);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.party-feature-highlight h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: white;
}

.party-feature-highlight p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Messages Animation */
.floating-message {
    position: absolute;
    z-index: 10;
    width: 140px;
    /* Adjust based on image size */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.floating-message img {
    width: 100%;
    height: auto;
}

.msg-left {
    left: -60px;
    top: 20%;
    animation: float-left 4s ease-in-out infinite;
}

.msg-right {
    right: -60px;
    bottom: 25%;
    animation: float-right 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes float-left {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes float-right {

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

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.monitor-stand {
    height: 40px;
    width: 120px;
    background: linear-gradient(to bottom, var(--text-primary), var(--black));
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    position: relative;
    z-index: -1;
    /* Behind frame */
}

/* Responsive */
@media (max-width: 992px) {
    .party-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .party-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .party-features {
        justify-content: center;
    }

    .monitor-frame {
        width: 100%;
    }

    .floating-message {
        width: 90px;
    }

    .msg-left {
        left: -10px;
        top: 10%;
    }

    .msg-right {
        right: -10px;
        bottom: 15%;
    }
}


/* 6. Pricing (Visual Cards & Offers) */
.pricing-minimal-section {
    padding: 120px 0;
    background: white;
    color: var(--text-primary);
}

.pricing-minimal-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-minimal-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pricing-minimal-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-layout-wrapper {
    display: flex;
    flex-direction: column;
}

.pricing-swiss-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

/* Standard Individual Cards */
.swiss-card {
    border: 2px solid var(--text-primary);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: white;
    transition: transform 0.3s ease;
}

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

.swiss-card.featured {
    border: 2px solid var(--accent-pop);
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 126, 103, 0.15);
}

.featured-label {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--accent-pop);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    border-radius: 4px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
    color: var(--text-primary);
}

.price-wrapper {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-price-swiss {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 2px;
    display: block;
}

.old-price-swiss::before {
    content: "Antes ";
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-secondary);
}

.swiss-card.featured .plan-price {
    color: var(--accent-pop);
}

.plan-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.swiss-card hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 0 0 15px 0;
    width: 100%;
}

.swiss-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.swiss-card li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
    display: flex;
    gap: 8px;
    line-height: 1.4;
    word-break: break-word;
}

.swiss-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gray-300);
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
}

.swiss-card.featured li::before {
    color: var(--accent-pop);
}

/* Specific Card Themes & Button Overrides */
.swiss-card-mini {
    border-color: var(--accent);
}

.swiss-card-mini .plan-price {
    color: var(--accent);
}

.swiss-card-mini .btn-swiss-outline {
    border-color: var(--accent);
    color: var(--accent);
}

.swiss-card-mini .btn-swiss-outline:hover {
    background-color: var(--accent);
    color: white;
}

.swiss-card-mini .btn-swiss-solid {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
}

.swiss-card-mini .btn-swiss-solid:hover {
    box-shadow: 0 5px 15px rgba(249, 177, 122, 0.4) !important;
}

.swiss-card-invitacion {
    border-color: var(--accent-cool);
}

.swiss-card-invitacion .plan-price {
    color: var(--accent-cool);
}

.swiss-card-invitacion .btn-swiss-outline {
    border-color: var(--accent-cool);
    color: var(--accent-cool);
}

.swiss-card-invitacion .btn-swiss-outline:hover {
    background-color: var(--accent-cool);
    color: white;
}

.swiss-card-invitacion .btn-swiss-solid {
    background-color: var(--accent-cool) !important;
    border-color: var(--accent-cool) !important;
    color: white !important;
}

.swiss-card-invitacion .btn-swiss-solid:hover {
    box-shadow: 0 5px 15px rgba(127, 181, 181, 0.4) !important;
}

.swiss-card-album {
    border-color: var(--accent-purple);
}

.swiss-card-album .plan-price {
    color: var(--accent-purple);
}

.swiss-card-album .btn-swiss-outline {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.swiss-card-album .btn-swiss-outline:hover {
    background-color: var(--accent-purple);
    color: white;
}

.swiss-card-album .btn-swiss-solid {
    background-color: var(--accent-purple) !important;
    border-color: var(--accent-purple) !important;
    color: white !important;
}

.swiss-card-album .btn-swiss-solid:hover {
    box-shadow: 0 5px 15px rgba(157, 141, 177, 0.4) !important;
}

.swiss-card-retro {
    border: 2px dashed var(--accent-vibrant-purple);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.swiss-card-retro .plan-name {
    color: var(--accent-vibrant-purple);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swiss-card-retro .retro-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-pop);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.swiss-card-retro .plan-price {
    color: var(--accent-vibrant-purple);
}

.swiss-card-retro .btn-swiss-outline {
    border-color: var(--accent-vibrant-purple);
    color: var(--accent-vibrant-purple);
}

.swiss-card-retro .btn-swiss-outline:hover {
    background-color: var(--accent-vibrant-purple);
    color: white;
}

.swiss-card-retro .btn-swiss-solid {
    background-color: var(--accent-vibrant-purple) !important;
    border-color: var(--accent-vibrant-purple) !important;
    color: white !important;
}

.swiss-card-retro .btn-swiss-solid:hover {
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4) !important;
}

/* Pricing Buttons Base */
.btn-swiss-solid,
.btn-swiss-outline,
.btn-swiss-primary {
    padding: 8px 0;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    margin-top: 8px;
}

.btn-swiss-solid:hover,
.btn-swiss-outline:hover,
.btn-swiss-primary:hover {
    transform: translateY(-3px);
}

.btn-swiss-solid {
    background: var(--black);
    border: 2px solid var(--black);
    color: white;
}

.btn-swiss-solid:hover {
    filter: brightness(1.1);
}

.btn-swiss-outline {
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
}

.btn-swiss-outline:hover {
    background: var(--black);
    color: white;
}

.btn-swiss-primary {
    background: var(--accent-pop);
    border: 2px solid var(--accent-pop);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.25);
}

.btn-swiss-primary:hover {
    background: var(--accent-hover-pop);
    border-color: var(--accent-hover-pop);
}

/* Helper Button Classes */
.btn-swiss-teal {
    background-color: var(--accent-cool) !important;
    border-color: var(--accent-cool) !important;
    color: white !important;
}

.btn-swiss-purple {
    background-color: var(--accent-purple) !important;
    border-color: var(--accent-purple) !important;
    color: white !important;
}

/* Benefits Drawer & Toggle */
.benefits-drawer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out, margin 0.4s;
    overflow: hidden;
}

.benefits-drawer.is-open {
    grid-template-rows: 1fr;
    margin-bottom: 20px;
}

.benefits-drawer ul {
    min-height: 0;
    margin: 0 !important;
}

.btn-toggle-benefits {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    transition: color 0.3s;
    margin-top: 0;
    margin-bottom: 5px;
}

.btn-toggle-benefits:hover {
    color: var(--text-primary);
}

.btn-toggle-benefits i {
    font-size: 0.75rem;
    transition: transform 0.4s;
}

.btn-toggle-benefits.active i {
    transform: rotate(180deg);
}

.btn-swiss-solid {
    background: var(--black);
    border: 2px solid var(--black);
    color: white;
}

.btn-swiss-outline {
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
}

.btn-swiss-outline:hover {
    background: var(--black);
    color: white;
}

.btn-swiss-primary {
    background: var(--accent-pop);
    border: 2px solid var(--accent-pop);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.25);
}

.btn-swiss-primary:hover {
    background: var(--accent-hover-pop);
    border-color: var(--accent-hover-pop);
    transform: translateY(-2px);
}

/* Full-width Pack Completo card & Grid layout */
.swiss-card-full {
    max-width: 1100px;
    margin: 0 auto;
}

.pack-full-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pack-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.pack-info-side {
    display: flex;
    flex-direction: column;
}

.pack-hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 15px 0 25px 0;
    line-height: 1.5;
}

.pack-promo-side {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
}

.gift-feature-new,
.pack-desktop-cta {
    width: 100%;
    box-sizing: border-box;
}

.gift-feature-new {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(123, 44, 191, 0.1) 100%);
    border: 1px dashed rgba(123, 44, 191, 0.3);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    position: relative;
}

.gift-feature-new i {
    font-size: 2.5rem;
    color: var(--accent-pop);
}

.gift-feature-new span {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--accent-deep-purple);
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.gift-feature-new::before {
    content: '¡NUEVO!';
    position: absolute;
    top: -12px;
    right: -10px;
    background: var(--accent-gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-5px) rotate(3deg);
    }
}

.pack-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.benefit-group {
    display: flex;
    flex-direction: column;
}

.benefit-group-title {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.invitacion-group .benefit-group-title {
    color: var(--accent-cool);
}

.album-group .benefit-group-title {
    color: var(--accent-deep-purple);
}

.benefit-group ul {
    margin: 0 !important;
    padding: 0 !important;
}

.benefit-group li {
    margin-bottom: 10px !important;
    font-size: 0.9rem !important;
}

.pack-desktop-cta {
    margin-top: 0 !important;
}

.pack-mobile-cta {
    display: none;
}

.pack-footer-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pack-integration-footer-new {
    width: 100%;
    padding-top: 20px;
    border-top: 1px dashed rgba(123, 44, 191, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pack-integration-footer-new i {
    color: var(--accent-pop);
}

/* Unified Responsive Pricing Section */
@media (max-width: 992px) {
    .pricing-swiss-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .swiss-card {
        padding: 30px 20px;
    }

    .swiss-card-full {
        order: -1;
        margin: 0 10px 40px 10px;
    }

    .pack-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .pack-info-side {
        align-items: center;
    }

    .pack-hero-tagline {
        font-size: 1rem;
        margin: 10px 0 20px 0;
    }

    .pack-desktop-cta {
        display: none;
    }

    .pack-mobile-cta {
        display: block;
        margin-top: 10px;
        width: 100%;
    }

    .pack-footer-container {
        align-items: center;
        width: 100%;
    }

    .pack-integration-footer-new {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .pack-integration-footer-new span {
        text-align: center;
        margin: 0 auto;
        line-height: 1.4;
        display: block;
    }

    .mobile-only {
        display: block;
    }

    .pack-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* Footer */
.footer-minimal {
    padding: 20px 0;
    background-color: var(--text-primary);
    /* Dark Navy */
    color: white;
    border-top: none;
    /* Remove separator */
}

/* Flex Container for Horizontal Layout */
.footer-minimal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    /* Override text-center from HTML if needed, though flex handles alignment */
    flex-wrap: wrap;
    /* Allow wrapping on very small screens */
    gap: 20px;
}

.logo-footer {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.socials {
    margin: 0;
    /* Remove vertical margin */
    font-size: 1.2rem;
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-minimal p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile adjust */
@media (max-width: 600px) {
    .footer-minimal .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* WhatsApp Button (Palette Color) */
.btn-whatsapp {
    background-color: var(--text-primary);
    /* Brand Navy (Dark) */
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: var(--accent-pop);
    /* Hover to Coral */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 126, 103, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    /* Responsive Bento */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card-large,
    .card-tall,
    .card-medium {
        grid-column: span 1;
        grid-row: auto;
    }

    /* Responsive Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 50px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .card-tall {
        min-height: 300px;
    }

    /* Responsive Sticky Section (Stack it) */
    .sticky-wrapper {
        flex-direction: column;
    }

    .phone-stage {
        display: none;
        /* Hide sticky phone on mobile */
    }

    .story-track {
        width: 100%;
        padding: 0;
    }

    .mobile-visual {
        display: block;
        width: 100%;
        /* max-width removed to allow full size */
        margin: 0 auto;
    }

    .step-img {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .story-step {
        min-height: auto;
        margin-bottom: 80px;
        /* Increased from 40px */
        opacity: 1;
        padding: 0;

        /* Zigzag Layout Logic */
        display: flex;
        flex-direction: column;
        /* Default stack for very small screens */
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .step-content {
        display: contents;
        /* Allows children to be reordered with flex parent */
    }

    .story-step h2 {
        order: 1;
        width: 100%;
    }

    .mobile-visual {
        order: 2;
        width: 100%;
        margin-bottom: 10px;
    }

    .story-step p {
        order: 3;
    }

    .story-step .demo-link {
        order: 4;
    }

    /* Tablet/Mobile Landscape: Side by Side Zigzag */
    @media (min-width: 600px) {
        .story-step {
            flex-direction: row;
            text-align: left;
            gap: 40px;
        }

        .story-step:nth-child(even) {
            flex-direction: row-reverse;
            text-align: left;
            /* Keep text aligned left even if on left side? User didn't specify alignment, but row-reverse puts text left. */
        }

        .mobile-visual {
            flex: 1;
        }

        .step-content {
            flex: 1;
        }
    }

    .story-step p {
        margin: 0;
    }

    .pricing-wrapper {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .pricing-info {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .features-list {
        display: inline-block;
        text-align: left;
    }
}

/* Floating WhatsApp Button */
.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--whatsapp-dark);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Hide floating button when mobile menu is open */
body.menu-open .btn-whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}

/* Demo Links Styling */
.demo-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-pop);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.demo-link:hover {
    color: var(--accent-pop);
    border-bottom-color: transparent;
}

.btn-live-demo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--text-primary);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 40px;
    /* Space before features */
    transition: transform 0.2s;
}

.btn-live-demo:hover {
    transform: scale(1.05);
    background: var(--gray-100);
}

/* Pricing Helpers */
.price-suffix {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
    vertical-align: middle;
    margin-left: 4px;
}

.highlight-purple {
    color: var(--accent-deep-purple);
    font-weight: 700 !important;
}

.savings-badge {
    background: var(--accent-pop);
    /* accent-pop to stand out from the purple themes */
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 800;
    display: inline-block;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 12px rgba(255, 126, 103, 0.4);
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.savings-badge:hover {
    transform: scale(1.2) rotate(0deg);
}

.gift-feature {
    color: var(--accent-deep-purple) !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    background: rgba(123, 44, 191, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    /* Left align */
    gap: 10px;
    /* Remove width: 100% to avoid overflow if box-sizing is missing/different */
    width: 100%;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
    /* Establish boundary */
    position: relative;
    border: 1px solid rgba(123, 44, 191, 0.2);
    animation: featurePulse 2s infinite;
}

.gift-feature::after {
    content: '¡NUEVO!';
    position: absolute;
    top: -12px;
    right: -10px;
    background: var(--accent-gold);
    /* Gold/Yellow for attention */
    color: var(--black);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: badgeFloat 2s ease-in-out infinite;
}

@keyframes featurePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 44, 191, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(123, 44, 191, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(123, 44, 191, 0);
    }
}

@keyframes badgeFloat {

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

    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

.new-feature-item {
    color: var(--accent-deep-purple) !important;
    font-weight: 700 !important;
}

/* Hamburger Menu Base Styles */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1001;
    /* Above mobile menu overlay */
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s;
}

.hamburger .close-icon {
    display: none;
}

.hamburger.is-active .menu-icon {
    display: none;
}

.hamburger.is-active .close-icon {
    display: block;
}

/* Mobile Menu & Hamburger Animation */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    /* Modern Glassmorphic Bottom Sheet */
    .nav-actions {
        position: fixed;
        bottom: 0;
        top: auto;
        /* Override top: 0 if present */
        left: 0;
        width: 100%;
        height: auto;
        padding: 40px 24px 40px 24px;
        background: rgba(30, 33, 56, 0.85);
        /* Deep glassmorphic navy */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        gap: 12px;
        z-index: 1000;
        border-radius: 36px 36px 0 0;
        /* App-like bottom sheet radius */
        box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* Subtle premium edge */
    }

    /* Drag Handle Indicator */
    .nav-actions::before {
        content: '';
        position: absolute;
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
        height: 6px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 10px;
    }

    .nav-actions.is-active {
        transform: translateY(0);
    }

    /* App-like navigation blocks */
    .nav-link {
        display: flex;
        align-items: center;
        font-size: 1.15rem;
        font-weight: 600;
        color: white;
        text-align: left;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease;
        text-decoration: none;
    }

    .nav-link:active {
        background: rgba(255, 255, 255, 0.15);
    }

    /* Staggered Animation Details */
    .nav-actions.is-active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-actions.is-active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-actions.is-active .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-actions.is-active .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-actions.is-active .btn {
        transition-delay: 0.25s;
        opacity: 1;
        transform: translateY(0);
    }

    /* The CTA button in the menu */
    .nav-actions .btn {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        margin-top: 12px;
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        font-size: 1.15rem;
        border-radius: 16px;
        /* Match links styling */
        justify-content: center;
        align-items: center;
        /* ALIGN ICON AND TEXT */
        display: flex;
        box-sizing: border-box;
        gap: 12px;
        /* SPACE BETWEEN ICON AND TEXT */
        background: var(--whatsapp);
        color: white;
        border: none;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

    .nav-actions .btn i {
        font-size: 1.4rem;
    }

    .nav-link i.nav-icon {
        margin-right: 14px;
        font-size: 1.3rem;
        opacity: 1;
        /* Made brighter */
        width: 24px;
        text-align: center;
    }

    /* Specific colors for nav link icons */
    .nav-link:nth-child(1) i.nav-icon {
        color: var(--accent-pop);
    }

    .nav-link:nth-child(2) i.nav-icon {
        color: var(--accent-cool);
    }

    .nav-link:nth-child(3) i.nav-icon {
        color: var(--accent-gold);
    }
}

/* PROMO FIESTA THEME EXTRAS */
.pricing-minimal-section.promo-fiesta-theme {
    position: relative;
    overflow: hidden;
    /* Festive gradient background */
    background: linear-gradient(135deg, #fff5f8 0%, #f0f7ff 100%);
}

/* Floating Sparkles/Confetti Animation */
.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    top: -10%;
    color: var(--fiesta-pink);
    font-size: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Use pseudo-element for the sparkle/star icon content */
.sparkle::before {
    content: '\f005'; /* fa-star */
}

/* Specific icons for a mix of star and festive shapes */
.sparkle:nth-child(3n)::before {
    content: '\f069'; /* fa-asterisk */
}
.sparkle:nth-child(4n)::before {
    content: '\f004'; /* fa-heart */
}
.sparkle:nth-child(5n)::before {
    content: '\f79f'; /* fa-champagne-glasses */
}

/* Falling Animation with some swing */
@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(110vh) rotate(720deg) translateX(50px);
        opacity: 0;
    }
}

/* 
   Randomize Sparkles via nth-child 
*/
.sparkle:nth-child(1) {
    left: 5%;
    animation: fall 8s linear infinite;
    font-size: 24px;
    color: var(--fiesta-pink);
}

.sparkle:nth-child(2) {
    left: 15%;
    animation: fall 12s linear infinite 2s;
    font-size: 16px;
    color: var(--fiesta-blue);
}

.sparkle:nth-child(3) {
    left: 25%;
    animation: fall 10s linear infinite 4s;
    color: var(--fiesta-yellow);
}

.sparkle:nth-child(4) {
    left: 35%;
    animation: fall 14s linear infinite;
    font-size: 28px;
    color: var(--fiesta-orange);
}

.sparkle:nth-child(5) {
    left: 45%;
    animation: fall 9s linear infinite 1s;
    color: var(--fiesta-purple);
}

.sparkle:nth-child(6) {
    left: 55%;
    animation: fall 11s linear infinite 3s;
    font-size: 18px;
    color: var(--fiesta-pink);
}

.sparkle:nth-child(7) {
    left: 65%;
    animation: fall 13s linear infinite 5s;
    color: var(--fiesta-blue);
}

.sparkle:nth-child(8) {
    left: 75%;
    animation: fall 7s linear infinite 2s;
    color: var(--fiesta-yellow);
}

.sparkle:nth-child(9) {
    left: 85%;
    animation: fall 15s linear infinite;
    font-size: 22px;
    color: var(--fiesta-orange);
}

.sparkle:nth-child(10) {
    left: 92%;
    animation: fall 10s linear infinite 4s;
    color: var(--fiesta-purple);
}

.sparkle:nth-child(11) {
    left: 10%;
    animation: fall 11s linear infinite 6s;
    color: var(--fiesta-blue);
}

.sparkle:nth-child(12) {
    left: 30%;
    animation: fall 13s linear infinite 1s;
    font-size: 26px;
    color: var(--fiesta-pink);
}

.sparkle:nth-child(13) {
    left: 50%;
    animation: fall 9s linear infinite 7s;
    color: var(--fiesta-yellow);
}

.sparkle:nth-child(14) {
    left: 70%;
    animation: fall 12s linear infinite 3s;
    color: var(--fiesta-orange);
}

.sparkle:nth-child(15) {
    left: 90%;
    animation: fall 14s linear infinite 5s;
    color: var(--fiesta-purple);
}

/* Promo Fiesta Details on Cards */
.promo-fiesta-theme .pricing-minimal-header h2 {
    color: var(--fiesta-pink);
}

.promo-fiesta-theme .text-pop {
    background: linear-gradient(45deg, var(--fiesta-pink), var(--fiesta-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.promo-fiesta-theme .swiss-card {
    border-color: rgba(255, 0, 127, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.promo-fiesta-theme .swiss-card:hover {
    border-color: var(--fiesta-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
}

.promo-fiesta-theme .swiss-card.featured {
    border: 2px solid var(--fiesta-pink);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.2);
    background: linear-gradient(to bottom, var(--white), #fff0f5);
}

.promo-fiesta-theme .featured-label {
    background: linear-gradient(45deg, var(--fiesta-pink), var(--fiesta-orange));
}

.promo-fiesta-theme .highlight-purple {
    color: var(--fiesta-purple);
}

.promo-fiesta-theme .gift-feature {
    background: rgba(255, 0, 127, 0.05);
    color: var(--fiesta-pink) !important;
    border-color: rgba(255, 0, 127, 0.1);
}

.promo-fiesta-theme .btn-swiss-primary {
    background: linear-gradient(45deg, var(--fiesta-pink), var(--fiesta-purple));
    border: none;
    color: white;
}

.promo-fiesta-theme .btn-swiss-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Hero Promotional Button (Fiesta Promos) */
.btn-promo-fiesta-hero {
    background: linear-gradient(135deg, var(--fiesta-pink) 0%, var(--fiesta-purple) 100%);
    color: white;
    margin-top: 24px;
    padding: 12px 28px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
    animation: pulse-fiesta 2s infinite;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo-fiesta-hero:hover {
    background: linear-gradient(135deg, #ff409f 0%, #b366ff 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 0, 127, 0.6);
    border-color: white;
    color: white;
}

@keyframes pulse-fiesta {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 127, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
    }
}

/* Countdown Timer Styles */
.countdown-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-deep-purple);
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-block {
    background: white;
    padding: 15px;
    min-width: 80px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(123, 44, 191, 0.1);
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
}

.time-block span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-deep-purple);
    line-height: 1;
    font-family: var(--font-body);
}

.time-block small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 8px;
    }

    .time-block {
        min-width: 65px;
        padding: 10px;
    }

    .time-block span {
        font-size: 1.5rem;
    }
}