/* ==========================================
   OPERATIVA - STYLES.CSS REORGANIZADO
   Estructura: Mobile First → Tablet → Desktop
   ========================================== */

/* ==========================================
   1. RESET Y VARIABLES GLOBALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

:root {
    /* Colores */
    --naranja: #FF4900;
    --naranja-hover: #942B00;
    --gris-oscuro: #2C2C2C;
    --gris-medio: #4A4A4A;
    --gris-claro: #F5F5F5;
    --blanco: #FFFFFF;
    --negro: #1A1A1A;
    
    /* Tipografía */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

::-moz-selection {
    background-color: #FF4900;
    color: #ffffff;
}

::selection {
    background-color: #FF4900;
    color: #ffffff;
}

body {
    font-family: var(--font-primary);
    color: var(--negro);
    background-color: var(--blanco);
    line-height: 1.6;
    cursor: none;
}

a,
button,
video,
video * {
    cursor: none !important;
}


/* ==========================================
   2. CURSOR PERSONALIZADO
   ========================================== */
.cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: white;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor.active {
    width: 70px;
    height: 70px;
    background: #FF4900;
}


/* ==========================================
   3. NAVBAR
   ========================================== */

/* --- Mobile First (Base) --- */
.navbar {
    font-family: "Space Mono", monospace;
    background: rgba(44, 44, 44, 0.4);
    backdrop-filter: blur(80px) saturate(180%);
    -webkit-backdrop-filter: blur(80px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(44, 44, 44, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 20px;
    width: auto;
    display: block;
}

/* Menu Hamburguesa */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--blanco);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu de navegación móvil */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: black;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -8px 0 32px 0 rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
    right: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.nav-links a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--naranja);
}

.nav-cta {
    background-color: var(--naranja);
    color: var(--blanco);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
}

