/* ======================================
   EJE STUDIO MEDIA - ESTILOS GENERALES
   ====================================== */


/* Reinicio de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Variables de colores corporativos */
:root {
    --color-negro: #0B0B0B;
    --color-dorado: #C8A03A;
    --color-blanco: #FFFFFF;
    --color-gris: #A8A8A8;
}


/* Configuración general del sitio */
html {
    scroll-behavior: smooth;
}


/* Estilos del cuerpo */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-negro);
    color: var(--color-blanco);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Configuración de enlaces */
a {
    text-decoration: none;
    color: inherit;
}


/* Configuración de listas */
ul {
    list-style: none;
}


/* Configuración de imágenes */
img {
    max-width: 100%;
    display: block;
}


/* Contenedor general para todas las secciones */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ======================================
   HEADER EJE STUDIO MEDIA
====================================== */

.header {
    width: 100%;
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    background: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 160, 58, 0.3);
    padding: 15px 0;
}


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


/* LOGO */

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-blanco);
}

.logo span {
    display: block;
    font-size: 10px;
    color: var(--color-dorado);
    letter-spacing: 4px;
    margin-top: 5px;
}


/* MENÚ */

.menu ul {
    display: flex;
    gap: 35px;
}


.menu a {
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}


.menu a:hover {
    color: var(--color-dorado);
}


/* BOTÓN DERECHO */

.btn-header {
    background-color: var(--color-dorado);
    color: var(--color-negro);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}


.btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 160, 58, 0.4);
}

/* ======================================
   HERO CINEMATOGRÁFICO
====================================== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Video de fondo */

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;

    object-fit: cover;

    top: 0;
    left: 0;
}


/* Capa oscura */

.overlay {
    position: absolute;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    top: 0;
    left: 0;
}


/* Contenido */

.hero-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 900px;
}


.hero-content h2 {
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 5px;

    margin-bottom: 15px;
}


.hero-content h3 {
    color: var(--color-dorado);

    font-size: 22px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.hero-content p {
    font-size: 18px;

    color: var(--color-gris);

    margin-bottom: 40px;
}


/* Botones */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 20px;

}


/* ======================================
   BOTONES HERO PREMIUM
====================================== */

.btn-primary,
.btn-secondary {
    display: inline-block;

    padding: 15px 35px;

    border-radius: 35px;

    font-weight: 700;

    text-decoration: none;

    transition: all .4s ease;

    position: relative;

    overflow: hidden;
}


/* BOTÓN DORADO */

.btn-primary {
    background: var(--color-dorado);

    color: var(--color-negro);

    box-shadow: 0 8px 20px rgba(200,160,58,.25);
}


.btn-primary:hover {

    transform: translateY(-6px) scale(1.03);

    box-shadow: 0 18px 35px rgba(200,160,58,.55);
}


/* BOTÓN TRANSPARENTE */

.btn-secondary {

    border: 2px solid var(--color-blanco);

    color: var(--color-blanco);

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);
}


.btn-secondary:hover {

    background: var(--color-blanco);

    color: var(--color-negro);

    transform: translateY(-6px);

    box-shadow: 0 15px 30px rgba(255,255,255,.25);
}
/* ================================
   ANIMACIONES HERO
================================ */

.hero-title {
    opacity: 0;
    animation: aparecerTitulo 1.5s ease forwards;
}


.hero-line {
    width: 0;
    height: 3px;
    background: var(--color-dorado);
    margin: 20px auto 25px;
    animation: aparecerLinea 1s ease forwards;
    animation-delay: 0.8s;
}


.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: subirTexto 1s ease forwards;
    animation-delay: 1.2s;
}


.hero-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: subirTexto 1s ease forwards;
    animation-delay: 1.6s;
}


.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: subirTexto 1s ease forwards;
    animation-delay: 2s;
}


/* Keyframes */

