/* ==========================================================================
   GAEVANS IWEB - GENERAL STYLESHEET
   ========================================================================== */

:root {
    --primary: #4361ee;
    --primary-dark: #3f37c9;
    --primary-gradient: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    --secondary: #2ec4b6;
    --secondary-gradient: linear-gradient(135deg, #2ec4b6 0%, #06b6d4 100%);
    --dark: #0f172a;
    --dark-blue: #14233c;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --color-whatsapp: #25d366;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Helper Classes */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    font-weight: 500;
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    padding: 14px 32px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-premium-primary {
    background: var(--primary-gradient);
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.25);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.35);
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-premium-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-premium-outline:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);
}

/* Header & Navigation */
.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar-premium.sticky {
    padding: 12px 0;
    background: rgba(20, 35, 60, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-premium.sticky .logo-brand {
    color: var(--white) !important;
}

.logo-brand span {
    color: var(--primary);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link-custom:hover {
    color: var(--secondary) !important;
}

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

/* Hero Section */
.hero-section {
    background-color: #030712;
    color: var(--white);
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(46, 196, 182, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-showcase.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

/* Pillars List */
.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.pillar-meta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #38bdf8;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pillar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pillar-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.pillar-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.15);
    border: 1px solid rgba(67, 97, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.pillar-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.pillar-dot {
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    transition: var(--transition);
}

/* Pillar Hover Effects */
.pillar-item:hover .pillar-icon-wrapper {
    background: var(--primary);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.pillar-item:hover .pillar-title {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.pillar-item:hover .pillar-dot {
    transform: scale(1.5);
    background-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

/* Paragraph */
.hero-paragraph {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-paragraph span {
    color: #38bdf8;
    font-weight: 700;
}

/* Micro-features Row */
.micro-features-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.micro-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.mf-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.mf-text {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.mf-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}

.micro-feature-item:hover .mf-icon {
    color: #38bdf8;
    transform: translateY(-3px);
}

.micro-feature-item:hover .mf-text {
    color: var(--white);
}

/* Realidad Button */
.btn-vision {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-vision:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary) 100%);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.5);
    transform: translateY(-2px);
    color: var(--white);
}

/* Right Image / Slider Container */
.hero-right-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .hero-right-slider-container {
        margin-left: 40px;
        width: calc(100% - 40px);
    }
}

.hero-premium-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    flex-grow: 1;
    overflow: hidden;
}

/* Slide item structure */
.premium-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

.premium-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    opacity: 0;
    transition: transform 1.6s cubic-bezier(0.1, 0.8, 0.2, 1),
                opacity 1s ease;
}

.premium-slide.active .slide-device-img {
    transform: scale(1);
    opacity: 1;
}

/* Glassmorphism Slider Buttons */
.slider-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: background 0.3s, border-color 0.3s, opacity 0.3s, transform 0.3s;
}

.hero-right-slider-container:hover .slider-control-btn {
    opacity: 1;
    visibility: visible;
}

.slider-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #38bdf8;
}

.slider-control-btn.prev {
    left: 20px;
}

.slider-control-btn.next {
    right: 20px;
}

.slider-control-btn.prev:active {
    transform: translateY(-50%) scale(0.9);
}

.slider-control-btn.next:active {
    transform: translateY(-50%) scale(0.9);
}

/* Staggered Progress Timeline Indicators */
.slider-progress-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(3, 7, 18, 0.6);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.indicator-item.active {
    opacity: 1;
}

.indicator-number {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.indicator-line-progress {
    width: 100%;
    min-width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.indicator-line-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress-width, 0%);
    background: #38bdf8;
    border-radius: 2px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-right-slider-container {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .hero-premium-slider {
        min-height: 400px;
    }
    
    .slider-control-btn {
        opacity: 0.8;
        visibility: visible;
        width: 44px;
        height: 44px;
    }
    
    .pillar-title {
        font-size: 1.8rem;
    }
    
    .micro-features-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .micro-feature-item {
        flex: 1 1 calc(50% - 10px);
    }
    
    .mf-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .pillar-title {
        font-size: 1.4rem;
    }
    
    .pillar-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .hero-right-slider-container {
        min-height: 300px;
        border-radius: 16px;
    }
    
    .hero-premium-slider {
        min-height: 300px;
    }
    
    .slider-control-btn {
        display: none;
    }
    
    .slider-progress-indicators {
        bottom: 15px;
        padding: 5px 12px;
        gap: 10px;
    }
    
    .indicator-line-progress {
        width: 100%;
        min-width: 35px;
    }
    
    .btn-vision {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/* Why Choose Section */
.why-section {
    padding: 100px 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.why-feature-item:hover {
    background-color: var(--light-bg);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sequential Highlight Animation for Feature Icons */
@keyframes iconSequentialHighlight {
    0%, 25%, 100% {
        background: rgba(67, 97, 238, 0.1);
        color: var(--primary);
        transform: scale(1) rotate(0deg);
        box-shadow: none;
    }
    12.5% {
        background: var(--primary-gradient);
        color: var(--white);
        transform: scale(1.18) rotate(8deg);
        box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
    }
}

.why-features .why-feature-item:nth-child(1) .why-feature-icon {
    animation: iconSequentialHighlight 8s infinite;
    animation-delay: 0s;
}

.why-features .why-feature-item:nth-child(2) .why-feature-icon {
    animation: iconSequentialHighlight 8s infinite;
    animation-delay: 2s;
}

.why-features .why-feature-item:nth-child(3) .why-feature-icon {
    animation: iconSequentialHighlight 8s infinite;
    animation-delay: 4s;
}

.why-features .why-feature-item:nth-child(4) .why-feature-icon {
    animation: iconSequentialHighlight 8s infinite;
    animation-delay: 6s;
}

/* Hover over feature item halts automatic animation and lights up the icon */
.why-feature-item:hover .why-feature-icon {
    animation: none !important;
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.18) rotate(8deg);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(67, 97, 238, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(46, 196, 182, 0.1) 100%);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Showcase Section */
.showroom-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(125deg, #ffffff, #f8fafc, #eff6ff, #f8fafc, #ffffff);
    background-size: 400% 400%;
    animation: movingGradient 18s ease infinite;
    overflow: hidden;
}

/* Background image overlay with opacity */
.showroom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/iweb_codigo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08; /* Subtle code background pattern */
    z-index: 1;
    pointer-events: none;
}

@keyframes movingGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Background glowing blobs */
.showroom-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.showroom-bg-blob-1 {
    width: 350px;
    height: 350px;
    background: rgba(67, 97, 238, 0.12); /* primary blue */
    top: -50px;
    left: -100px;
    animation: floatBlob1 22s infinite alternate ease-in-out;
}

.showroom-bg-blob-2 {
    width: 450px;
    height: 450px;
    background: rgba(46, 196, 182, 0.1); /* secondary teal */
    bottom: -100px;
    right: -100px;
    animation: floatBlob2 28s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(120px, 90px) scale(1.15);
    }
    100% {
        transform: translate(-40px, 160px) scale(0.9);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-140px, -70px) scale(0.85);
    }
    100% {
        transform: translate(90px, -140px) scale(1.1);
    }
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.showroom-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.showroom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(67, 97, 238, 0.25);
}

.showroom-preview {
    height: 220px;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.showroom-image {
    width: 85%;
    height: 80%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.showroom-card-header {
    height: 20px;
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
}

.showroom-card-body {
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showroom-info {
    padding: 25px;
}

.showroom-badge {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.showroom-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.showroom-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 15px;
}

/* Planes Section */
.planes-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.planes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .planes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 45px 35px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.08);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 5px;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Saber más section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Footer Section */
.premium-footer {
    background-color: #050505;
    color: #c9d8e5;
    padding: 5rem 0 0 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.premium-footer h3.footer-logo {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.premium-footer h3.footer-logo span {
    color: var(--primary);
}

.premium-footer h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 4rem 20px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-about p {
    color: #a0b2c6;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.footer-links-grid a {
    color: #a0b2c6;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-grid a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem 0;
    background-color: #020202;
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .footer-bottom-flex {
        flex-direction: row;
    }
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #7b8e9f;
}

.footer-bottom .credits a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.footer-bottom .credits a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Floating WhatsApp Button (cta widget) */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    pointer-events: none;
}

.whatsapp-float-container > * {
    pointer-events: auto;
}

.whatsapp-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse-ring,
.whatsapp-pulse-ring-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    opacity: 0.4;
    z-index: -1;
}

.whatsapp-pulse-ring {
    animation: whatsapp-pulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.whatsapp-pulse-ring-2 {
    animation: whatsapp-pulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite 1.1s;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-chat-bubble {
    position: relative;
    width: 320px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                visibility 0.4s;
}

.whatsapp-chat-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-bubble-header {
    background: var(--primary-gradient);
    padding: 15px 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.chat-bubble-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-bubble-info {
    display: flex;
    flex-direction: column;
}

.chat-bubble-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.chat-bubble-status {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-whatsapp);
    animation: dot-blink 1.5s infinite;
}

@keyframes dot-blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.chat-bubble-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-bubble-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.chat-bubble-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
}

.chat-bubble-body p {
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: left;
}

.chat-bubble-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-whatsapp);
    color: var(--white) !important;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.chat-bubble-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Bootstrap Grid Adjustments for non-Bootstrap layout if not fully imported */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        padding: 0 15px;
    }
    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        padding: 0 15px;
    }
}

/* Responsiveness Media Queries */
@media (max-width: 991px) {
    .navbar-premium {
        background: rgba(20, 35, 60, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(20, 35, 60, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        padding: 25px 0;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }
    
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .showcase-container {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.1rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .price-card {
        padding: 35px 25px;
    }
    
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    
    .whatsapp-chat-bubble {
        width: 280px;
    }
}

/* ==========================================================================
   SCROLL REVEAL SYSTEM
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.scroll-reveal.scroll-up {
  transform: translateY(40px);
}

.scroll-reveal.scroll-down {
  transform: translateY(-40px);
}

.scroll-reveal.scroll-left {
  transform: translateX(-40px);
}

.scroll-reveal.scroll-right {
  transform: translateX(40px);
}

.scroll-reveal.scroll-zoom {
  transform: scale(0.92);
}

/* Revealed active state */
.scroll-reveal.revealed {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for grid items */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

