/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-blue: #001f5b;
    --primary-orange: #ff6a00;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --font-main: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
h1, h2, h3, h4 { font-weight: 700; }
.text-orange { color: var(--primary-orange); }

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--primary-blue); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader-logo { font-size: 3rem; font-weight: 900; color: white; letter-spacing: 5px; margin-bottom: 20px; animation: fadePulse 1.5s infinite; }
.loader-spinner { width: 50px; height: 50px; border: 5px solid rgba(255,255,255,0.2); border-top: 5px solid var(--primary-orange); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes fadePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* =========================================
   HEADER & NAV
   ========================================= */
.main-header {
    background-color: var(--primary-blue); color: white; padding: 15px 0;
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-size: 2.2rem; letter-spacing: 2px; font-weight: 900; }
.nav-list { list-style: none; display: flex; gap: 20px; align-items: center; }
.nav-link { text-decoration: none; color: white; font-weight: 600; font-size: 0.95rem; transition: 0.3s; position: relative; }
.nav-link:hover { color: var(--primary-orange); }
.nav-link::after { content: ''; display: block; width: 0; height: 2px; background: var(--primary-orange); transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.btn-nav-contact { background-color: var(--primary-orange); padding: 8px 20px; border-radius: 50px; }
.btn-nav-contact::after { display: none; }
.btn-nav-contact:hover { background-color: white !important; color: var(--primary-orange) !important; }
.phone-btn { background: linear-gradient(45deg, var(--primary-orange), #ff8c00); color: white; text-decoration: none; padding: 8px 15px; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }
.desktop-only { display: block; }

/* Responsive Nav */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .desktop-only { display: none; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%; background: rgba(0,31,91,0.98);
        backdrop-filter: blur(10px); padding: 20px 0; text-align: center;
        transform: translateY(-20px); opacity: 0; visibility: hidden; transition: 0.3s;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; gap: 25px; }
    .nav-link { font-size: 1.2rem; }
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero { position: relative; height: 85vh; min-height: 600px; background: #000; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; display: flex; align-items: center; }
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-text { color: white; max-width: 750px; }
.hero-text h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-desc { font-size: 1.4rem; color: #ddd; margin-bottom: 30px; font-weight: 500; }
.slide.active h2 { animation: fadeInUp 1s ease-out forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.slider-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 30px; z-index: 10; align-items: center; }
.slider-arrow { color: white; font-size: 1.5rem; cursor: pointer; border: 1px solid white; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.slider-arrow:hover { background: white; color: var(--primary-blue); }
.slider-dots { display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; }
.dot.active { background: white; }

.social-sidebar { position: absolute; right: 0; top: 25%; display: flex; flex-direction: column; gap: 10px; z-index: 10; }
.social-sidebar a { color: white; background: rgba(0,0,0,0.5); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50% 0 0 50%; font-size: 1.2rem; transition: 0.3s; }
.social-sidebar a:hover { background: var(--primary-orange); padding-right: 10px; }

/* =========================================
   INTRO & SUBASTA
   ========================================= */
.intro-dark { background: #222; color: white; text-align: center; padding: 60px 0; font-size: 1.4rem; font-weight: 500; }

.auction-event {
    position: relative; background-image: url('img/fondo-industrial.webp');
    background-size: cover; background-position: center; background-attachment: fixed;
    padding: 80px 0; color: white; border-top: 4px solid var(--primary-orange); border-bottom: 4px solid var(--primary-orange);
}
.auction-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,31,91,0.95) 0%, rgba(0,31,91,0.8) 100%); z-index: 1; }
.auction-content { position: relative; z-index: 2; }

/* Logos Subasta */
.auction-logos-container { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.logo-box { background: white; padding: 10px 20px; border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.partner-logo { height: 40px; width: auto; object-fit: contain; }
.x-divider { font-size: 1.5rem; color: var(--primary-orange); opacity: 0.8; }

.event-badge { background: var(--primary-orange); padding: 5px 15px; border-radius: 4px; font-weight: 800; display: inline-block; margin-bottom: 15px; }
.auction-grid { display: flex; flex-direction: column; gap: 30px; }
@media(min-width: 768px) { .auction-grid { flex-direction: row; justify-content: space-between; } }
.auction-info h2 { font-size: 2.5rem; margin-bottom: 10px; }

.location-wrapper { margin-bottom: 25px; border-left: 3px solid var(--primary-orange); padding-left: 15px; }
.location-text { margin-bottom: 5px; font-weight: 400; color: #eee; }
.map-link { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.map-link:hover { color: white; text-decoration: underline; }
.auction-benefits li { list-style: none; margin-bottom: 8px; font-size: 1.1rem; }
.auction-benefits i { color: var(--primary-orange); margin-right: 10px; }

.auction-cta { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 10px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); min-width: 300px; display: flex; flex-direction: column; gap: 10px; }
.cta-question { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; }
.cta-question.small { font-size: 0.9rem; color: #ccc; margin-top: 10px; }
.divider-line { height: 1px; background: rgba(255,255,255,0.2); margin: 5px 0; }

.btn-auction { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; text-decoration: none; font-weight: 800; border-radius: 50px; transition: 0.3s; }
.btn-auction.primary { background: var(--primary-orange); color: white; }
.btn-auction.primary:hover { background: #e55e00; }
.btn-auction.secondary { border: 2px solid white; color: white; }
.btn-auction.secondary:hover { background: white; color: var(--primary-blue); }

/* =========================================
   ESTADÍSTICAS & NOSOTROS
   ========================================= */
.stats-section { background: var(--primary-blue); padding: 60px 0; color: white; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; position: relative; z-index: 2; }
.stat-item i { font-size: 3rem; color: var(--primary-orange); margin-bottom: 10px; }
.counter { font-size: 3.5rem; font-weight: 800; }
.counter::after { content: '+'; font-size: 2rem; color: var(--primary-orange); }

.about-us { padding: 80px 0; background: #f4f4f4; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h3 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-blue); }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.btn-cta { display: inline-block; background: var(--primary-orange); color: white; padding: 15px 40px; font-weight: 800; text-decoration: none; border-radius: 5px; margin-top: 20px; transition: 0.3s; box-shadow: 0 4px 15px rgba(255,106,0,0.3); }
.btn-cta:hover { background: #e55e00; transform: translateY(-3px); }

/* =========================================
   SERVICIOS
   ========================================= */
.services { padding: 80px 0; background: #1a1a1a; color: white; }
.services-header { text-align: left; margin-bottom: 50px; }
.services-header .thin { font-weight: 300; font-size: 2rem; display: block; }
.services-header .thick { font-size: 3.5rem; line-height: 0.9; }
.services-list { display: flex; flex-direction: column; gap: 30px; }
.service-item { display: flex; flex-direction: column; transition: transform 0.3s; }
.service-item:hover { transform: scale(1.02); z-index: 5; }
@media(min-width: 768px) { .service-item { flex-direction: row; } .service-item > div { flex: 1; } }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; backdrop-filter: blur(5px); }
.service-item.blue .service-content { background: var(--primary-blue); }
.service-item.orange .service-content { background: var(--primary-orange); }

/* =========================================
   GALERÍA & LIGHTBOX
   ========================================= */
.gallery-section { padding: 80px 0; background: white; }
.section-header-center { text-align: center; margin-bottom: 50px; }
.section-header-center h2 { font-size: 2.5rem; color: var(--primary-blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 8px; height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,31,91,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-overlay i { color: white; font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* Lightbox */
.lightbox { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.active { display: flex; animation: fadeIn 0.3s; }
.lightbox-content { max-width: 90%; max-height: 90vh; border: 3px solid white; border-radius: 4px; animation: zoomIn 0.4s; }
.close-lightbox { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; line-height: 1; }
.close-lightbox:hover { color: var(--primary-orange); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonials-section { padding: 80px 0; background: #f9f9f9; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: white; padding: 40px 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; transition: 0.3s; border-bottom: 4px solid transparent; }
.testimonial-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--primary-orange); }
.quote-icon { font-size: 2rem; color: rgba(0,31,91,0.1); position: absolute; top: 20px; left: 20px; }
.testimonial-text { font-style: italic; color: #444; margin-bottom: 20px; position: relative; z-index: 2; }
.testimonial-author h4 { color: var(--primary-blue); font-size: 1.1rem; margin-bottom: 2px; }
.testimonial-author span { font-size: 0.9rem; color: #777; font-weight: 500; }
.stars { color: var(--primary-orange); margin-bottom: 10px; font-size: 0.9rem; }

/* =========================================
   CTA, FOOTER & WHATSAPP
   ========================================= */
.cta-banner { background: #111; color: white; text-align: center; padding: 80px 0; }
.main-footer { background: var(--primary-blue); color: white; padding: 60px 0 20px; }
.footer-title { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 50px; margin-bottom: 40px; }
@media(min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr; } }
.contact-form { display: grid; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: none; background: rgba(0,0,0,0.3); color: white; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom: 2px solid var(--primary-orange); }
.btn-submit { background: var(--primary-orange); color: white; border: none; padding: 15px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #e55e00; }
.contact-info { display: flex; flex-direction: column; gap: 25px; }
.info-item { display: flex; gap: 15px; }
.info-item i { color: var(--primary-orange); font-size: 1.4rem; margin-top: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; }

/* Botón Flotante */
.btn-whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background: #25d366; color: white; border-radius: 50%; text-align: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 9999; display: flex; align-items: center; justify-content: center; text-decoration: none; animation: pulseGreen 2s infinite; transition: 0.3s; }
.btn-whatsapp-float:hover { background: #128C7E; transform: scale(1.1); }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Scroll Reveal Classes */
.reveal-up { opacity: 0; transform: translateY(50px); transition: 0.8s ease-out; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 0.8s ease-out; }
.active-anim { opacity: 1; transform: translate(0,0); }

/* =========================================
   TITULOS DE ALTO IMPACTO (NUEVO)
   ========================================= */

/* 1. Regla Global para Títulos: Más pesados y en mayúsculas */
h1, h2, h3, h4 {
    font-weight: 900 !important; /* El grosor máximo de Montserrat */
    text-transform: uppercase;   /* Todo en mayúsculas para autoridad */
    letter-spacing: -1px;        /* Letras un poco más juntas (look moderno) */
    line-height: 1.1;            /* Líneas más compactas */
}

/* 2. Título del HERO (El principal del Slider) */
.hero-text h2 {
    font-size: 3.5rem; /* Base grande */
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.6); /* Sombra dura (no borrosa) para efecto 3D */
    margin-bottom: 25px;
}

/* En pantallas grandes, hazlo GIGANTE */
@media (min-width: 900px) {
    .hero-text h2 {
        font-size: 4.5rem; 
    }
}

/* 3. Títulos de Secciones (Ej. "Galería", "Testimonios") */
.section-header-center h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Línea decorativa naranja debajo de los títulos centrados */
.section-header-center h2::after {
    content: '';
    display: block;
    width: 80px;         /* Ancho de la línea */
    height: 8px;         /* Grosor de la línea */
    background-color: var(--primary-orange);
    margin: 15px auto 0; /* Centrado */
    border-radius: 4px;
}

/* 4. Título de Servicios ("Nuestros Servicios") */
.services-header .thin {
    font-weight: 600 !important;
    font-size: 2rem;
    color: #ccc; /* Un poco más apagado para contraste */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-header .thick {
    font-size: 4.5rem; /* Muy grande */
    color: var(--text-white);
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* 5. Títulos dentro de las tarjetas (H4) */
.service-content h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    border-left: 5px solid var(--text-white); /* Línea lateral decorativa */
    padding-left: 15px;
    line-height: 1;
}

/* 6. Ajuste a la sección Subasta */
.auction-info h2 {
    font-size: 3.2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.auction-info h2 span.text-orange {
    font-size: 3.5rem; /* La parte naranja un poco más grande */
    display: block;    /* En una línea nueva para resaltar */
}

/* 7. Texto Naranja (Énfasis) */
.text-orange {
    color: var(--primary-orange);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

/* Ajustes Responsive para que no se rompa en celular */
@media (max-width: 768px) {
    .hero-text h2 { font-size: 2.5rem; }
    .services-header .thick { font-size: 3rem; }
    .auction-info h2 { font-size: 2.2rem; }
    .auction-info h2 span.text-orange { font-size: 2.5rem; }
    .section-header-center h2 { font-size: 2.2rem; }
}
/* =========================================
   FORMULARIO DE CONTACTO PREMIUM
   ========================================= */

/* 1. Contenedor del Formulario (Tarjeta Blanca) */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); /* Sombra profunda */
    max-width: 500px;
    margin: 0 auto; /* Centrado si es necesario */
    position: relative;
    border-top: 5px solid var(--primary-orange); /* Línea naranja arriba */
}

/* Header del Formulario */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-header p {
    color: #666;
    font-size: 0.9rem;
}

/* 2. Inputs Animados (Material Style) */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 5px; /* Espacio para el texto */
    display: block;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    color: #333;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    transition: 0.3s ease;
}

.input-group textarea {
    resize: none; /* Evita que rompan el diseño */
}

/* La etiqueta (Label) */
.input-group label {
    position: absolute;
    top: 15px;
    left: 5px;
    font-size: 0.95rem;
    color: #999;
    pointer-events: none; /* Para poder hacer clic a través de ella */
    transition: 0.3s ease all;
}

/* Efectos al hacer clic (Focus) o cuando hay texto valido */
.input-group input:focus,
.input-group input:valid,
.input-group textarea:focus,
.input-group textarea:valid {
    border-bottom-color: var(--primary-orange);
    outline: none;
}

/* Mover la etiqueta arriba */
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 700;
}

/* 3. Botón de Enviar mejorado */
.btn-submit {
    background: linear-gradient(90deg, var(--primary-orange), #ff4500);
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 106, 0, 0.5);
    background: linear-gradient(90deg, #ff4500, var(--primary-orange));
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(5px) rotate(-10deg); /* Animación del avioncito */
}

/* Ajuste Responsive */
@media (min-width: 900px) {
    /* En PC, el formulario se ve mejor alineado a la izquierda dentro del grid */
    .contact-form {
        margin: 0; 
    }
}
/* =========================================
   FOOTER REDISEÑADO (BALANCEADO)
   ========================================= */

.main-footer {
    background-color: var(--primary-blue);
    /* Imagen de fondo sutil para textura industrial */
    background-image: linear-gradient(rgba(0, 31, 91, 0.95), rgba(0, 31, 91, 0.95)), url('img/texture.webp');
    background-size: cover;
    color: var(--text-white);
    padding: 80px 0 20px;
}

/* Grid Principal: 2 Columnas balanceadas */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px; /* Espacio entre formulario y datos */
    align-items: start; /* Alineados arriba */
    margin-bottom: 60px;
}

@media(min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr; /* Formulario un poco más ancho */
        gap: 80px;
    }
}

/* --- Estilos de la Tarjeta de Contacto (Derecha) --- */
.contact-card-wrapper {
    background: rgba(255, 255, 255, 0.05); /* Efecto vidrio muy sutil */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    height: 100%; /* Para igualar altura visualmente si es necesario */
}

.contact-header {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.contact-header h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.contact-header p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Lista de Items */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center; /* Centrado vertical perfecto del icono y texto */
    gap: 20px;
}

/* Círculos de Iconos */
.icon-box {
    background-color: var(--primary-orange);
    width: 55px;
    height: 55px;
    border-radius: 50%; /* Círculo perfecto */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Evita que el circulo se aplaste */
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background-color: white;
    color: var(--primary-orange);
}

/* Textos (Títulos y Subtítulos) */
.contact-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc; /* Título sutil */
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p, 
.contact-link {
    font-size: 1.2rem; /* Texto importante grande */
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Footer Bottom (Legal y Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom nav a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-bottom nav a:hover {
    color: var(--primary-orange);
}

@media(min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
/* =========================================
   PÁGINA LEGALES (NUEVO)
   ========================================= */

/* Banner Superior Específico */
.page-banner {
    background-color: #1a1a1a;
    background-image: url('https://placehold.co/1920x400/111/333?text=Legal'); /* Puedes usar una textura oscura */
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Cuerpo del texto */
.legal-body {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
}

.legal-section {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    border-left: 5px solid var(--primary-orange);
    padding-left: 20px;
}

.legal-date {
    color: #777;
    margin-bottom: 30px;
    font-style: italic;
    padding-left: 25px; /* Alineado con el texto del h3 */
}

/* Tipografía para lectura (Más suave que el marketing) */
.legal-text h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: none; /* No forzamos mayúsculas aquí para facilitar lectura */
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8; /* Más espacio entre líneas */
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Separador */
.legal-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: 60px 0;
}

/* Botón Volver */
.back-home-container {
    text-align: center;
    margin-top: 60px;
}

/* =========================================
   SECCIÓN DE VIDEO
   ========================================= */
.video-section {
    padding: 80px 0;
    background-color: var(--primary-blue); /* Fondo oscuro para contraste */
    background-image: radial-gradient(circle at center, #002f8b 0%, var(--primary-blue) 70%);
    position: relative;
}

/* Ajuste para título en fondo oscuro */
.light-text {
    color: var(--text-white) !important;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); /* Sombra estilo cine */
    border: 4px solid var(--primary-orange); /* Borde corporativo */
    background: #000;
}

/* Estilo para etiqueta Video HTML5 */
.video-wrapper video {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* Estilo para Iframe de YouTube (Responsivo) */
.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* Mantiene la proporción en cualquier pantalla */
    display: block;
}

/* Decoración: Puntos de esquina */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
    box-shadow: 840px 0 0 white; /* Punto en la otra esquina */
}
/* =========================================
   SECCIÓN COMPROMISO (Estilo Industrial)
   ========================================= */

.commitment-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

/* Título con efecto "Grunge" (Desgastado) */
.commitment-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Efecto visual para simular textura en el texto */
.grunge-text {
    /* Si quisieras una textura real, usarías background-image con una foto de ruido */
    /* Aquí simulamos "fuerza" con color solido y sombra dura */
    color: #000;
    text-shadow: 3px 3px 0px #ccc; 
    position: relative;
    display: inline-block;
}
/* Línea decorativa estilo "brochazo" debajo del texto */
.grunge-text::after {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 5 Q 50 10 100 5" stroke="%23ffd700" stroke-width="5" fill="none" /></svg>');
    background-size: cover;
    position: absolute;
    bottom: 5px;
    left: 0;
    opacity: 0.6;
    z-index: -1;
}

/* Grid de 4 Columnas */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

/* Tarjetas */
.comm-card {
    background: transparent;
    text-align: center;
}

/* Contenedor de Imagen y Etiqueta */
.comm-img-wrapper {
    position: relative; /* Necesario para posicionar la etiqueta amarilla */
    margin-top: 20px; /* Espacio para que la etiqueta sobresalga arriba */
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.comm-card:hover .comm-img-wrapper {
    transform: translateY(-5px);
}

/* La Imagen */
.comm-img-wrapper img {
    width: 100%;
    height: 220px; /* Altura fija para uniformidad */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* La Etiqueta Amarilla (BADGE) */
.comm-badge {
    position: absolute;
    top: -15px; /* Sube la etiqueta para que quede mitad fuera */
    left: 50%;
    transform: translateX(-50%); /* Centrado perfecto */
    background-color: #FFD700; /* Amarillo Industrial */
    color: #000;
    padding: 10px 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap; /* Evita que el texto se rompa */

/* Agrega esto al final de tu styles.css para el efecto del botón secundario */
.btn-secondary:hover {
    background-color: #333 !important;
    color: #fff !important;
}