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

/* Modern Custom Cursor */
body {
    cursor: none !important;
}

body * {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, #00E676 0%, #00C853 30%, transparent 70%);
    border: 3px solid #00E676;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: none;
    mix-blend-mode: screen;
    box-shadow: 
        0 0 25px #00E676,
        0 0 50px rgba(0, 230, 118, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.6),
        0 0 100px rgba(0, 230, 118, 0.2);
    animation: masculineCursorPulse 1.5s ease-in-out infinite;
    opacity: 1 !important;
    visibility: visible !important;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff 0%, #00E676 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 1),
        0 0 20px rgba(0, 230, 118, 0.8);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.4) 0%, rgba(0, 200, 83, 0.2) 50%, transparent 80%);
    border-color: #00E676;
    border-width: 4px;
    box-shadow: 
        0 0 40px #00E676,
        0 0 80px rgba(0, 230, 118, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.4),
        0 0 120px rgba(0, 230, 118, 0.3);
    animation: masculineHoverPulse 0.8s ease-in-out infinite;
}

@keyframes masculineCursorPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        box-shadow: 
            0 0 25px #00E676,
            0 0 50px rgba(0, 230, 118, 0.4),
            inset 0 0 15px rgba(255, 255, 255, 0.6),
            0 0 100px rgba(0, 230, 118, 0.2);
    }
    50% { 
        transform: scale(1.15);
        opacity: 0.9;
        box-shadow: 
            0 0 35px #00E676,
            0 0 70px rgba(0, 230, 118, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.8),
            0 0 140px rgba(0, 230, 118, 0.3);
    }
}

@keyframes masculineHoverPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 40px #00E676,
            0 0 80px rgba(0, 230, 118, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.4),
            0 0 120px rgba(0, 230, 118, 0.3);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 
            0 0 60px #00E676,
            0 0 120px rgba(0, 230, 118, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.6),
            0 0 180px rgba(0, 230, 118, 0.4);
    }
}

/* Glitch Effect - Disabled for cleaner text */
/* .glitch effect disabled for better readability */

/* Holographic Overlay */
.holographic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.02) 50%, transparent 70%);
    animation: holographicShift 8s ease-in-out infinite;
}

@keyframes holographicShift {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Matrix Rain Effect - Disabled */
.matrix-rain {
    display: none;
}

/* Neon Glow Effects */
.neon-glow {
    text-shadow: 
        0 0 5px var(--accent-color),
        0 0 10px var(--accent-color),
        0 0 15px var(--accent-color),
        0 0 20px var(--accent-color);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 5px var(--accent-color),
            0 0 10px var(--accent-color),
            0 0 15px var(--accent-color),
            0 0 20px var(--accent-color);
    }
    to {
        text-shadow: 
            0 0 2px var(--accent-color),
            0 0 5px var(--accent-color),
            0 0 8px var(--accent-color),
            0 0 12px var(--accent-color);
    }
}

/* Floating Code Elements */
.code-float {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.3;
    animation: codeFloat 15s linear infinite;
    pointer-events: none;
}

@keyframes codeFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* 3D Card Hover Effects */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(20px);
}

/* Particle Trail for Mouse */
.mouse-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.8;
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes epicTrailFade {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) rotate(360deg);
    }
}

/* Matrix Fall Animation */
@keyframes matrixFall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Modern Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s;
}

/* Pulse animation for primary buttons */
.btn-primary {
    animation: subtle-pulse 3s infinite;
}

/* Special pulse for secondary buttons (Agendar Reunión) */
.btn-secondary {
    animation: calendar-pulse 2.5s infinite;
}

@keyframes subtle-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 255, 136, 0.5); }
}

@keyframes calendar-pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(74, 144, 226, 0.7);
        transform: scale(1.02);
    }
}

/* Card entrance animations - ULTRA FAST & SMOOTH */
.animate-card {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.02s; }
.animate-card:nth-child(2) { animation-delay: 0.04s; }
.animate-card:nth-child(3) { animation-delay: 0.06s; }
.animate-card:nth-child(4) { animation-delay: 0.08s; }

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating animation for cards - FASTER & SMOOTHER */
.floating-card {
    animation: floating 2s ease-in-out infinite;
}

.floating-card:nth-child(even) {
    animation-delay: -1s;
}

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

