:root {
            --primary: #5B21B6;
            --secondary: #10B981;
            --accent: #F59E0B;
            --dark: #1F2937;
            --light: #F9FAFB;
            --text-muted: #6B7280;
            --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #E5E7EB;
        }

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

        .logo-container {
            display: flex;
            flex-direction: column;
            gap: 0.1rem; /* Reducido de 0.25rem a 0.1rem para más compacto */
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2; /* Añadido para mayor compactación */
        }

        .logo-subtitle {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 500;
            line-height: 1.1; /* Añadido para mayor compactación */
        }

        .nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav a:hover {
            color: var(--primary);
        }

        .back-to-top {
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 99;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            font-size: 1.5rem;
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--primary);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* Hero Bio Section */
        .bio-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            padding: 0rem 0;
            margin-bottom: 4rem;
        }

        .bio-image-container {
            position: relative;
        }

        .bio-image {
            width: 100%;
            max-width: 400px;
            height: 400px;
            border-radius: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 0 auto;
        }

        .bio-image::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8rem;
        }

        .bio-pattern {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .bio-pattern-1 {
            top: -50px;
            right: -50px;
        }

        .bio-pattern-2 {
            bottom: -50px;
            left: -50px;
        }

        .bio-content h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--dark) 0%, #4B5563 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .bio-subtitle {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .bio-text {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .bio-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

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

        .bio-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .bio-stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .bio-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-download {
            padding: 0.875rem 2rem;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-download:hover {
            background: #4C1D95;
            transform: translateY(-2px);
        }

        .btn-contact {
            padding: 0.875rem 2rem;
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-contact:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Section Title */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .section-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        /* Timeline Experience */
        .experience-section {
            margin-bottom: 6rem;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            transform: translateX(-50%);
        }

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

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

        .timeline-content {
            flex: 1;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-shadow-hover);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 4rem;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 4rem;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary);
            border: 4px solid var(--light);
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-date {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%) translateY(-30px);
            background: var(--primary);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .company-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            border: 2px solid #E5E7EB;
            overflow: hidden;
            flex-shrink: 0;
        }

        .company-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .company-details h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .company-name {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .role-description {
            color: #4B5563;
            margin-bottom: 1rem;
        }

        .achievements {
            list-style: none;
        }

        .achievements li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: #4B5563;
        }

        .achievements li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        .tech-pills {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .tech-pill {
            padding: 0.25rem 0.75rem;
            background: var(--light);
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 500;
        }

        /* Media Section - UPDATED DESIGN */
        .media-section {
            margin-bottom: 6rem;
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: var(--card-shadow);
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .media-card {
            background: var(--light);
            border-radius: 16px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .media-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-shadow);
        }

        /* NEW: Media logo taking full width at top */
        .media-logo-header {
            width: 100%;
            height: 120px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 1px solid #E5E7EB;
        }

        .media-logo-header img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .media-content {
            padding: 1.5rem;
        }

        .media-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .media-info {
            flex: 1;
        }

        .media-type {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .media-podcast { background: #FEE2E2; color: #DC2626; }
        .media-article { background: #DBEAFE; color: #2563EB; }
        .media-interview { background: #D1FAE5; color: #059669; }
        .media-conference { background: #FEF3C7; color: #D97706; }
        .media-televisión { background: #E1BEE7; color: #7B1FA2; }
        .media-noticia { background: #F3E5F5; color: #8E24AA; }
        .media-periódico { background: #E8F5E9; color: #2E7D32; }
        .media-radio { background: #FFE0B2; color: #E65100; }

        .media-outlet {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--dark);
        }

        .media-title {
            color: #4B5563;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .media-date {
            color: var(--text-muted);
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .media-link {
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--primary);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .media-link:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        /* Values Section */
        .values-section {
            margin-bottom: 6rem;
        }

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

        .value-card {
            background: linear-gradient(135deg, white, rgba(139, 92, 246, 0.05));
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--card-shadow-hover);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
        }

        .value-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .value-description {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* About Extended Section */
        .about-extended {
            margin-bottom: 6rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .about-text h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .about-text p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #4B5563;
            margin-bottom: 1.5rem;
        }

        .about-quote {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(16, 185, 129, 0.05));
            border-left: 4px solid var(--primary);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.25rem;
            color: var(--dark);
            border-radius: 0 16px 16px 0;
        }

        .about-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            align-content: start;
        }

        .about-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }

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

        .about-img-1 {
            grid-column: span 2;
            height: 450px;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            background: white;
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--card-shadow);
        }

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

        .highlight-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .highlight-card h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .highlight-card p {
            color: var(--text-muted);
        }

        /* Contact Section */
        .contact-section {
            margin-bottom: 4rem;
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--card-shadow);
        }

        .contact-intro {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-intro h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .contact-intro p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .whatsapp-form {
            margin-bottom: 2rem;
        }

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

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #F9FAFB;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #25D366;
            background: white;
            box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
        }

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

        .whatsapp-btn {
            width: 100%;
            background: #25D366;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .contact-info {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #E5E7EB;
        }

        .contact-hours {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .contact-response {
            color: #059669;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }
            
            .logo {
                font-size: 1.25rem;
            }

            .logo-subtitle {
                font-size: 0.75rem;
            }
            
            .bio-hero {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .bio-image {
                max-width: 300px;
                height: 300px;
                margin-bottom: 2rem;
            }
            
            .bio-content h1 {
                font-size: 2rem;
            }
            
            .bio-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .bio-cta {
                justify-content: center;
            }
            
            /* Timeline Mobile Adjustments */
            .timeline::before {
                left: 15px; /* Reducido de 20px a 15px */
            }
            
            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: column;
                padding-left: 40px; /* Reducido de 60px a 40px */
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin: 0;
            }
            
            .timeline-dot {
                left: 15px; /* Reducido de 20px a 15px */
            }
            
            .timeline-date {
                left: 45px; /* Ajustado de 60px a 45px */
                transform: translateY(-30px);
            }
            
            .section-title {
                font-size: 2rem;
                flex-direction: column;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-images {
                margin-top: 2rem;
            }
            
            .about-highlights {
                padding: 2rem;
            }
            
            /* Fix media cards overflow on mobile */
            .media-section {
                padding: 1.5rem;
            }
            
            .media-grid {
                gap: 1rem;
            }
            
            .media-card {
                break-inside: avoid;
            }

            .media-logo-header {
                height: 100px;
            }
            
            .media-content {
                padding: 1rem;
            }
            
            .media-title {
                font-size: 0.875rem;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            /* Contact form mobile styles */
            .contact-container {
                padding: 1.5rem;
                margin: 0 1rem;
            }
            
            .contact-intro h3 {
                font-size: 1.25rem;
            }
            
            .whatsapp-btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* Floating Back to Top Button */
        .floating-back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 56px;
            height: 56px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(100px);
            pointer-events: none;
            z-index: 1000;
        }

        .floating-back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .floating-back-to-top:hover {
            background: #4C1D95;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
        }