:root {
    --nav-height: 80px;
    --nav-bg: rgba(0, 0, 0, 0.3);
    --nav-bg-scroll: rgba(0, 0, 0, 0.8);
    --accent-color: #2f4e9b;
    --primary-color: #1d366d; /* Added missing primary color variable */
}


.logo {
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    max-height: calc(var(--nav-height) - 20px);
    transition: all 0.3s ease;
}

nav.scrolled .logo-img {
    max-height: 40px;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    background-color: #121212; /* Match dark theme */
    min-height: 100vh; /* Ensure full viewport coverage */
}

.video-background {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.5)
    );
    z-index: 2;
    backdrop-filter: blur(2px);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    box-sizing: border-box;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--nav-bg-scroll);
    height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

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

nav a:hover::after {
    width: 100%;
}

.video-text {
    position: absolute;
    top: 33%;
    left: 10%;
    color: white;
    text-align: left;
    z-index: 3;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.video-text p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #3a5ec2;
}

.video-text.loaded {
    opacity: 1;
}

.section {
    padding: 5rem 2rem;
    text-align: center;
    padding-top: calc(var(--nav-height) + 2rem);
}

.section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section.video-production {
    background: url('../media/images/kyle-loftus-I-nd-LSCY04-unsplash.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 6rem 2rem;
    padding-top: calc(var(--nav-height) + 2rem);
}

.section.video-production::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 50%, rgba(47, 78, 155, 0.05) 0%, transparent 25%),
            radial-gradient(circle at 85% 30%, rgba(47, 78, 155, 0.05) 0%, transparent 25%);
    z-index: -1;
}

.section.video-production::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f4e9b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.section.video-production .section-container {
    text-align: left;
    padding: 0 10%;
}

.section.video-production h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin-left: 0;
    font-size: 2.5rem;
}

.section.video-production h2::after {
    left: 0;
    transform: none;
}

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

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.section.video-production .service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section.video-production .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 78, 155, 0.15);
    border-color: var(--accent-color);
}

.section.video-production .service-card h3 {
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section.video-production .service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section.video-production .service-card i {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle i {
    color: white;
    font-size: 1.5rem;
}

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg-scroll);
    min-width: 200px;
    backdrop-filter: blur(8px);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Audio Professional Section */
.section.audio-professional {
    background: url('../media/images/dlxmedia-hu-btwOcuJhkJI-unsplash.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
    padding-top: calc(var(--nav-height) + 3rem);
}

.section.audio-professional h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.audio-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audio-service {
    position: relative;
    z-index: 1;
}

.service-content {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border-top: 3px solid var(--accent-color);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-content:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.service-content:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.service-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

/* Corporate Events section */
.section.corporate-events {
    position: relative;
    color: white;
    padding: 8rem 2rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--nav-height) + 3rem);
}

.section.corporate-events h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.section.corporate-events .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.section.corporate-events .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section.corporate-events .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.section.corporate-events .section-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
    padding: 2rem;
}

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

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

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.event-card.featured {
    grid-column: 1;
    grid-row: span 2;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.event-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.event-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.event-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: white;
}

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

.event-icon {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--accent-color);
}

/* Streaming Section Styles */
.section.streaming {
    position: relative;
    color: white;
    padding: 8rem 2rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--nav-height) + 3rem);
}

.section.streaming h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    margin-bottom: 2rem;
}

.section.streaming .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section.streaming .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section.streaming .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.streaming-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.stream-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.stream-text, .stream-image {
    flex: 1;
}