@keyframes aparecerTitulo {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes aparecerLinea {
    from {
        width: 0;
    }

    to {
        width: 180px;
    }
}


@keyframes subirTexto {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   MENÚ HAMBURGUESA
================================ */

.menu-toggle {
    width: 35px;
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-blanco);
    border-radius: 5px;
    transition: 0.3s;
}

/* Animación hamburguesa a X */

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

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

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

/* ===============================
   RESPONSIVE CELULAR
================================ */

@media (max-width: 768px) {

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;

        background-color: rgba(11, 11, 11, 0.97);

        display: flex;
        justify-content: center;
        align-items: center;

        transition: 0.4s;
    }

    .menu ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .menu a {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .btn-header {
        display: none;
    }

    .menu.active {
        right: 0;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .hero-content h3 {
        font-size: 16px;
    }

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

    /* SOBRE NOSOTROS RESPONSIVE */

.about {
    padding: 80px 0;
}

.about-container {
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-content h2 {
    font-size: 32px;
}

.about-content {
    text-align: center;
}

.about-list li {
    justify-content: center;
}

/* SERVICIOS RESPONSIVE */

.services {
    padding: 80px 0;
}

.services-title {
    font-size: 32px;
}

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

.service-card {
    padding: 35px 25px;
}

/* PORTFOLIO RESPONSIVE */

.portfolio {
    padding: 80px 0;
}


.portfolio-title {
    font-size: 32px;
}


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


.portfolio-card {
    height: 300px;
}


.portfolio-overlay h3 {
    font-size: 22px;
}

/* DIFERENCIALES RESPONSIVE */

.features {
    padding: 80px 0;
}

.features-title {
    font-size: 32px;
}

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

.feature-card {
    padding: 35px 25px;
}

.feature-number {
    font-size: 55px;
}

/* TECNOLOGÍA RESPONSIVE */

.technology {
    padding: 80px 0;
}

.technology-title {
    font-size: 32px;
}

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

.tech-card {
    padding: 40px 25px;
}

.tech-icon {
    font-size: 42px;
}

/* PROCESO RESPONSIVE */

.process {
    padding: 80px 0;
}

.process-title {
    font-size: 32px;
}

.process-timeline::before {
    left: 20px;
}


.process-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    padding-right: 0;
    text-align: left !important;
}


.process-number {
    font-size: 45px;
}


.process-content {
    padding: 25px;
}

/* CLIENTES RESPONSIVE */

.clients {
    padding: 80px 0;
}


.clients-title {
    font-size: 32px;
}


.clients-logos {
    grid-template-columns: 1fr 1fr;
}


.logo-item {
    height: 90px;
    font-size: 15px;
}


.testimonial {
    padding: 35px 25px;
}


.testimonial p {
    font-size: 17px;
}

/* CONTACTO RESPONSIVE */

.contact {
    padding: 80px 0;
}


.contact-title {
    font-size: 32px;
}


.contact-container {
    grid-template-columns: 1fr;
}


.contact-info,
.contact-form {
    padding: 30px 25px;
}


.btn-whatsapp {
    font-size: 15px;
    padding: 16px;
}

/* FOOTER RESPONSIVE */

.footer {
    padding-top: 50px;
}


.footer .container {
    grid-template-columns: 1fr;
    gap: 35px;
}


.footer-logo h2 {
    font-size: 28px;
}


.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
    text-align: center;
}


.footer-logo p {
    margin: auto;
}


.footer h3::after {
    left: 50%;
    transform: translateX(-50%);
}


.footer a:hover {
    padding-left: 0;
}

}

/* ======================================
   SOBRE EJE STUDIO MEDIA
====================================== */

.about {
    padding: 120px 0;
    background: #111111;
}


.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* Imagen */

.about-image {
    position: relative;
}


.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: 0.5s;
}


.about-image img:hover {
    transform: scale(1.03);
}


/* Texto pequeño superior */

.section-subtitle {
    color: var(--color-dorado);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* Título principal */

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 25px;
    line-height: 1.2;
}


/* Párrafos */

.about-content p {
    color: var(--color-gris);
    margin-bottom: 20px;
    font-size: 17px;
}


/* Lista de fortalezas */

.about-list {
    margin-top: 35px;
}


.about-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}