.nav-cta:hover {
    background-color: var(--naranja-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .nav-logo img {
        height: 40px;
    }
    
    .nav-menu {
        width: 60%;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .nav-logo img {
        height: 30px;
    }
    
    .navbar {
        padding: 1.25rem 0;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 2.5rem;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .nav-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.85rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .nav-container {
        max-width: 1600px;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .nav-links {
        gap: 2.5rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .nav-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .nav-container {
        max-width: 1800px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-links {
        gap: 3rem;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
}


/* ==========================================
   4. HERO SECTION
   ========================================== */

/* --- Mobile First (Base) --- */
.hero-section {
    background-color: #000;
    background-image: radial-gradient(
        circle at 50% 95%,
        rgba(255, 73, 0, 0.95) 0%,
        rgba(255, 73, 0, 0.75) 25%,
        rgba(255, 73, 0, 0.45) 45%,
        transparent 70%
    );
    overflow: hidden;
    position: relative;
    padding-top: 90px;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
}

.hero-content {
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    z-index: 10;
}

.hero-tagline {
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.25;
    margin: 0;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
    margin-top: 1rem;
}

.hero-btn {
    font-family: "Space Mono", monospace;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.hero-btn.primary {
    background-color: var(--blanco);
    color: var(--negro);
}

.hero-btn.primary:hover {
    background-color: var(--naranja);
    color: var(--blanco);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary {
    background-color: var(--negro);
    color: var(--blanco);
    border: 2px solid var(--negro);
}

.hero-btn.secondary:hover {
    background-color: var(--naranja);
    border: 2px solid var(--naranja);
    color: var(--blanco);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .hero-section {
        background-image: radial-gradient(
            circle at 85% 85%,
            rgba(255, 73, 0, 0.95) 0%,
            rgba(255, 73, 0, 0.75) 20%,
            rgba(255, 73, 0, 0.45) 40%,
            transparent 65%
        );
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 4rem 2rem;
        gap: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .hero-btn {
        width: auto;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        height: 500px;
        margin-top: 0;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .hero-section {
        padding-top: 85px;
    }
    
    .hero-wrapper {
        grid-template-columns: 40% 60%;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 5rem 0 5rem 2rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 1.1rem 2.5rem;
    }
    
    .hero-image {
        height: 100%;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .hero-wrapper {
        max-width: 1600px;
    }
    
    .hero-content {
        padding: 6rem 0 6rem 3rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 650px;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .hero-wrapper {
        max-width: 1800px;
    }
    
    .hero-content {
        padding: 7rem 0 7rem 4rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
        max-width: 700px;
    }
    
    .hero-btn {
        font-size: 1.1rem;
        padding: 1.25rem 3rem;
    }
}


/* ==========================================
   5. LOGO MARQUEE
   ========================================== */

/* --- Mobile First (Base) --- */
.logo-marquee-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--blanco);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    padding-right: 4rem;
}

.logo-item {
    flex-shrink: 0;
    height: 60px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--negro);
}

.logo-item img,
.logo-item svg {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0);
    transition: opacity 0.3s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .logo-item {
        height: 70px;
        width: 180px;
    }
    
    .marquee-content {
        gap: 5rem;
        padding-right: 5rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .logo-marquee-section {
        padding: 4rem 0;
    }
    
    .logo-item {
        height: 80px;
        width: 200px;
    }
    
    .marquee-content {
        gap: 12rem;
        padding-right: 12rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .logo-item {
        height: 90px;
        width: 220px;
    }
}


/* ==========================================
   6. TRABAJOS DESTACADOS
   ========================================== */

/* --- Mobile First (Base) --- */
.featured-work-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--blanco);
}

.featured-work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.featured-work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: 1rem;
}

.featured-work-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--negro);
    letter-spacing: 0.5px;
}

.featured-work-cta {
    font-family: "Space Mono", monospace;
    background-color: var(--naranja);
    color: var(--blanco);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.featured-work-cta:hover {
    background-color: var(--naranja-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 73, 0, 0.3);
}

.featured-work-cta svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.featured-work-cta:hover svg {
    transform: rotate(-45deg);
}

.featured-work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-4px);
}

.work-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.work-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.work-small .work-image {
    aspect-ratio: 1 / 1;
    min-height: auto;
}

.work-img-static,
.work-img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.work-img-hover {
    opacity: 0;
    transform: scale(1.05);
}

.work-card:hover .work-img-hover {
    opacity: 1;
}

.work-card:hover .work-img-static {
    opacity: 0;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 25%,
        transparent 50%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--blanco);
}

.work-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.3;
    margin: 0;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blanco);
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .featured-work-title {
        font-size: 2.2rem;
    }

    .featured-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .work-large {
        grid-column: 1 / 2;
    }

    .work-medium {
        grid-column: 2 / 3;
    }

    .work-full {
        grid-column: 1 / -1;
    }

    .work-small:nth-child(4) {
        grid-column: 1 / 2;
    }

    .work-small:nth-child(5) {
        grid-column: 2 / 3;
    }

    .work-small:nth-child(6) {
        grid-column: 1 / -1;
    }

    .work-image {
        min-height: 450px;
    }

    .work-title {
        font-size: 1.5rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .featured-work-section {
        padding: 4rem 0;
    }

    .featured-work-title {
        font-size: 2.5rem;
    }

    .featured-work-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }

    .work-large {
        grid-column: 1 / 9;
        grid-row: 1;
    }

    .work-medium {
        grid-column: 9 / 13;
        grid-row: 1;
    }

    .work-full {
        grid-column: 1 / 13;
        grid-row: 2;
    }

    .work-small:nth-child(4) {
        grid-column: 1 / 5;
        grid-row: 3;
    }

    .work-small:nth-child(5) {
        grid-column: 5 / 9;
        grid-row: 3;
    }

    .work-small:nth-child(6) {
        grid-column: 9 / 13;
        grid-row: 3;
    }

    .work-image {
        min-height: 500px;
    }

    .work-overlay {
        padding: 2rem;
    }

    .work-title {
        font-size: 1.3rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .featured-work-container {
        max-width: 1600px;
    }

    .featured-work-title {
        font-size: 3rem;
    }

    .featured-work-grid {
        gap: 2rem;
    }

    .work-image {
        min-height: 550px;
    }

    .work-title {
        font-size: 1.5rem;
    }

    .work-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .featured-work-container {
        max-width: 1800px;
    }

    .featured-work-title {
        font-size: 3.5rem;
    }

    .featured-work-grid {
        gap: 2.5rem;
    }

    .work-image {
        min-height: 600px;
    }

    .work-overlay {
        padding: 2.5rem;
    }

    .work-title {
        font-size: 2rem;
    }
}


/* ==========================================
   7. NUESTROS SERVICIOS
   ========================================== */

/* --- Mobile First (Base) --- */
.our-services-section {
    padding-top: var(--spacing-xl);
    padding-bottom: 0;
    background-color: #000;
    position: relative;
}

.our-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.our-services-header {
    margin-bottom: var(--spacing-lg);
}

.our-services-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.our-services-subtitle {
    font-size: 0.95rem;
    color: var(--blanco);
    line-height: 1.6;
}

.our-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card-new {
    position: relative;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card-new:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.service-video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    display: block;
}

.service-video-container.last .service-video {
    object-position: center;
}

.service-card-content {
    position: relative;
    padding: 1.5rem;
    background-color: #000;
    z-index: 10;
}

.service-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blanco);
    transition: color 0.3s ease;
}

.service-card-new:hover .service-card-title {
    color: var(--naranja);
}

.service-card-description {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.service-card-list svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--naranja);
    transition: transform 0.3s ease;
}

