:root {
    --accent: #FAB700;
    --dark: #111111;
    --navy: #0E173B;
    --white: #ffffff;
    --gray: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--dark); font-family: 'Inter', sans-serif; color: var(--white); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 15px; left: 15px; right: 15px;
    z-index: 10000;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
.logo { font-family: 'Syne'; font-weight: 800; font-size: 1.2rem; }
.highlight { color: var(--accent); }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-btn { background: var(--accent); color: var(--dark) !important; padding: 10px 20px; border-radius: 25px; }


/* --- ESTILO PARA EL LOGO EN EL HEADER --- */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.nav-logo {
    height: 45px; /* Altura ideal para un header premium */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    
    /* OPCIONAL: Si tu logo es negro y el header es oscuro, 
       descomenta la siguiente línea para hacerlo blanco: */
    /* filter: brightness(0) invert(1); */
}

.nav-logo:hover {
    transform: scale(1.05); /* Efecto sutil al pasar el mouse */
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .nav-logo {
        height: 35px; /* Un poco más pequeño en móviles */
    }
}


/* --- MENU MÓVIL (CORREGIDO) --- */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10001; position: relative; }
.bar { width: 25px; height: 3px; background: var(--accent); border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
        visibility: hidden;
        z-index: 10000; /* Asegurar que esté bajo el botón pero sobre el contenido */
    }
    .nav-links.active { 
        right: 0; 
        visibility: visible; 
    }
    .nav-links a { font-size: 1.5rem; margin: 15px 0; }
    
    /* Animación Hamburguesa a X */
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
/* --- HERO SLIDER --- */
.hero-slider { 
    width: 100%; 
    height: 100vh; 
    position: relative; 
    overflow: hidden; 
    background: #000; /* Fondo negro de seguridad para el video */
}

/* El wrapper solo debe ser un contenedor relativo */
.slider-wrapper { 
    width: 100%; 
    height: 100%; 
    position: relative; 
}

.slide {
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0;
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    
    /* Manejo de visibilidad */
    opacity: 0; 
    visibility: hidden; 
    z-index: 1;
    transition: opacity 1s ease-in-out, visibility 1s;
}

/* Solo el activo sube de nivel y se muestra */
.slide.active { 
    opacity: 1; 
    visibility: visible;
    z-index: 10; 
}

/* --- MANEJO DE VIDEO (NUEVO) --- */
.slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0; /* Al fondo del slide */
}

/* El gradiente debe estar sobre el video pero bajo el contenido */
.slide .absolute.inset-0 {
    z-index: 5;
}

.hero-content { 
    position: relative; /* Importante para z-index */
    z-index: 20; /* Por encima de todo en el slide */
    padding: 0 20px; 
    max-width: 900px; 
    transform: translateY(30px); 
    opacity: 0; 
    transition: 0.8s ease 0.4s; 
}

.slide.active .hero-content { 
    transform: translateY(0); 
    opacity: 1; 
}