.about-list li span {
    color: var(--color-dorado);
    font-size: 18px;
    margin-right: 12px;
}

/* ======================================
   SERVICIOS EJE STUDIO MEDIA
====================================== */

.services {
    padding: 120px 0;
    background: var(--color-negro);
    text-align: center;
}


/* Título */

.services-title {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 20px;
}


.services-text {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--color-gris);
    font-size: 17px;
}


/* Contenedor de tarjetas */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Tarjetas */

/* ======================================
   SERVICE CARD PREMIUM
====================================== */

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 22px;
    padding: 45px 30px;

    cursor: pointer;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: all 0.45s ease;

    position: relative;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


/* Efecto al pasar el mouse */

.service-card:hover {

    transform: translateY(-12px);

    border-color: rgba(200,160,58,0.65);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.45),
        0 0 25px rgba(200,160,58,0.20);
}


/* Brillo superior sutil */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(200,160,58,0.9),
        transparent
    );

    transition: 0.6s;
}


.service-card:hover::before {
    left: 100%;
}


/* Efecto al pasar el mouse */

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-dorado);
    box-shadow: 0 20px 40px rgba(200,160,58,0.20);
}


/* Íconos */

.service-icon {
    font-size: 45px;
    margin-bottom: 20px;
}


/* Títulos de tarjetas */

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}


/* Descripción */

.service-card p {
    color: var(--color-gris);
    font-size: 15px;
    line-height: 1.7;
}

/* ======================================
   PORTFOLIO EJE STUDIO MEDIA
====================================== */

.portfolio {
    padding: 120px 0;
    background: #111111;
    text-align: center;
}


/* Encabezado */

.portfolio-title {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 20px;
}


.portfolio-text {
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--color-gris);
    font-size: 17px;
}


/* Grilla de proyectos */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* Tarjeta */

/* ======================================
   PORTFOLIO PREMIUM CINEMATOGRÁFICO
====================================== */

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 380px;
    cursor: pointer;

    border: 1px solid rgba(200, 160, 58, 0.25);

    transition: all 0.5s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}


/* Imagen */

.portfolio-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease, filter 0.6s ease;
}


/* Capa oscura */

.portfolio-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.35),
        transparent
    );

    display: flex;
    flex-direction: column;

    justify-content: flex-end;
    align-items: start;

    padding: 35px;

    opacity: 0;

    transition: 0.5s ease;

    transform: translateY(30px);
}


/* Animación al pasar el mouse */

.portfolio-card:hover {

    transform: translateY(-12px);

    border-color: rgba(200,160,58,0.6);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.55),
        0 0 25px rgba(200,160,58,0.2);
}


.portfolio-card:hover img {

    transform: scale(1.15);

    filter: brightness(0.75);
}


.portfolio-card:hover .portfolio-overlay {

    opacity: 1;

    transform: translateY(0);
}


/* Textos */

.portfolio-overlay span {

    color: var(--color-dorado);

    font-weight: 700;

    letter-spacing: 3px;

    font-size: 12px;
}


.portfolio-overlay h3 {

    font-size: 30px;

    margin: 10px 0 20px;

    text-align: left;

    line-height: 1.2;
}


/* Botón del Portfolio */

.portfolio-overlay a {

    border: 1px solid var(--color-dorado);

    color: var(--color-blanco);

    padding: 12px 24px;

    border-radius: 35px;

    text-decoration: none;

    transition: all 0.4s ease;

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


.portfolio-overlay a:hover {

    background: var(--color-dorado);

    color: var(--color-negro);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(200,160,58,0.4);
}

/* ======================================
   DIFERENCIALES EJE STUDIO MEDIA
====================================== */

.features {
    padding: 120px 0;
    background: #0b0b0b;
    text-align: center;
}


/* Encabezado */

.features-title {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 60px;
}


/* Grilla */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* Tarjetas */

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 25px;
    padding: 40px;
    text-align: left;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}


/* Línea decorativa superior */

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-dorado);
    transform: scaleX(0);
    transition: 0.4s ease;
}


.feature-card:hover::before {
    transform: scaleX(1);
}