/* Enhanced hover effects for service cards - FAST RESPONSE */
.service-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.service-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-8px) scale(1.02) !important;
    box-shadow: var(--shadow-premium), 0 0 30px rgba(0, 255, 136, 0.3) !important;
}

/* Calendly Integration Styles */
.calendly-container {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.calendly-note {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

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

.calendly-external-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #00E676, #00C853);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.calendly-external-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00C853, #00E676);
}

.booking-modal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    width: 95%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
    max-height: 95vh;
    overflow-y: auto;
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--accent-color), #1abc9c);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close-booking-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-booking-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.booking-modal-body {
    padding: 2rem;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-info-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.booking-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-info-card h4 {
    color: #1B5E20;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.booking-info-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.booking-form-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.modern-booking-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row:has(.form-group:nth-child(2)) {
    grid-template-columns: 1fr 1fr;
}

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

.form-group label {
    font-weight: 600;
    color: #1B5E20;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-book-now {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), #1abc9c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-book-now:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-book-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.booking-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.booking-message.success {
    background: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #00C853;
}

.booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alternative-contact {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.alternative-contact p {
    color: #1B5E20;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option.sebastian {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #1B5E20;
}

.contact-option.sebastian:hover {
    border-color: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.contact-option.valentina {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #1B5E20;
}

.contact-option.valentina:hover {
    border-color: #00C853;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.contact-avatar {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.contact-option strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-option span {
    font-size: 0.8rem;
    opacity: 0.8;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .booking-modal-content {
        margin: 1% auto;
        width: 98%;
        border-radius: 15px;
    }
    
    .booking-modal-header {
        padding: 1.5rem;
    }
    
    .booking-modal-body {
        padding: 1.5rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .form-row:has(.form-group:nth-child(2)) {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .booking-modal-header h2 {
        font-size: 1.4rem;
    }
}

:root {
    /* PALETA COLORES VASECOM */
    --primary-color: #212121;              /* Negro/Gris oscuro - detalles y contraste */
    --secondary-color: #E8F5E9;            /* Verde Suave de Fondo */
    --accent-color: #00E676;               /* Verde Fosforescente Principal - Botones, títulos */
    --accent-secondary: #00C853;           /* Verde Secundario / Contraste */
    --accent-dark: #1B5E20;                /* Verde Oscuro - Textos, logos, detalles */
    --text-dark: #212121;                  /* Negro para textos principales */
    --text-light: #1B5E20;                 /* Verde oscuro para textos secundarios */
    --text-white: #FFFFFF;                 /* Blanco - Textos secundarios, precio */
    --gradient-primary: linear-gradient(135deg, #1B5E20 0%, #00C853 100%);
    --gradient-accent: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    --gradient-secondary: linear-gradient(135deg, #00C853 0%, #1B5E20 100%);
    --shadow-light: 0 2px 10px rgba(0, 230, 118, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 230, 118, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 230, 118, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 230, 118, 0.4);
    --shadow-premium: 0 25px 50px rgba(0, 230, 118, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 15px;
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%) !important;
        color: white !important;
        border: 3px solid #4A90E2 !important;
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .btn-secondary:hover, .btn-secondary:active {
        background: linear-gradient(135deg, #357ABD 0%, #2968A3 100%) !important;
        transform: translateY(-2px) scale(1.03) !important;
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.7) !important;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: linear-gradient(135deg, #00C853 0%, #1B5E20 100%);
    color: white;
    border: 2px solid #00C853;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
    font-weight: 600;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1B5E20 0%, #00C853 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
    border-color: #00E676;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('grupo.jpg') center/cover no-repeat;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

/* Hide floating-cards on desktop */
.floating-cards {
    display: none;
}

/* Hero responsive para móvil - FOTO ARRIBA LIMPIA */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 0;
        position: relative;
        /* Imagen de fondo DIRECTA para asegurar que aparezca */
        background: 
            linear-gradient(180deg, 
                transparent 0%, 
                transparent 50%, 
                rgba(26, 26, 46, 0.7) 50%, 
                rgba(44, 62, 80, 0.9) 75%, 
                #1a1a1a 100%
            ),
            url('grupo.jpg');
        background-size: cover, cover;
        background-position: center bottom, center 30%;
        background-repeat: no-repeat, no-repeat;
    }
    
    /* Overlay para mejor contraste del texto */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.1) 0%, 
            rgba(0, 0, 0, 0.2) 40%, 
            rgba(0, 0, 0, 0.6) 60%, 
            rgba(26, 26, 46, 0.9) 100%
        );
        z-index: 1;
        pointer-events: none;
    }
}

/* Desktop: Adjust position to show all 4 members */
@media (min-width: 1200px) {
    .hero {
        background-position: center 20%;
    }
}

/* Desktop: Ensure founders are side by side */
@media (min-width: 769px) {
    .founders-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto 4rem auto;
    }
    
    .team-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Channels already handled by main .channels-grid rule */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-content {
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-container {
        text-align: center;
        align-items: center;
        padding: 0 1rem;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
    text-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 10;
    position: relative;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    max-width: fit-content;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(37, 211, 102, 0.6),
        0 0 35px rgba(37, 211, 102, 0.4);
    font-weight: 900;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: white;
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7);
    z-index: 10;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    max-width: fit-content;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: auto;
    }
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.floating-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-color);
}

.card-1 {
    top: 5%;
    left: 15%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    top: 25%;
    left: 5%;
    animation-delay: 4s;
}

.card-4 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--accent-color);
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #212121 0%, #1B5E20 20%, #00C853 40%, #00E676 60%, #00C853 80%, #1B5E20 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 230, 118, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 200, 83, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(27, 94, 32, 0.2) 0%, transparent 50%);
    animation: floatingBubbles 20s linear infinite;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicesPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,230,118,0.15)"/><circle cx="8" cy="8" r="0.8" fill="rgba(0,200,83,0.12)"/><circle cx="32" cy="32" r="1" fill="rgba(27,94,32,0.18)"/><rect x="15" y="15" width="1" height="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23servicesPattern)"/></svg>');
    animation: patternMove 25s linear infinite;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.services .section-header h2,