/* --- RESTO DE ESTILOS (IGUALES) --- */
/* --- ESTILO EMPRESARIAL PREMIUM --- */
.hero-content h1 { 
    /* Cambiamos Syne por Inter o Helvetica para un look serio y potente */
    font-family: 'Inter', sans-serif; 
    font-size: clamp(2.5rem, 6vw, 5rem); 
    font-weight: 900; /* Extra Bold para autoridad */
    line-height: 1; 
    margin: 24px 0; 
    text-transform: uppercase; 
    letter-spacing: -2px; /* Ajuste estrecho para mayor impacto visual */
    color: #ffffff;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300; /* Delgado para contrastar con el título fuerte */
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.tag { 
    background: var(--accent); /* Tu Dorado */
    color: var(--dark); 
    padding: 6px 18px; 
    border-radius: 4px; /* Cambiado de 20px (redondo) a 4px (más cuadrado/profesional) */
    font-weight: 800; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
}

.btn-modern { 
    display: inline-block; 
    background: var(--accent); /* Cambiado a dorado para que sea el Call to Action principal */
    color: var(--dark); 
    padding: 18px 45px; 
    border-radius: 4px; /* Más cuadrado para look institucional */
    text-decoration: none; 
    font-weight: 900; 
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 10px; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-modern:hover { 
    background: #ffffff; 
    transform: translateY(-5px); /* Efecto de elevación más profesional */
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.highlight {
    color: var(--accent); /* Resaltado en dorado */
    font-style: italic; /* Opcional: un toque de dinamismo en logística */
}
.btn-modern:hover { background: var(--accent); transform: scale(1.05); }

/* --- CONTROLES SLIDER --- */
.slider-nav { 
    position: absolute; 
    top: 50%; width: 100%; 
    display: flex; justify-content: space-between; 
    transform: translateY(-50%); 
    padding: 0 30px; 
    z-index: 100; 
    pointer-events: none; 
}

.nav-arrow { 
    pointer-events: auto; 
    background: rgba(255,255,255,0.1); border: none; color: white; 
    font-size: 1.5rem; width: 60px; height: 60px; cursor: pointer; 
    border-radius: 50%; backdrop-filter: blur(5px); transition: 0.3s; 
    display: flex; align-items: center; justify-content: center;
}
.nav-arrow:hover { background: var(--accent); color: var(--dark); }

.slider-dots { 
    position: absolute; bottom: 40px; left: 50%; 
    transform: translateX(-50%); display: flex; gap: 12px; 
    z-index: 100; 
}
.dot { 
    width: 12px; height: 12px; background: rgba(255,255,255,0.3); 
    border-radius: 50%; cursor: pointer; transition: 0.3s; 
}
.dot.active { background: var(--accent); transform: scale(1.4); }

/* --- SECCIÓN EDITORIAL --- */
.editorial-section { padding: 100px 0; }
.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; align-items: center; }

/* Estilo Empresarial Refinado */

.eyebrow { 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 0.4em; /* Espaciado más amplio para elegancia */
    font-size: 0.7rem; 
    font-weight: 900; /* Peso máximo para denotar autoridad */
    margin-bottom: 1rem; 
    display: block;
    opacity: 0.9;
}

.title-display { 
    font-family: 'Inter', sans-serif; /* Cambio de Syne a Inter para mayor seriedad */
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    line-height: 0.95; /* Altura de línea más apretada para impacto visual */
    margin-bottom: 1.5rem; 
    font-weight: 900; 
    letter-spacing: -0.03em; /* Kerning negativo para un look editorial robusto */
    color: var(--dark-navy); /* O el color principal del sitio */
}

.title-display span {
    font-weight: 300; /* Contraste de peso: Grueso y Delgado en el mismo título */
    color: var(--accent);
}

.description { 
    color: #4b5563; /* Slate-600: un gris más profesional y legible */
    line-height: 1.8; 
    font-size: 1.05rem; 
    font-weight: 300; /* Peso ligero para que el título destaque */
    max-width: 520px; 
    letter-spacing: 0.01em;
}

.left-align { grid-column: 2 / 7; } /* Ajustado para mejor centrado */
.right-align { grid-column: 7 / 12; padding-left: 50px; }

.editorial-visual img { width: 100%; height: auto; object-fit: contain; display: block; max-width: 350px; margin: 0 auto; }
.img-main { grid-column: 7 / 11; }
.img-twin { grid-column: 3 / 7; margin-top: -80px; z-index: 2; }

.accent-line { width: 80px; height: 4px; background: var(--accent); margin-top: 30px; }

/* --- RESPONSIVIDAD GENERAL --- */
@media (max-width: 992px) {
    .editorial-grid { display: flex; flex-direction: column; text-align: center; gap: 50px; }
    .right-align { padding-left: 0; }
    .editorial-visual img { max-width: 250px; }
    .img-twin { margin-top: 0; }
    .description { margin: 0 auto; }
    .accent-line { margin: 30px auto 0; }
    .slider-nav { display: none; } /* Ocultar flechas en móvil para no saturar */
}

/* SECTION SPECIALTIES (FONDO BLANCO) */
.specialties-section {
    background-color: #FFFFFF; /* Fondo Blanco solicitado */
    padding: 100px 0;
    color: #111111; /* Texto oscuro para contraste */
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.highlight-dark {
    color: var(--accent); /* Mantiene el dorado corporativo */
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.specialty-card {
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent);
}

.card-icon {
    font-family: 'Syne';
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    margin-bottom: -20px;
}

.specialty-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--navy);
}

.specialty-card p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Botón para fondo blanco */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* RESPONSIVIDAD */
@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
    
    .specialty-card {
        padding: 30px;
    }
}

