.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
}

.btn-primary {
    padding: 12px 25px;
    background: #ffffff;
    color: #1565c0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.services {
    padding: 60px 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* HEADER – versión corregida con degradado */
.topbar-app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;

    /* 🔥 Degradado azul noche */
    background: linear-gradient(90deg, #001f3f, #003366) !important;

    /* 🔥 Efecto vidrio suave sin oscurecer el degradado */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}



.logo-img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.menu a {
    margin-left: 30px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
}

    .menu a:hover {
        color: #ffffff;
    }

/* BODY */
.body-content {
    padding-top: 0px;
    background-color: #0a0a0f; /* 🔥 Azul noche elegante */
    color: white; /* Para que el texto se vea bien */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}



/* FOOTER */
.footer {
    background: #000 !important;
    color: #ccc;
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    margin-top: 0px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    margin: 5px 0;
}
.hero-gv {
    margin-top: 100px;
    height: 420px;
    background-image: url("images/Fondo broadcast.jpg"); /* 🔥 Tu imagen */
    background-size: cover; /* La imagen cubre todo */
    background-position: center left; /* Centrada */
    background-repeat: no-repeat; /* No se repite */

    display: flex;
    align-items: center;
    padding-left: 80px;
    color: white;
}


.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-gv {
    padding: 12px 30px;
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.hero-gv {
    transition: background-image 1s ease-in-out;
}
.hero-gv {
    position: relative; /* Necesario para el overlay */
    margin-top: 100px;
    height: 420px;
    background-image: url("images/Fondo broadcast.jpg");
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: white;
    transition: background-image 1s ease-in-out; /* Para el fade */
}

    /* 🔥 Overlay oscuro encima de la imagen */
    .hero-gv::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.10); /* Ajusta la intensidad */
        z-index: 1;
    }

    /* 🔥 Para que el texto quede encima del overlay */
    .hero-gv > * {
        position: relative;
        z-index: 2;
    }
    /*aqui va el menu de servicios */
.services-apple {
    padding: 100px 20px;
    text-align: center;
    background-color: #0a0a0f; /* Azul noche */
    color: white;
}

    .services-apple h2 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 60px;
        letter-spacing: 1px;
    }

.service-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.service-item {
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-8px);
        opacity: 0.9;
    }

.service-icon {
    width: 100px;
    height: 70px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}
.video-section {
    width: 100%;
    height: 540px;
    overflow: hidden;
    background: black;
}

.brand-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.about-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

    .about-section h2 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .about-section p {
        font-size: 18px;
        line-height: 1.8;
        color: #d0d0d0;
        margin-bottom: 25px;
    }
.mv-section {/* mision y vision efecto*/
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

.mv-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.mv-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    width: 320px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    }

    .mv-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .mv-card p {
        font-size: 17px;
        line-height: 1.7;
        color: #dcdcdc;
    }
.mv-section {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.mv-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.mv-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    width: 320px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

    .mv-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .mv-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(0,150,255,0.25), transparent 70%);
        z-index: 0;
        opacity: 0.6;
        animation: haloPulse 4s ease-in-out infinite;
    }

    .mv-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

    .mv-card p {
        font-size: 17px;
        line-height: 1.7;
        color: #dcdcdc;
        position: relative;
        z-index: 1;
    }

/* Animaciones */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes haloPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
/*linea soft*/
.soft-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0,150,255,1), rgba(0,150,255,0.6), rgba(0,150,255,1));
    margin: -5px 0 35px 0;
    position: relative;
    opacity: 1;
    animation: fadeGlow 1.5s ease forwards;
}

    .soft-line::before {
        content: "";
        position: absolute;
        top: -18px;
        left: 0;
        width: 100%;
        height: 45px;
        background: radial-gradient(circle, rgba(0,150,255,0.55), transparent 70%);
        filter: blur(25px);
        animation: glowPulse 4s ease-in-out infinite;
    }