.stream-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.stream-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stream-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.platform {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.platform:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.platform i {
    font-size: 1.2rem;
}

.workflow {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.workflow-step {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Form Styles */
/* Fix for WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Color para el correo electrónico y teléfono */
.section.contact .contact-method span {
    color: white !important;
    text-align: center !important;
    margin: 0 auto !important;
}

/* Asegurar que los iconos también sean visibles */
.section.contact .contact-method i {
    color: var(--accent-color) !important;
    margin-right: 10px !important;
}

/* Reforzar alineación centrada para estos elementos en la forma de contacto */
.section.contact .contact-method {
    justify-content: center !important;
    text-align: center !important;
    margin: 15px auto !important;
    width: 100% !important;
}

.section.contact h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.section.contact .contact-info h3 {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.section.contact .contact-info p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem !important;
}

/* Fin css seccion contacto */


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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.submit-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-color);
}

/* Social Media Icons in Contact Section */
.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Add this to center the icons */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Youtube specific color on hover */
.social-icon:hover .fa-youtube {
    color: #f21818;
}

/* Facebook specific color on hover */
.social-icon:hover .fa-facebook-f {
    color: #1877f2;
}

/* Instagram specific gradient on hover */
.social-icon:hover .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Media Queries */
@media (max-width: 968px) {
    .audio-service {
        flex-direction: column;
        gap: 2rem;
    }

    .audio-service.reverse {
        flex-direction: column;
    }

    .service-content {
        width: 100%;
        box-sizing: border-box;
    }

    .service-image {
        width: 100%;
        height: 300px;
    }

    .events-showcase {
        grid-template-columns: 1fr;
    }

    .stream-row {
        flex-direction: column !important;
        gap: 2rem;
    }

    .stream-text, .stream-row:nth-child(even) .stream-text,
    .stream-image, .stream-row:nth-child(even) .stream-image {
        transform: translateX(0);
    }

    .streaming-content h2 {
        text-align: center;
        margin-left: 0;
    }

    .streaming-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .workflow {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .workflow::before {
        left: 50%;
        top: 25px;
        bottom: 25px;
        width: 2px;
        height: auto;
        transform: translateX(-1px);
    }
}

@media (max-width: 768px) {
    /* Menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 12px;
        z-index: 1001;
        border-radius: 4px;
    }

    /* Main navigation container */
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 0;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hide all menu items except Inicio and Contacto */
    .nav-links > a:not([href$="#inicio"]):not([href$="#nosotros"]):not([href$="#contacto"]):not([href="index.html"]):not([href="portfolio.html"]),
    .nav-links > .dropdown {
        display: none !important;
    }

    /* Regular menu links - only Inicio and Contacto visible */
    .nav-links a[href$="#inicio"],
    .nav-links a[href="index.html"],
    .nav-links a[href$="#nosotros"],
    .nav-links a[href$="#contacto"],
    .nav-links a[href="portfolio.html"] {
        padding: 1.2rem 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.2rem;
        text-align: center;
        transition: background 0.3s;
    }

    /* Everything below is kept for compatibility but won't be visible */
    /* Dropdown container */
    .dropdown {
        width: 100%;
    }

    /* Servicios button styling */
    .dropdown-trigger {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(47, 78, 155, 0.1);
        font-weight: 500;
    }

    /* Arrow indicator */
    .dropdown-trigger::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1.2rem;
        color: #2f4e9b;
        margin-left: 0.5rem;
        transition: transform 0.3s;
    }

    /* Rotate arrow when active */
    .dropdown.active .dropdown-trigger::after {
        transform: rotate(180deg);
    }

    /* Submenu container */
    .dropdown-content {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.4);
        box-shadow: none;
        transition: max-height 0.4s ease-in-out;
        display: block;
    }

    /* Show submenu when active */
    .dropdown.active .dropdown-content {
        max-height: 300px;
    }

    /* Submenu links */
    .dropdown-content a {
        padding: 0.8rem 2rem 0.8rem 2.5rem;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
    }

    /* Visual indicator for submenu items */
    .dropdown-content a::before {
        content: '';
        position: absolute;
        left: 1.5rem;
        top: 50%;
        width: 5px;
        height: 5px;
        background: #2f4e9b;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    /* Active states for better touch feedback */
    .nav-links a:active,
    .dropdown-trigger:active {
        background: rgba(255, 255, 255, 0.15);
    }

    .dropdown-content a:active {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Override hover behavior for mobile */
    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    /* WhatsApp float button styles */
    .whatsapp-float {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
    }

    .whatsapp-float i {
        font-size: 28px !important;
        margin: 0 !important;
    }

    .whatsapp-float span {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        opacity: 0 !important;
        position: absolute !important;
        visibility: hidden !important;
    }

    /* Scroll indicator arrow */
    .scroll-indicator {
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(47, 78, 155, 0.8);
        backdrop-filter: blur(5px);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 900;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        animation: pulse 2s infinite;
        cursor: pointer;
    }

    .scroll-indicator i {
        color: white;
        font-size: 24px;
        animation: bounce 2s infinite;
    }

    @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(47, 78, 155, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(47, 78, 155, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(47, 78, 155, 0);
        }
    }

    /* Hide scroll indicator when user has scrolled down */
    .scroll-indicator.hidden {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
}

/* Updated About Section Styles */
.about-section {
    padding: 6rem 0;
    position: relative;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
    url('../media/images/production-studio.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f4e9b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.5rem; /* Match size with other section headings */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    pointer-events: none;
}

.about-text {
    flex: 1.5;
}

.about-text h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-text > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.8rem;
}

.feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-expertise h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.2rem;
}

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

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.expertise-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

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

.expertise-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.clients-section {
    text-align: center;
}

.clients-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px; /* Espacio entre los logos */
}

.logos-row img {
    max-height: 60px; /* Ajusta según tus necesidades */
    width: auto;
}

.clients-logos img {
    height: 60px;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.3s;
}

.clients-logos img:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

/* ===============================================
   PORTFOLIO STYLES
   =============================================== */
/* Portfolio specific body background */
body[class*="portfolio"] {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1533923156502-be31530547c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

/* Glass effect navbar for portfolio */
body[class*="portfolio"] nav {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-header {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.portfolio-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.portfolio-tab {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem 1rem;
    background: #2a2a2a;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-tab.active, .portfolio-tab:hover {
    background: #2f4e9b;
    color: white;
}

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

.portfolio-item {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.portfolio-item-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-item-image {
    height: 0;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
}

.portfolio-item-content {
    padding: 1.5rem;
}

.portfolio-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.portfolio-item-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.portfolio-item-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.portfolio-item-tag {
    font-size: 0.8rem;
    background: rgba(47, 78, 155, 0.3);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Social media section - portfolio specific */
.social-media-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.social-media-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-media-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-media-icon:hover {
    transform: translateY(-8px);
}

.social-media-icon.youtube:hover {
    background-color: #FF0000;
}

.social-media-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-icon.facebook:hover {
    background-color: #4267B2;
}

/* YouTube video modal styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.video-thumbnail img {
    width: 100%;
    transition: transform 0.3s;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}