.service-card-list li:hover svg {
    transform: translateX(3px);
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .our-services-title {
        font-size: 2.5rem;
    }
    
    .our-services-subtitle {
        font-size: 1.1rem;
    }
    
    .our-services-grid {
        gap: 2rem;
    }
    
    .service-video-container {
        height: 280px;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-card-title {
        font-size: 1.4rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .our-services-section {
        padding: 4rem 0 0 0; 
    }
    
    .our-services-title {
        font-size: 3rem;
    }
    
    .our-services-subtitle {
        font-size: 1.2rem;
    }
    
    .our-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .service-video-container {
        height: 350px;
    }
    
    .service-card-content {
        padding: 2.5rem;
    }
    
    .service-card-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .service-card-list li {
        font-size: 0.95rem;
        gap: 1rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .our-services-container {
        max-width: 1600px;
    }
    
    .our-services-title {
        font-size: 3.5rem;
    }
    
    .our-services-subtitle {
        font-size: 1.3rem;
    }
    
    .our-services-grid {
        gap: 2.5rem;
    }
    
    .service-video-container {
        height: 380px;
    }
    
    .service-card-title {
        font-size: 1.6rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .our-services-container {
        max-width: 1800px;
    }
    
    .our-services-title {
        font-size: 4rem;
    }
    
    .our-services-grid {
        gap: 3rem;
    }
    
    .service-card-title {
        font-size: 2rem;
        padding: 2.5rem;
    }
}


/* ==========================================
   8. OPERATIVA STATS
   ========================================== */

/* --- Mobile First (Base) --- */
.operativa-stats-section {
    padding: var(--spacing-xl) 0;
    background-color: #000;
    position: relative;
}

.operativa-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.operativa-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; 
}

.operativa-stats-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; 
}

.stat-card-small {
    position: relative;
    background-color: #000;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card-small:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--naranja);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-text {
    font-family: "Space Mono", monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blanco);
    letter-spacing: 1px;
    line-height: 1.4;
}

.stat-card-large {
    position: relative;
    background-color: #000;
    border-radius: 16px;
    padding: 2rem;
    height: 500px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card-large:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
}

.stat-location-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanco);
}

.stat-availability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.green-dot {
    width: 12px;
    height: 12px;
    background-color: #00FF00;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #00FF00;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.availability-text {
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.world-map-container {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translate(70%, 70%) scale(4);
    width: 95%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat-card-large:hover .world-map-container {
    transform: translate(-50%, 0%) scale(1.26);
}

.world-map {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.25);
}

.location-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #FF4900;
    border-radius: 50%;
    box-shadow: 0 0 20px #FF4900;
    animation: markerPulse 2s ease-in-out infinite;
    z-index: 10;
    transform: translate(0%, -50%);
}