.services .section-header p {
    color: white;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 255, 0.2);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transform-style: preserve-3d;
    flex: 0 0 320px;
    max-width: 350px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--accent-color);
    font-size: 0.9rem;
}

.service-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.calendar-btn {
    background: transparent;
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
    cursor: pointer;
}

.calendar-btn:hover {
    background: var(--accent-secondary);
    color: white;
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-white);
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.results-text .section-title {
    color: var(--text-white);
}

.results-text .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-bottom: 2rem;
}

.results-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(10px);
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.results-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-size="8" fill="rgba(255,105,180,0.1)" text-anchor="middle">💕</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00E676, #00C853, #1B5E20, #004D00);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid #00E676;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
    margin: 0 2rem;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 350px;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #00E676, #00C853) border-box;
}

.timeline-content h3 {
    color: #1B5E20;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-content strong {
    color: #00E676;
    font-weight: 600;
}

/* Story CTA Card */
.story-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.love-business-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #00E676, #00C853, #1B5E20) border-box;
    position: relative;
    overflow: hidden;
}

.love-business-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    animation: loveShine 4s infinite;
    z-index: 1;
}

@keyframes loveShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.founders-avatars {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-bottom: 1rem;
}

.founder-mini-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.founder-mini-avatar:first-child {
    border-color: #FFD700;
}

.founder-mini-avatar:last-child {
    border-color: #00C853;
    margin-left: -15px;
}

.love-business-card h3 {
    color: #1B5E20;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00E676, #00C853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.love-business-card p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.story-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive para la historia */
@media (max-width: 768px) {
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 1rem 0 0;
        flex-shrink: 0;
    }
    
    .timeline-content {
        max-width: none;
        padding: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .love-business-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .love-business-card h3 {
        font-size: 1.5rem;
    }
    
    .story-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .story-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Leadership Section - Dynamic Background */
.leadership {
    padding: 6rem 0;
    background: linear-gradient(135deg, #212121 0%, #1B5E20 20%, #00C853 40%, #00E676 60%, #00C853 80%, #1B5E20 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

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

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 188, 156, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(44, 62, 80, 0.15) 0%, transparent 50%);
    animation: floatingBubbles 20s linear infinite;
    z-index: 1;
}

@keyframes floatingBubbles {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.leadership::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dynamicPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(52,152,219,0.1)"/><circle cx="8" cy="8" r="0.8" fill="rgba(26,188,156,0.08)"/><circle cx="32" cy="32" r="1" fill="rgba(44,62,80,0.12)"/><rect x="15" y="15" width="1" height="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dynamicPattern)"/></svg>');
    animation: patternMove 25s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-10px, -10px); }
    50% { transform: translate(10px, -5px); }
    75% { transform: translate(-5px, 10px); }
    100% { transform: translate(0, 0); }
}