/* MISSION & TEAM STYLES */
.mission-team-section {
    background-color: var(--dark);
    padding: 120px 0;
    overflow: hidden;
}

.split-row {
    display: flex;
    align-items: center;
    min-height: 80vh;
    margin-bottom: 100px;
    gap: 80px;
    padding: 0 10%;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-column {
    flex: 1;
}

/* Tipografía Cinética */
.display-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 30px;
}

.large-p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 300;
}

.sub-p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Etiquetas de Valor para el Equipo */
.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.value-tags span {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

/* Imágenes con Estilo Moderno */
.image-placeholder img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 5px; /* Bordes rectos para look más industrial/serio */
    filter: grayscale(40%) contrast(110%);
}

/* Botón Minimalista */
.btn-minimal {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-minimal span {
    color: var(--accent);
    margin-left: 10px;
    transition: margin 0.3s;
}

.btn-minimal:hover span {
    margin-left: 20px;
}

/* RESPONSIVIDAD */
@media (max-width: 992px) {
    .split-row, .split-row.reverse {
        flex-direction: column;
        padding: 0 30px;
        text-align: center;
        gap: 40px;
    }
    
    .image-placeholder img {
        height: 350px;
    }

    .value-tags {
        justify-content: center;
    }
}

/* --- SECCIÓN DUAL COLUMNAS (TEXTO) --- */
.corp-dual-content {
    background-color: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #f0f0f0;
}

.dual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; /* Espacio amplio para elegancia */
    align-items: start;
}

.dual-col {
    display: flex;
    flex-direction: column;
}

/* Tipografía Refinada */
.corp-eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 20px;
}

.corp-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.corp-title span {
    color: var(--accent);
    font-weight: 300;
}

.corp-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Caja de detalle para el equipo */
.corp-feature-box {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
    margin-top: 20px;
}

.corp-feature-box p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.corp-feature-box small {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
}

.ceo-text {
    font-weight: 700;
    border-bottom: 1px solid var(--accent);
}

/* Botón sólido */
.btn-corp {
    display: inline-block;
    width: fit-content;
    padding: 14px 35px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-corp:hover {
    background: var(--accent);
    color: #111;
}

/* RESPONSIVIDAD */
@media (max-width: 992px) {
    .dual-row {
        grid-template-columns: 1fr; /* Se apilan en móvil */
        gap: 60px;
        text-align: center;
    }
    .btn-corp {
        margin: 0 auto;
    }
    .corp-feature-box {
        text-align: left;
    }
}

/* --- AD BANNER PREMIUM --- */
.ad-banner-section {
    padding: 80px 0;
    background-color: #ffffff; /* Fondo de página limpio */
}

.ad-banner-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent) 0%, #ffc837 100%);
    display: flex;
    align-items: center;
    border-radius: 24px; /* Bordes suaves, no toscos */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(250, 183, 0, 0.15);
}

.ad-text-content {
    flex: 1.2;
    padding: 60px;
    color: var(--dark);
}

.ad-eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.ad-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
}

.ad-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 300; /* Estilo fino para elegancia */
    margin-bottom: 30px;
}

