
        :root {
            --primary-orange: #FF6B35;
            --crimson: #DC143C;
            --burgundy: #800020;
            --dark-bg: #1a1a2e;
            --darker-bg: #0f0f1e;
            --accent-teal: #16697A;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--darker-bg);
            color: #fff;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--burgundy) 100%);
            padding: 1rem 2rem;
            box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-orange) !important;
            letter-spacing: 2px;
        }

        .navbar-brand span {
            color: #fff;
            font-size: 0.9rem;
            display: block;
            letter-spacing: 3px;
            margin-top: -5px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            margin: 0 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-orange) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* Hero Section with Carousel */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 100vh;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(128, 0, 32, 0.7) 0%, rgba(220, 20, 60, 0.6) 50%, rgba(255, 107, 53, 0.7) 100%);
            z-index: 1;
        }

        .carousel-item img {
            height: 100vh;
            object-fit: cover;
            width: 100%;
        }

        .carousel-caption {
            z-index: 2;
            bottom: 30%;
        }

        .carousel-caption h2 {
            font-size: 4rem;
            font-weight: bold;
            text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .carousel-caption p {
            font-size: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .profile-img {
            width: 350px;
            height: 350px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
            border: 4px solid var(--primary-orange);
        }

        .about-text h2 {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Showreel Section */
        .showreel-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--crimson), var(--primary-orange));
            margin: 1rem auto;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(220, 20, 60, 0.5);
        }

        .video-container video {
            width: 100%;
            display: block;
        }

        /* Skills Slider */
        .skills-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            overflow: hidden;
        }

        .skills-slider {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 3rem;
        }

        .skills-slider:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .skill-item {
            flex: 0 0 auto;
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 107, 53, 0.1);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .skill-item img {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.4));
        }

        .skill-item p {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Work Areas Section */
        .work-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .work-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .work-tab {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--burgundy), var(--crimson));
            border: 2px solid transparent;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .work-tab:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        }

        .work-tab.active {
            background: linear-gradient(135deg, var(--primary-orange), var(--crimson));
            border-color: var(--primary-orange);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .work-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .work-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
        }

        .work-item img,
        .work-item video {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(128, 0, 32, 0.9), rgba(255, 107, 53, 0.9));
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 2rem;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-overlay h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .work-overlay p {
            text-align: center;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 107, 53, 0.3);
            color: #fff;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-orange);
            color: #fff;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--crimson), var(--primary-orange));
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--burgundy), var(--crimson));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--crimson));
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        }

       /* Footer */
footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--burgundy);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

/* Footer Section - FUERA DEL MEDIA QUERY */
.footer-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 60px 0 20px;
    color: #fff;
    border-top: 2px solid rgba(138, 43, 226, 0.3);
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8a2be2;
    font-weight: 700;
}

.email-contact {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.email-contact i {
    color: #8a2be2;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #8a2be2;
    border-color: #8a2be2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, #9d4edd, #5a189a);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .carousel-caption h2 {
        font-size: 2.5rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .skills-slider {
        gap: 2rem;
    }
    
    /* Footer responsive */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 40px;
    }
}
/* Botón Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #9d4edd, #5a189a);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.6);
    border-color: #8a2be2;
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Responsive para el botón */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

   