.leadership .container {
    position: relative;
    z-index: 2;
}

/* Founders Section */
.founders-section {
    margin-bottom: 5rem;
}

.founders-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.founders-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00E676, #00C853);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .founders-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .founder-card {
        transform: scale(1) !important;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .team-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .team-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

.founder-card {
    position: relative;
    transform: scale(1.05);
    box-shadow: var(--shadow-premium);
}

.founder-card .leader-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.founder-card .skill-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-card .skill-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.founder-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E676, #00C853);
    color: #212121;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
    text-transform: uppercase;
}

.cofounder-card .founder-badge {
    background: linear-gradient(135deg, #00C853, #1B5E20);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.5);
}

/* Team Section */
.team-section {
    margin-top: -2rem;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: scale(1) !important;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    transform: scale(0.95);
    opacity: 0.95;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: scale(0.98);
    opacity: 1;
}

.team-avatar .avatar-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.team-card .leader-info h3 {
    font-size: 1.3rem;
}

.team-card .leader-info h4 {
    font-size: 1rem;
    color: var(--text-light);
}

.leader-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

.ceo-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FFD700, #FFA500) border-box;
}

.ceo-card::before {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.cofounder-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #00C853, #1B5E20) border-box;
}

.cofounder-card::before {
    background: linear-gradient(135deg, #00C853, #1B5E20);
}

.leader-avatar {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.ceo-card .avatar-img {
    border-color: #FFD700;
}

.cofounder-card .avatar-img {
    border-color: #00C853;
}

.avatar-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    border: 3px solid white;
    box-shadow: var(--shadow-medium);
}

.ceo-card .avatar-overlay {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.cofounder-card .avatar-overlay {
    background: linear-gradient(135deg, #00C853, #1B5E20);
}

.team-avatar .avatar-img {
    width: 100px;
    height: 100px;
    border-width: 3px;
}

.team-avatar .avatar-overlay {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-width: 2px;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: var(--transition);
}

.ceo-card .avatar-placeholder {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.cofounder-card .avatar-placeholder {
    background: linear-gradient(135deg, #00C853, #1B5E20);
}

.leader-card:hover .avatar-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.leader-card:hover .avatar-img {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.leader-card:hover .avatar-overlay {
    transform: scale(1.2) rotate(-5deg);
}

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-info h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.ceo-card .leader-info h4 {
    color: #FFA500;
}

.cofounder-card .leader-info h4 {
    color: #00C853;
}

.leader-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.skill-tag {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.leader-contact {
    margin-top: 1.5rem;
}

.contact-leader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-leader:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.leadership-cta {
    background: var(--primary-color);
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.leadership-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Channels Section */
.channels {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.channel-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: transform 0.3s ease;
}

.whatsapp-card::before {
    background: var(--gradient-accent);
}

.shopify-card::before {
    background: var(--gradient-secondary);
}

.automation-card::before {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
}

.channel-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-premium);
}

.channel-card:hover .channel-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.channel-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.whatsapp-card .channel-icon {
    background: var(--gradient-accent);
}

.shopify-card .channel-icon {
    background: var(--gradient-secondary);
}

.automation-card .channel-icon {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
}

.channel-icon i {
    font-size: 2rem;
    color: white;
}

.channel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.channel-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.channel-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.channel-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.channel-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.channel-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
    color: var(--text-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info .section-title {
    color: var(--text-white);
    text-align: left;
}

.contact-info .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

.calendar-contact {
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.calendar-contact:hover {
    background: rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.5);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.whatsapp-link,
.instagram-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.instagram-link:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.calendar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    text-align: left;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.calendar-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.success-modal {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

.success-modal h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-modal p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Intersection Observer Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }

    .results-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-stats {
        grid-template-columns: 1fr 1fr;
    }

    .channels-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .channel-card {
        flex: none !important;
        width: 100% !important;
        max-width: 350px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-card {
        display: none;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Badge responsive */
@media (max-width: 768px) {
    .founder-badge {
        padding: 0.7rem 2rem;
        font-size: 0.75rem;
        min-width: 120px;
        top: -12px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .founder-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.7rem;
        min-width: 100px;
        top: -10px;
        letter-spacing: 0.8px;
    }
}

/* Responsividad completa para móvil */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        background: rgba(0, 0, 0, 0.85) !important;
        padding: 1.2rem 1.8rem !important;
        margin-bottom: 1.5rem;
        border-radius: 20px;
        color: white !important;
        text-shadow: 
            2px 2px 8px rgba(0, 0, 0, 1),
            0 0 15px rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        font-weight: 800 !important;
        line-height: 1.1;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.3rem) !important;
        background: rgba(0, 0, 0, 0.8) !important;
        padding: 1rem 1.5rem !important;
        margin-bottom: 2rem;
        border-radius: 15px;
        color: rgba(255, 255, 255, 0.98) !important;
        text-shadow: 
            1px 1px 4px rgba(0, 0, 0, 1),
            0 0 10px rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 1.4;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-height: 100vh;
        padding: 0 1rem 2rem 1rem;
        position: relative;
        z-index: 2;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 2rem 0;
        position: relative;
        z-index: 3;
        /* Posicionar en la parte inferior */
        margin-top: auto;
        padding-bottom: 1rem;
    }
    
    /* Ocultar elementos flotantes originales en móvil */
    .hero-visual {
        display: none;
    }
    
    /* Floating cards organizadas y bonitas */
    .floating-cards {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr 1fr !important;
        gap: 1.2rem !important;
        position: relative;
        margin-top: 1.5rem;
        z-index: 4;
        width: 100%;
        max-width: 360px;
        padding: 0;
    }
    
    .floating-cards .floating-card {
        position: relative !important;
        transform: none !important;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(20px);
        border-radius: 18px;
        padding: 1.2rem;
        border: 2px solid rgba(0, 255, 136, 0.8);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(0, 255, 136, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 0.9rem;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.6rem;
        min-height: 80px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    }
    
    .floating-cards .floating-card:hover {
        transform: translateY(-3px) scale(1.02);
        border-color: #00E676;
        box-shadow: 
            0 12px 40px rgba(0, 255, 136, 0.3),
            0 0 30px rgba(0, 255, 136, 0.4);
        background: rgba(0, 0, 0, 0.95);
    }
    
    .floating-cards .floating-card i {
        color: #00E676;
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
    }
    
    .floating-cards .floating-card span {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Asegurar que founders-grid mantenga 2 columnas en desktop */
    .founders-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        flex: none !important;
        width: 100% !important;
        max-width: 350px !important;
        display: flex !important;
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .leader-card {
        margin: 0 auto;
        max-width: 280px;
    }
    
    .avatar-img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .founder-card .avatar-img {
        width: 100px !important;
        height: 100px !important;
    }
}

    .nav-container {
        padding: 1rem 15px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .channel-card {
        flex: none !important;
        width: 100% !important;
        max-width: 350px !important;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card,
    .channel-card {
        padding: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions,
    .success-actions {
        flex-direction: column;
    }

    .service-actions {
        flex-direction: column;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: none;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }

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

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

    .founders-title {
        font-size: 2rem;
    }

    .team-title {
        font-size: 1.5rem;
    }

    .leader-card {
        padding: 2rem;
    }

    .leadership-cta {
        padding: 2rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

/* CLEAN DESKTOP CHANNELS - HORIZONTAL LAYOUT */
@media screen and (min-width: 769px) {
    .channels-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }
    
    .channel-card {
        width: 100% !important;
        max-width: none !important;
        min-width: auto !important;
    }
}

/* MOBILE CHANNELS - ENSURE THEY APPEAR */
@media (max-width: 768px) {
    .channels {
        padding: 4rem 0 !important;
        background: var(--secondary-color) !important;
    }
    
    .channels .channels-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .channels .channel-card {
        width: 100% !important;
        max-width: 350px !important;
        min-height: 400px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        background: white !important;
        border-radius: var(--border-radius) !important;
        box-shadow: var(--shadow-light) !important;
        padding: 2rem !important;
        text-align: center !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .channels .channel-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .channels .channel-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        color: var(--primary-color) !important;
    }
    
    .channels .channel-card p {
        color: var(--text-light) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .channels .channel-features {
        list-style: none !important;
        margin-bottom: 1.5rem !important;
    }
    
    .channels .channel-features li {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        color: var(--text-light) !important;
        text-align: left !important;
    }
    
    .channels .channel-features li::before {
        content: '✓' !important;
        color: var(--accent-color) !important;
        font-weight: bold !important;
        margin-right: 0.5rem !important;
    }
}