@keyframes markerPulse {
    0%, 100% {
        transform: translate(-150%, -10%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-150%, -10%) scale(1.5);
        opacity: 0.6;
    }
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .operativa-stats-left {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .operativa-stats-section {
        padding: 2.5rem 0 0 0;
    }
    
    .operativa-stats-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 2rem;
    }
    
    .operativa-stats-left {
        grid-column: 1 / 2;
        grid-template-columns: 1fr;
        height: 600px;
    }
    
    .operativa-stats-right {
        grid-column: 2 / 4;
    }
    
    .stat-card-small {
        padding: 2.5rem;
    }
    
    .stat-number {
        font-size: 4.5rem;
    }
    
    .stat-location-title {
        font-size: 1rem;
    }

    .stat-card-large {
        height: 100%;
    }

    .world-map-container {
        bottom: 2rem;
        width: 100%;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .operativa-stats-container {
        max-width: 1600px;
    }
    
    .stat-number {
        font-size: 5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .stat-location-title {
        font-size: 1.5rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .operativa-stats-container {
        max-width: 1800px;
    }
    
    .stat-number {
        font-size: 5.5rem;
    }
}


/* ==========================================
   9. OPERATIVA ABOUT
   ========================================== */

/* --- Mobile First (Base) --- */
.operativa-about-section {
    padding: 2rem 0;
    background-color: #000;
    position: relative;
}

.operativa-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.operativa-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-card-profile {
    position: relative;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.about-card-profile:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.profile-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-card-profile:hover .profile-image {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    color: var(--blanco);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanco);
}

.profile-role {
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--naranja);
    text-transform: uppercase;
}

.profile-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-title {
    font-family: "Space Mono", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanco);
    letter-spacing: 1px;
}

.profile-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.about-card-icon {
    position: relative;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 300px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.about-card-icon:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

.operativa-icon-3d {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .operativa-about-grid {
        gap: 2rem;
    }
    
    .profile-image-container {
        height: 450px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-title {
        font-size: 2.2rem;
    }

    .about-card-icon {
        min-height: 400px;
        padding: 3rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .operativa-about-section {
        padding: 2.5rem 0 4rem 0;
    }
    
    .operativa-about-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
    
    .about-card-profile {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .profile-image-container {
        height: 100%;
        min-height: 500px;
    }
    
    .profile-content {
        padding: 3rem;
    }
    
    .profile-title {
        font-size: 2rem;
    }
    
    .profile-description {
        font-size: 0.9rem;
    }
    
    .about-card-icon {
        min-height: 500px;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .operativa-about-container {
        max-width: 1600px;
    }
    
    .operativa-about-grid {
        gap: 2.5rem;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .profile-title {
        font-size: 2.8rem;
    }
    
    .profile-description {
        font-size: 1.1rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .operativa-about-container {
        max-width: 1800px;
    }
    
    .operativa-about-grid {
        gap: 3rem;
    }
    
    .profile-content {
        padding: 4rem;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .profile-title {
        font-size: 3rem;
    }
    
    .profile-description {
        font-size: 1.2rem;
        line-height: 2;
    }
}


/* ==========================================
   10. LOGO MARQUEE DARK
   ========================================== */

/* --- Mobile First (Base) --- */
.logo-marquee-section-dark {
    padding: var(--spacing-xl) 0;
    background-color: #000;
    overflow: hidden;
}

.logo-marquee-section-dark .marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-marquee-section-dark .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.logo-marquee-section-dark .marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    padding-right: 4rem;
}

.logo-marquee-section-dark .logo-item {
    flex-shrink: 0;
    height: 60px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
}

.logo-marquee-section-dark .logo-item img,
.logo-marquee-section-dark .logo-item svg {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .logo-marquee-section-dark .logo-item {
        height: 70px;
        width: 180px;
    }
    
    .logo-marquee-section-dark .marquee-content {
        gap: 5rem;
        padding-right: 5rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .logo-marquee-section-dark {
        padding: 0 0 var(--spacing-xl) 0;
    }
    
    .logo-marquee-section-dark .logo-item {
        height: 80px;
        width: 200px;
    }
    
    .logo-marquee-section-dark .marquee-content {
        gap: 12rem;
        padding-right: 12rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .logo-marquee-section-dark .logo-item {
        height: 90px;
        width: 220px;
    }
}


/* ==========================================
   11. INSIGHTS / BLOG
   ========================================== */

/* --- Mobile First (Base) --- */
.insights-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--blanco);
}

.insights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.insights-header {
    margin-bottom: var(--spacing-xl);
}

.insights-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--naranja);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.insights-label svg {
    color: var(--naranja);
}

.insights-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}


.insights-subtitle {
    font-size: 1rem;
    color: var(--gris-medio);
    line-height: 1.6;
    font-weight: 400;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-card {
    background-color: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card.featured {
    background-color: var(--naranja);
}

.blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--blanco);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.25rem 0 0 1.25rem;
    position: absolute;
    z-index: 10;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 5;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.blog-card.featured .blog-title {
    color: var(--blanco);
}

.blog-card.featured .blog-excerpt {
    color: rgba(255, 255, 255, 0.9);
}

.blog-card:not(.featured) .blog-title {
    color: var(--negro);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gris-medio);
    font-weight: 400;
}

.blog-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 4px solid var(--gris-claro);
    border-top: 4px solid var(--naranja);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .insights-title {
        font-size: 2.2rem;
    }
    
    .insights-subtitle {
        font-size: 1.1rem;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-card.featured {
        grid-column: 1 / -1;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-card.featured .blog-image {
        height: 300px;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
    
    .blog-content {
        padding: 2rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .insights-section {
        padding: 4rem 0;
    }
    
    .insights-title {
        font-size: 3rem;
    }
    
    .insights-subtitle {
        font-size: 1.2rem;
    }
    
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .blog-card.featured {
        grid-column: 1;
        grid-row: 1;
    }
    
    .blog-image {
        height: 240px;
    }
    
    .blog-card.featured .blog-image {
        height: 240px;
    }
    
    .blog-title {
        font-size: 1.4rem;
    }
    
    .blog-excerpt {
        font-size: 1rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .insights-container {
        max-width: 1600px;
    }
    
    .insights-title {
        font-size: 3rem;
    }
    
    .insights-subtitle {
        font-size: 1.3rem;
    }
    
    .insights-grid {
        gap: 2.5rem;
    }
    
    .blog-image {
        height: 280px;
    }
    
    .blog-card.featured .blog-image {
        height: 280px;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .insights-container {
        max-width: 1800px;
    }
    
    .insights-title {
        font-size: 3.5rem;
    }
    
    .insights-grid {
        gap: 3rem;
    }
    
    .blog-content {
        padding: 2.5rem;
    }
    
    .blog-image {
        height: 320px;
    }
    
    .blog-card.featured .blog-image {
        height: 320px;
    }
    
    .blog-title {
        font-size: 1.7rem;
    }
    
    .blog-excerpt {
        font-size: 1.1rem;
    }
}


/* ==========================================
   12. CTA SECTION NEW
   ========================================== */

/* --- Mobile First (Base) --- */
.cta-section-new {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: auto;
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.cta-container-new {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.2rem 0 1.2rem;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.cta-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    flex: 1;
    align-items: center;
    padding-bottom: 2rem;
}

.cta-left {
    color: var(--blanco);
}

.cta-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--blanco);
}

.cta-main-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-services-list li {
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 1.5rem;
    position: relative;
}

.cta-bottom-bar {
    background-color: var(--naranja);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 -1.2rem;
}

.cta-bottom-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blanco);
    text-align: center;
}

.cta-bottom-btn {
    background-color: var(--gris-oscuro);
    color: var(--blanco);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    text-align: center;
}

.cta-bottom-btn:hover {
    background-color: var(--negro);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .cta-section-new {
        min-height: 650px;
        background-attachment: fixed;
    }
    
    .cta-container-new {
        padding: 4rem 2rem 0 2rem;
    }
    
    .cta-main-title {
        font-size: 2.5rem;
    }
    
    .cta-main-description {
        font-size: 1.1rem;
    }
    
    .cta-services-list li {
        font-size: 1.1rem;
    }
    
    .cta-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.75rem 2.5rem;
        margin: 0 -2rem;
    }
    
    .cta-bottom-text {
        font-size: 1.2rem;
        text-align: left;
    }
    
    .cta-bottom-btn {
        width: auto;
        padding: 1rem 2.5rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .cta-section-new {
        min-height: 700px;
    }
    
    .cta-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        padding-bottom: 4rem;
    }
    
    .cta-main-title {
        font-size: 3rem;
        max-width: 600px;
    }
    
    .cta-main-description {
        font-size: 1.15rem;
        max-width: 550px;
    }
    
    .cta-right {
        justify-content: flex-end;
    }
    
    .cta-services-list {
        gap: 1rem;
    }
    
    .cta-services-list li {
        font-size: 1.2rem;
    }
    
    .cta-bottom-bar {
        padding: 2rem 3rem;
    }
    
    .cta-bottom-text {
        font-size: 1.3rem;
    }
    
    .cta-bottom-btn {
        padding: 1.1rem 3rem;
        font-size: 1.05rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .cta-container-new {
        max-width: 1600px;
    }
    
    .cta-section-new {
        min-height: 750px;
    }
    
    .cta-main-title {
        font-size: 3.5rem;
        max-width: 700px;
    }
    
    .cta-main-description {
        font-size: 1.25rem;
        max-width: 600px;
    }
    
    .cta-services-list li {
        font-size: 1.3rem;
        gap: 1.5rem;
    }
    
    .cta-bottom-bar {
        padding: 2.25rem 3.5rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .cta-container-new {
        max-width: 1800px;
    }
    
    .cta-section-new {
        min-height: 800px;
    }
    
    .cta-main-title {
        font-size: 4rem;
    }
    
    .cta-main-description {
        font-size: 1.35rem;
    }
    
    .cta-services-list li {
        font-size: 1.4rem;
    }
    
    .cta-bottom-text {
        font-size: 1.5rem;
    }
    
    .cta-bottom-btn {
        padding: 1.25rem 3.5rem;
        font-size: 1.1rem;
    }
}


/* ==========================================
   13. VIDEO HERO
   ========================================== */

/* --- Mobile First (Base) --- */
.video-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.video-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--blanco);
}

.video-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.video-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.video-hero-btn {
    font-family: "Space Mono", monospace;
    background-color: var(--naranja);
    color: var(--blanco);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 73, 0, 0.4);
}

.video-hero-btn:hover {
    background-color: var(--naranja-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 73, 0, 0.6);
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .video-hero-title {
        font-size: 3.5rem;
    }
    
    .video-hero-subtitle {
        font-size: 1.4rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .video-hero-title {
        font-size: 4rem;
    }
    
    .video-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .video-hero-btn {
        font-size: 1.1rem;
        padding: 1.3rem 3.5rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .video-hero-title {
        font-size: 4.5rem;
    }
}


/* ==========================================
   14. HABLEMOS
   ========================================== */

/* --- Mobile First (Base) --- */
.hablemos-section {
    padding: 6rem 0;
    background-color: var(--blanco);
}

.hablemos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hablemos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.hablemos-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--negro);
    line-height: 1;
    margin: 0;
}

.hablemos-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.hablemos-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hablemos-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hablemos-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gris-medio);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hablemos-link {
    font-size: 1.1rem;
    color: var(--negro);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hablemos-link:hover {
    color: var(--naranja);
}

.hablemos-text {
    font-size: 1.1rem;
    color: var(--negro);
    margin: 0;
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .hablemos-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .hablemos-section {
        padding: 8rem 0;
    }
    
    .hablemos-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 6rem;
    }
    
    .hablemos-title {
        font-size: 6rem;
    }
    
    .hablemos-link,
    .hablemos-text {
        font-size: 1.2rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .hablemos-container {
        max-width: 1600px;
    }
    
    .hablemos-title {
        font-size: 7rem;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .hablemos-container {
        max-width: 1800px;
    }
    
    .hablemos-title {
        font-size: 8rem;
    }
    
    .hablemos-link,
    .hablemos-text {
        font-size: 1.3rem;
    }
}


/* ==========================================
   15. FOOTER MINIMAL
   ========================================== */

/* --- Mobile First (Base) --- */
.footer-minimal {
    background-color: var(--blanco);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
}

.footer-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-minimal-logo img {
    height: 25px;
    width: auto;
    filter: brightness(0);
}

.footer-minimal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-minimal-menu a {
    color: var(--negro);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-minimal-menu a:hover {
    color: var(--naranja);
}

.footer-minimal-info {
    text-align: center;
}

.footer-minimal-info p {
    font-size: 0.85rem;
    color: var(--gris-medio);
    margin: 0;
}

/* --- Tablets (768px+) --- */
@media (min-width: 768px) {
    .footer-minimal-container {
        grid-template-columns: auto 1fr auto;
        gap: 3rem;
    }
    
    .footer-minimal-menu {
        justify-content: center;
    }
    
    .footer-minimal-info {
        text-align: right;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .footer-minimal {
        padding: 3.5rem 0;
    }
    
    .footer-minimal-logo img {
        height: 20px;
    }
    
    .footer-minimal-menu {
        gap: 2rem;
    }
    
    .footer-minimal-menu a {
        font-size: 0.95rem;
    }
}

/* --- Desktop XL (1440px+) --- */
@media (min-width: 1440px) {
    .footer-minimal-container {
        max-width: 1600px;
    }
    
    .footer-minimal-logo img {
        height: 30px;
    }
}

/* --- TV (1920px+) --- */
@media (min-width: 1920px) {
    .footer-minimal-container {
        max-width: 1800px;
    }
    
    .footer-minimal-menu a {
        font-size: 1rem;
    }
}