/* Botón que resalta sobre el amarillo */
.btn-ad {
    display: inline-block;
    padding: 14px 35px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.btn-ad:hover {
    transform: scale(1.05);
    background: #000;
}

/* Imagen con máscara sutil */
.ad-image-container {
    flex: 1;
    height: 100%;
    position: relative;
}

.ad-image-container img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVIDAD */
@media (max-width: 992px) {
    .ad-banner-card {
        flex-direction: column;
        text-align: center;
        margin: 0 20px;
    }
    
    .ad-text-content {
        padding: 40px 20px;
    }

    .ad-image-container {
        width: 100%;
        min-height: 250px;
        clip-path: none; /* Quitamos el corte en móvil */
    }

    .ad-title { font-size: 1.8rem; }
    .ad-subtitle { font-size: 1.5rem; }
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 120px 0;
    background-color: #ffffff;
    color: #111;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Rejilla de 3 columnas */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Crea líneas divisorias finas junto con el border */
    background-color: #eee; /* Color de las líneas divisorias */
    border: 1px solid #eee;
}

.service-item {
    background-color: #fff;
    padding: 60px 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item:hover {
    background-color: #fcfcfc;
    box-shadow: inset 0 -4px 0 var(--accent);
}

.service-number {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
}

.service-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.services-footer {
    margin-top: 60px;
    text-align: center;
}

/* RESPONSIVIDAD */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        padding: 40px 20px;
    }
}

/* --- SECCIÓN 4 COLUMNAS (FONDO AZUL) --- */
.shipping-four-cols {
    background-color: var(--navy); /* Azul Marino */
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.section-header-center {
    margin-bottom: 60px;
}

.title-premium-light {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-premium-light span {
    color: var(--accent); /* Dorado */
    font-weight: 300;
}

.subtitle-muted {
    font-family: monospace;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* Fila de 4 Columnas */
.cols-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.col-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.col-item:hover {
    transform: translateY(-10px);
}

/* Imagen Circular Estilo Sello */
.circle-sello {
    width: 130px; /* Tamaño equilibrado para 4 columnas */
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    margin-bottom: 20px;
    background: #000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.circle-sello img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.col-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.col-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
    color: rgba(255,255,255,0.9);
}

/* Botón de Acción */
.action-footer {
    margin-top: 70px;
}

.btn-gold-outline {
    display: inline-block;
    padding: 15px 45px;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-gold-outline:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Ajuste para tablets y móviles */
@media (max-width: 992px) {
    .cols-row {
        grid-template-columns: repeat(2, 1fr); /* 2x2 en tablets */
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .cols-row {
        grid-template-columns: 1fr; /* 1 columna en móviles */
    }
}

/* --- CORPORATE CONTACT SYSTEM --- */
.corporate-contact {
    background-color: #ffffff;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.contact-grid-system {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: center;
}

/* Tipografía de Título */
.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    font-weight: 700;
    margin-bottom: 20px;
}

.eyebrow-line::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.corp-h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--dark);
}

.corp-h2 span {
    color: var(--accent);
}

.corp-p-lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Lista de Contacto */
.corp-item {
    margin-bottom: 30px;
}

.label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 700;
}

.corp-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

/* Redes Sociales */
.social-icons-row {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--dark);
    color: var(--accent);
    border-color: var(--dark);
}

/* Formulario Empresarial */
.contact-column-form {
    background: #fcfcfc;
    padding: 60px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #444;
}

.form-field input, 
.form-field textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #eee;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-field input:focus, 
.form-field textarea:focus {
    border-bottom-color: var(--accent);
}

.form-consent {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    font-size: 0.85rem;
    color: #888;
}

.btn-corp-primary {
    width: 100%;
    padding: 20px;
    background: var(--dark);
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-corp-primary:hover {
    background: var(--accent);
    color: var(--dark);
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .contact-grid-system { grid-template-columns: 1fr; gap: 60px; }
    .corp-h2 { font-size: 3rem; }
    .contact-column-form { padding: 30px; }
}

.image-placeholder img {
    filter: none !important; /* El !important asegura que anule cualquier otro estilo previo */
    opacity: 1 !important;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