.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(200,160,58,0.15);
}


/* Números */

.feature-number {
    font-size: 70px;
    font-weight: 900;
    color: rgba(200,160,58,0.25);
    line-height: 1;
    margin-bottom: 20px;
}


/* Títulos */

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}


/* Descripción */

.feature-card p {
    color: var(--color-gris);
    line-height: 1.7;
    font-size: 16px;
}

/* ======================================
   NUESTRA TECNOLOGÍA
====================================== */

.technology {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #0b0b0b 0%,
        #121212 100%
    );
    text-align: center;
}


/* Encabezado */

.technology-title {
    font-size: 42px;
    font-weight: 800;
    margin: 15px auto 20px;
    max-width: 700px;
}


.technology-text {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--color-gris);
    font-size: 17px;
    line-height: 1.8;
}


/* Grilla */

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Tarjetas */

.tech-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 25px;
    padding: 50px 30px;
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}


/* Efecto de brillo */

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transition: 0.7s;
}


.tech-card:hover::before {
    left: 140%;
}


/* Hover */

.tech-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-dorado);
    box-shadow: 0 25px 50px rgba(200,160,58,0.20);
}


/* Iconos */

.tech-icon {
    font-size: 50px;
    margin-bottom: 25px;
}


/* Títulos */

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}


/* Texto */

.tech-card p {
    color: var(--color-gris);
    line-height: 1.7;
    font-size: 15px;
}

/* ======================================
   PROCESO DE TRABAJO
====================================== */

.process {
    padding: 120px 0;
    background: #111111;
    text-align: center;
}


/* Encabezado */

.process-title {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 20px;
}


.process-text {
    max-width: 750px;
    margin: 0 auto 70px;
    color: var(--color-gris);
    font-size: 17px;
    line-height: 1.8;
}


/* Línea de tiempo */

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}


.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(200,160,58,0.4);
    transform: translateX(-50%);
}


/* Cada paso */

.process-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}


/* Impares a izquierda */

.process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}


/* Pares a derecha */

.process-item:nth-child(even) {
    left: 50%;
    text-align: left;
}


/* Número */

.process-number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(200,160,58,0.25);
    margin-bottom: 10px;
}


/* Tarjeta */

.process-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}


.process-content:hover {
    transform: translateY(-10px);
    border-color: var(--color-dorado);
    box-shadow: 0 15px 35px rgba(200,160,58,0.2);
}


.process-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}


.process-content p {
    color: var(--color-gris);
    line-height: 1.7;
}

/* ======================================
   CLIENTES Y TESTIMONIOS
====================================== */

.clients {
    padding: 120px 0;
    background: #0b0b0b;
    text-align: center;
}


/* Encabezado */

.clients-title {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0 20px;
}


.clients-text {
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--color-gris);
    font-size: 17px;
    line-height: 1.8;
}


/* Logos */

.clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}


.logo-item {
    height: 110px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 600;

    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}


.logo-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-dorado);
    box-shadow: 0 15px 35px rgba(200,160,58,0.20);
}


/* Testimonio */

.testimonial {
    max-width: 850px;
    margin: auto;
    padding: 50px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 25px;

    backdrop-filter: blur(10px);
}


.stars {
    color: var(--color-dorado);
    font-size: 28px;
    margin-bottom: 20px;
}


.testimonial p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}


.testimonial h4 {
    color: var(--color-dorado);
    font-size: 18px;
    letter-spacing: 2px;
}

/* ======================================
   CONTACTO PREMIUM
====================================== */

.contact {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #111111 0%,
        #070707 100%
    );
    text-align: center;
}


/* Encabezado */

.contact-title {
    font-size: 42px;
    font-weight: 800;
    max-width: 800px;
    margin: 15px auto 20px;
}


.contact-text {
    max-width: 750px;
    margin: 0 auto 70px;
    color: var(--color-gris);
    font-size: 17px;
    line-height: 1.8;
}


/* Contenedor principal */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
    text-align: left;
}


/* Información */

.contact-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(10px);
}


.contact-item {
    margin-bottom: 30px;
}