/* Animaciones */
@keyframes fadeGlow {
    to {
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}


@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
.clients-section {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 80px;
    animation: slideClients 30s linear infinite;
    width: max-content;
}

    .clients-track img {
        height: 75px;
        filter: brightness(0) invert(1);
        opacity: 0.85;
        transition: opacity .3s ease, transform .3s ease;
    }

        .clients-track img:hover {
            opacity: 1;
            transform: scale(1.1);
        }

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/*contacto y redes sociales footer*/
/* Footer base */
.fx-footer {
    background: #000;
    padding: 45px 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

    /* Halo azul suave */
    .fx-footer::before {
        content: "";
        position: absolute;
        top: -35px;
        left: 0;
        width: 100%;
        height: 70px;
        background: radial-gradient(circle, rgba(0,150,255,0.25), transparent 70%);
        filter: blur(30px);
        opacity: 0.7;
    }

/* Logo */
.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Columnas */
.fx-footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
}

.fx-footer-col p {
    color: #ccc;
    margin: 6px 0;
    font-size: 15px;
}

.fx-footer-col span {
    color: #fff;
}

/* Redes sociales */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.social-item img {
    width: 32px;
    height: 32px;
    opacity: 0.85;
    transition: 0.3s ease;
    filter: brightness(0) invert(1); /* logos blancos */
}

    .social-item img:hover {
        opacity: 1;
        transform: scale(1.12);
    }
.footer-contact {
    text-align: center;
    width: 100%;
}

    .footer-contact h4,
    .footer-contact p,
    .footer-contact small {
        margin: 5px 0;
    }

.fx-footer-col.redes {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}
.social-item img {
    width: 32px;
    height: 32px;
    opacity: 0.85;
    transition: 0.3s ease;
    filter: brightness(0) invert(1); /* logos blancos */
}

/* Glow azul al hover */
.social-item:hover img {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(0,150,255,0.8));
}
/*contacto formulario*/
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background: #000;
    gap: 60px;
    margin-top: 100px; /* súbelo o bájalo según lo necesites */
}

.contact-left h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-left p {
    color: #ccc;
    font-size: 16px;
}

.contact-form {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    width: 420px;
    box-shadow: 0 0 25px rgba(0,150,255,0.15);
}
.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff !important;
    font-size: 15px;
}

       .contact-form textarea {
        height: 120px;
        resize: none;
    }

.contact-btn {
    width: 100%;
    padding: 14px;
    background: #0096ff;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .contact-btn:hover {
        background: #0077cc;
    }

/* Fuerza el color del texto en todos los estados de Blazor */
input.input,
textarea.input,
.input,
input.input.valid,
input.input.modified,
textarea.input.valid,
textarea.input.modified {
    color: #fff !important;
    caret-color: #fff !important;
}
/* 🔥 Forzar que la barra esté SIEMPRE encima del hero */
/* BLOQUE DESACTIVADO — ESTABA TAPANDO EL MENÚ MÓVIL
.topbar-app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(90deg, #001f3f, #003366) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
*/
.topbar-app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(90deg, #001f3f, #003366) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.layout-mobile-menu {
    position: fixed !important;
    top: 100px !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(0,0,0,0.9) !important;
    padding: 20px !important;
    display: none !important;
    flex-direction: column !important;
    z-index: 999999 !important;
}

    .layout-mobile-menu.open {
        display: flex !important;
    }

.hamburger {
    position: relative;
    z-index: 10000 !important;
}

/* 🔥 Overlay universal para el hero */
.hero,
.hero *,
.hero::before,
.hero::after,
.hero-section,
.hero-section *,
.hero-section::before,
.hero-section::after,
.hero-container,
.hero-container *,
.hero-container::before,
.hero-container::after {
    position: relative;
    z-index: 2;
}

    .hero::before,
    .hero-section::before,
    .hero-container::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55); /* 🔥 oscurece la imagen */
        z-index: 1;
    }

/* 🔥 Elimina el scroll horizontal en TODO el sitio */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* 🔥 Asegura que la barra superior nunca rompa el ancho */
.topbar-app {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* 🔥 Evita que el menú móvil empuje el layout */
.mobile-menu {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
