        :root {
            /* Colores principales del logo */
            --fride-green:   #27E5A7;
            --fride-yellow:  #F5DD3A;
            --fride-orange:  #FF9A35;
            --fride-red:     #FF4F45;
            --fride-magenta: #D643FF;
            --fride-blue:    #3A63FF;
            --fride-cyan:    #33C8FF;

            /* Colores para textos y elementos */
            --primary: var(--fride-blue);
            --primary-dark: #2a4fd6;
            --secondary: var(--fride-magenta);
            --success: var(--fride-green);
            --warning: var(--fride-yellow);
            --danger: var(--fride-red);
            --info: var(--fride-cyan);
            --accent: var(--fride-orange);

            /* Colores neutros */
            --light: #f8f9fa;
            --dark: #0f172a;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;

            /* Gradientes */
            --gradient: linear-gradient(135deg,
                var(--fride-green) 0%,
                var(--fride-yellow) 15%,
                var(--fride-orange) 30%,
                var(--fride-red) 50%,
                var(--fride-magenta) 70%,
                var(--fride-blue) 85%,
                var(--fride-cyan) 100%);

            --gradient-subtle: linear-gradient(135deg,
                rgba(39, 229, 167, 0.1) 0%,
                rgba(245, 221, 58, 0.1) 25%,
                rgba(255, 154, 53, 0.1) 50%,
                rgba(214, 67, 255, 0.1) 75%,
                rgba(51, 200, 255, 0.1) 100%);

            /* Tipografía */
            --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --font-code: 'JetBrains Mono', 'Courier New', monospace;
            --font-laravel: 'Nunito', sans-serif;

            /* Sombras */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

            /* Bordes */
            --radius-sm: 0.375rem;
            --radius: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-full: 9999px;

            /* Transiciones */
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

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

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 5rem 0;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: var(--radius-full);
        }

        .section-title p {
            color: var(--gray-600);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-body);
            gap: 0.5rem;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

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

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

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .logo-animation {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-code);
            font-size: 2rem;
            font-weight: 700;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            animation: rotate 3s linear infinite;
        }

        .logo-text {
            display: flex;
        }

        .logo-loop {
            position: relative;
            color: var(--fride-cyan);
        }

        .logo-loop::after {
            content: 'loop';
            position: absolute;
            left: 0;
            color: var(--fride-magenta);
            animation: loopText 4s infinite;
        }

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

        @keyframes loopText {
            0%, 100% {
                content: 'loop';
                color: var(--fride-magenta);
            }
            25% {
                content: 'dev';
                color: var(--fride-green);
            }
            50% {
                content: 'code';
                color: var(--fride-blue);
            }
            75% {
                content: 'tech';
                color: var(--fride-orange);
            }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }



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

        .nav-link {
            font-weight: 500;
            color: var(--gray-700);
            position: relative;
            padding: 0.5rem 0;
        }

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

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: var(--transition);
        }

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

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

        /* Hero Section */
        .hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233a63ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

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

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .hero h1 .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray-300);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* About Section */
        .about {
            background-color: white;
        }

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

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

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--gray-600);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Tech Stack Section */
        .tech-stack {
            background: var(--gradient-subtle);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .tech-item {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
        }

        .tech-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .tech-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .tech-name {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .tech-level {
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* Portfolio Section */
        .portfolio {
            background-color: white;
        }

        .portfolio-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1.5rem;
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-full);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .portfolio-item {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .portfolio-img {
            height: 200px;
            background: var(--gradient-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 3rem;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .portfolio-tag {
            background: var(--gradient-subtle);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 500;
        }

        /* Mission & Vision */
        .mission-vision {
            background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
            color: white;
        }

        .mission-vision .section-title h2 {
            color: white;
        }

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

        .mv-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mv-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--fride-cyan);
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        /* Experience Section */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--gradient);
        }

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            width: calc(50% - 2rem);
        }

        .timeline-item:nth-child(odd) {
            margin-left: auto;
            padding-left: 3rem;
        }

        .timeline-item:nth-child(even) {
            margin-right: auto;
            padding-right: 3rem;
            text-align: right;
        }

        .timeline-dot {
            position: absolute;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--gradient);
            border-radius: 50%;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            left: -9px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: -9px;
        }

        /* Contact Section */
        .contact {
            background: white;
        }

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

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-top: 0.25rem;
        }

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

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(58, 99, 255, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Map Section */
        .map-section {
            padding: 0;
            height: 400px;
        }

        #map {
            height: 100%;
            width: 100%;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }

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

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-code);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--gray-400);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-400);
            font-size: 0.875rem;
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.75rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 8rem 0 3rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

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

            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-toggle {
                display: block;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 4rem !important;
                text-align: left !important;
            }

            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 21px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.875rem;
            }

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

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




/****/


    /* Estilos base de la sección about */
    .about-desktop {
        display: block;
    }

    .about-mobile {
        display: none;
    }

    /* Estilos para versión desktop */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .code-container {
        background: var(--gradient-subtle);
        padding: 1.5rem;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

    .code-wrapper {
        background: white;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        overflow: auto;
        max-width: 100%;
    }

    .code-display {
        font-family: var(--font-code);
        font-size: 0.875rem;
        color: var(--gray-700);
        margin: 0;
        white-space: pre;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Colores del código para desktop */
    .code-keyword { color: var(--fride-magenta); }
    .code-class { color: var(--fride-blue); }
    .code-function { color: var(--fride-green); }
    .code-string { color: var(--fride-orange); }
    .code-this { color: var(--gray-600); }

    /* Estilos para versión móvil */
    .about-mobile .about-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .mobile-skills {
        background: var(--gradient-subtle);
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .skills-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .skills-title h4 {
        color: var(--primary);
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }

    .skills-title p {
        color: var(--gray-600);
        font-size: 0.875rem;
    }

    .skills-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .skill-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
    }

    .skill-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }

    .skill-name {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--gray-700);
    }

    .skills-approach {
        background: white;
        padding: 1rem;
        border-radius: var(--radius);
        text-align: center;
        box-shadow: var(--shadow-sm);
    }

    .approach-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .approach-icon {
        font-size: 1.25rem;
    }

    .approach-title h5 {
        color: var(--primary);
        font-size: 1rem;
        margin: 0;
    }

    .approach-text {
        color: var(--gray-700);
        font-weight: 500;
        font-size: 0.9375rem;
        margin: 0;
    }

    .about-description {
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Media Queries para cambiar entre versiones */
    @media (min-width: 769px) {
        .about-desktop {
            display: block;
        }

        .about-mobile {
            display: none;
        }
    }

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

        .about-mobile {
            display: block;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 300px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: var(--gradient-subtle);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            color: var(--gray-600);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
    }

    @media (max-width: 480px) {
        .skills-list {
            grid-template-columns: 1fr;
        }

        .about-stats {
            grid-template-columns: 1fr;
            max-width: 200px;
        }

        .mobile-skills {
            padding: 1.25rem;
        }

        .skill-item {
            padding: 0.625rem;
        }
    }

    @media (max-width: 360px) {
        .mobile-skills {
            padding: 1rem;
        }

        .skills-title h4 {
            font-size: 1.125rem;
        }

        .skill-name {
            font-size: 0.8125rem;
        }
    }
