.contact-item h3 {
    color: var(--color-dorado);
    margin-bottom: 10px;
    font-size: 18px;
}


.contact-item p {
    color: var(--color-gris);
    line-height: 1.7;
}


/* Botón WhatsApp */

.btn-whatsapp {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 18px 25px;
    background: var(--color-dorado);
    color: var(--color-negro);
    border-radius: 40px;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.4s ease;
}


.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200,160,58,0.35);
}


/* Formulario */

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,160,58,0.25);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    gap: 20px;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,160,58,0.15);
    border-radius: 15px;
    color: var(--color-blanco);
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-dorado);
    box-shadow: 0 0 15px rgba(200,160,58,0.25);
}


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


/* Botón enviar */

.contact-form button {
    background: var(--color-dorado);
    color: var(--color-negro);
    border: none;
    padding: 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s;
}


.contact-form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200,160,58,0.35);
}

/* ======================================
   FOOTER PREMIUM EJE STUDIO MEDIA
====================================== */

.footer {
    position: relative;
    background: linear-gradient(
        180deg,
        #080808 0%,
        #020202 100%
    );

    border-top: 1px solid rgba(200,160,58,0.35);
    padding-top: 80px;
    overflow: hidden;
}


/* Luz cinematográfica superior */

.footer::before {
    content: "";

    position: absolute;

    top: -150px;
    left: 50%;

    transform: translateX(-50%);

    width: 500px;
    height: 300px;

    background: radial-gradient(
        rgba(200,160,58,0.18),
        transparent 70%
    );

    pointer-events: none;
}


/* Contenedor */

.footer .container {
    position: relative;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}


/* LOGO */

.footer-logo h2 {
    color: var(--color-dorado);

    font-size: 34px;

    letter-spacing: 3px;

    margin-bottom: 18px;

    text-shadow:
        0 0 15px rgba(200,160,58,.35);
}


.footer-logo p {
    color: var(--color-gris);

    line-height: 1.8;

    max-width: 320px;

    font-size: 15px;
}


/* Títulos */

.footer h3 {
    color: var(--color-blanco);

    font-size: 18px;

    margin-bottom: 28px;

    position: relative;

    letter-spacing: 1px;
}


.footer h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 40px;
    height: 2px;

    background: var(--color-dorado);

    box-shadow: 0 0 12px var(--color-dorado);
}


/* Listas */

.footer ul {
    list-style: none;
}


.footer ul li {
    margin-bottom: 15px;
}


/* Textos y enlaces */

.footer a,
.footer p {
    color: var(--color-gris);

    text-decoration: none;

    transition: 0.35s ease;
}


/* Hover elegante */

.footer a:hover {
    color: var(--color-dorado);

    transform: translateX(8px);

    display: inline-block;
}


/* Redes */

.footer-social {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


/* Copyright */

.footer-bottom {
    margin-top: 70px;

    padding: 28px 20px;

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    background: rgba(255,255,255,0.02);
}


.footer-bottom p {
    color: var(--color-gris);

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

/* ======================================
   BOTÓN FLOTANTE WHATSAPP
====================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 65px;
    height: 65px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.35);

    z-index: 999;

    transition: 0.3s ease;

    animation: whatsappPulse 2s infinite;
}


/* Efecto al pasar el mouse */

.whatsapp-float:hover {
    transform: scale(1.12);
}


/* Animación */

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}


/* ======================================
   RESPONSIVE TABLET Y CELULAR
====================================== */

@media (max-width: 768px) {

    /* Header */

    .header {
        padding: 15px 0;
    }


    .navbar {
        padding: 0 20px;
    }


    /* Logo */

    .logo h1 {
        font-size: 20px;
    }


    .logo span {
        display: block;
        font-size: 12px;
        letter-spacing: 2px;
    }


    /* Hero */

    .hero {
        min-height: 100vh;
    }


    .hero-content {
        padding: 0 25px;
        text-align: center;
    }


    .hero-title {
        font-size: 40px;
        line-height: 1.1;
    }


    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }


    .hero-content p {
        font-size: 16px;
    }


    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }


    /* Secciones generales */

    .container {
        padding: 0 20px;
    }


    /* Servicios */

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


    .service-card {
        padding: 35px 25px;
    }


    /* Portfolio */

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


    .portfolio-card {
        height: 300px;
    }


    .portfolio-overlay h3 {
        font-size: 22px;
    }


    /* Nosotros */

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .about-image img {
        height: auto;
    }


    /* Contacto */

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    
/* DIFERENCIALES */

.features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    padding: 35px 25px;
}

.features-title {
    font-size: 30px;
    line-height: 1.2;
}

/* NUESTRA TECNOLOGÍA */

.technology-title {
    font-size: 30px;
    line-height: 1.2;
}

.technology-text {
    font-size: 16px;
    padding: 0 10px;
}

.technology-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.tech-card {
    padding: 35px 25px;
}

/* NUESTRO PROCESO */

.process-title {
    font-size: 30px;
    line-height: 1.2;
}

.process-text {
    font-size: 16px;
    padding: 0 10px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-item {
    width: 100%;
    padding: 25px 20px;
}

/* CLIENTES Y TESTIMONIOS */

.clients-title {
    font-size: 30px;
    line-height: 1.2;
}

.clients-text {
    font-size: 16px;
    padding: 0 10px;
}


/* Logos */

.clients-logos {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.logo-item {
    padding: 25px 15px;
    font-size: 15px;
}


/* Testimonio */

.testimonial {
    padding: 30px 20px;
}

.testimonial p {
    font-size: 16px;
}

/* CONTACTO */

.contact-title {
    font-size: 30px;
    line-height: 1.2;
}

.contact-text {
    font-size: 16px;
    padding: 0 10px;
}


.contact-container {
    grid-template-columns: 1fr;
    gap: 35px;
}


.contact-info,
.contact-form {
    padding: 30px 25px;
}


.contact-item h3 {
    font-size: 18px;
}


.contact-item p {
    font-size: 15px;
}


.btn-whatsapp {
    width: 100%;
    text-align: center;
    padding: 15px;
}


/* Campos del formulario */

.contact-form input,
.contact-form textarea {
    font-size: 16px;
    width: 100%;
}


.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* ======================================
   FOOTER RESPONSIVE PREMIUM
====================================== */

.footer .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 45px;
}


/* Logo */

.footer-logo h2 {
    font-size: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(200,160,58,.35);
}


.footer-logo p {
    font-size: 16px;
    max-width: 100%;
    margin: auto;
    line-height: 1.8;
}


/* Títulos */

.footer h3 {
    font-size: 20px;
    margin-bottom: 25px;
}


.footer h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    box-shadow: 0 0 12px var(--color-dorado);
}


/* Navegación */

.footer-links ul {
    padding: 0;
}


.footer-links li {
    margin-bottom: 15px;
}


/* Contacto y enlaces */

.footer-contact p,
.footer-social a,
.footer-links a {
    font-size: 16px;
    line-height: 1.7;
}


/* Redes sociales */

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Evitar movimiento lateral en móvil */

.footer a:hover {
    transform: none;
    padding-left: 0;
}


/* Copyright */

.footer-bottom {
    margin-top: 50px;
    padding: 25px 20px;
}


.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 1.5px;
}


/* WhatsApp */

.whatsapp-float {
    width: 60px;
    height: 60px;

    right: 20px;
    bottom: 20px;

    font-size: 28px;
}

}

/* ======================================
   ANIMACIONES SCROLL REVEAL
====================================== */

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   MENÚ ACTIVO
====================================== */

.menu a {
    position: relative;
    transition: 0.3s ease;
}


.menu a.active {
    color: var(--color-dorado);
}


/* Línea inferior dorada */
.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--color-dorado);

    border-radius: 2px;
}

/* ======================================
   HERO - ANIMACIÓN CINEMATOGRÁFICA AVANZADA
====================================== */

.hero-title {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}


.hero-subtitle {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.8s;
}


.hero-content p {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.3s;
}


.hero-buttons {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.8s;
}


/* Animación principal */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }

}

