/* ========================================= */
/* 1. CONFIGURACIÓN BASE & VARIABLES         */
/* ========================================= */
:root {
    /* Paleta de Colores */
    --bg-body: #f9f9f9;
    --bg-card: #ffffff;
    --text-main: #222222;
    --text-light: #666666;
    
    /* Branding Finkper */
    --brand-dark: #0f172a; /* Azul noche profundo */
    --brand-accent: #8B5E3C; /* Tabaco */
    --brand-success: #25D366; /* WhatsApp */

    /* UI Variables */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    
    /* Tipografía */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; padding: 0 20px; margin: 0 auto; max-width: 1200px; }

/* MEJORA VISUAL: FONDO DE SECCIÓN (CONTRASTE) */
.bg-contrast {
    background-color: #f2f4f6; /* Gris perla */
}

/* ========================================= */
/* 2. HEADER (GLASS EFFECT)                  */
/* ========================================= */
.main-header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
.header-content { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo-img { height: 45px; width: auto; }

.main-nav ul { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--text-main); }
.nav-link.active { color: var(--brand-accent); font-weight: 700; }

.btn-nav-cta {
    background: var(--brand-dark); color: white; padding: 8px 24px;
    border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 600;
    transition: 0.3s;
}
.btn-nav-cta:hover { background: var(--brand-accent); }

.language-switcher { display: flex; gap: 8px; align-items: center; padding-left: 20px; border-left: 1px solid #eee; }
.lang-button { background: transparent; border: none; font-weight: 700; color: #999; cursor: pointer; }
.lang-button.active { color: var(--brand-dark); }

@media (max-width: 768px) { .main-nav { display: none; } }

/* ========================================= */
/* 3. HERO MODERN SPLIT (EDITORIAL)          */
/* ========================================= */
.hero-split {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
    margin-top: -71px; padding-top: 71px;
    background: #fdfdfd;
}

/* Lado Izquierdo */
.hero-content-side {
    width: 45%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 40px 80px;
    z-index: 10;
}

/* Lado Derecho */
.hero-visual-side {
    width: 55%; position: relative; height: 100%; overflow: hidden;
}

/* Slider */
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 1.5s ease;
    transform: scale(1.1);
}
.hero-bg.active { opacity: 1; transform: scale(1); transition: opacity 1.5s ease, transform 6s ease; }

/* Tipografía Hero */
.hero-text-wrapper h1 {
    font-family: var(--font-display);
    font-size: 4rem; line-height: 1; color: var(--brand-dark);
    margin-bottom: 25px; letter-spacing: -1px;
}
.text-stroke { color: transparent; -webkit-text-stroke: 1px var(--brand-dark); }
.hero-text-wrapper p { font-size: 1.1rem; color: var(--text-light); max-width: 400px; margin-bottom: 35px; }
.badge-modern {
    display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: var(--brand-accent); margin-bottom: 20px;
    border-bottom: 1px solid var(--brand-accent);
}

/* Botones Hero */
.btn-modern-dark {
    background: var(--brand-dark); color: white; padding: 16px 35px;
    font-weight: 600; display: inline-block; transition: 0.3s;
}
.btn-modern-dark:hover { background: var(--brand-accent); }
.link-underline { margin-left: 20px; font-weight: 600; border-bottom: 1px solid currentColor; }
.hero-footer-info { margin-top: 50px; font-size: 0.8rem; color: #aaa; font-weight: 600; text-transform: uppercase; }

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-split { flex-direction: column-reverse; height: auto; min-height: 100vh; }
    .hero-visual-side { width: 100%; height: 50vh; }
    .hero-content-side { width: 100%; padding: 40px 20px; text-align: center; }
    .hero-text-wrapper h1 { font-size: 2.8rem; }
    .hero-text-wrapper p { margin: 0 auto 30px; }
    .hero-actions { display: flex; flex-direction: column; gap: 20px; align-items: center; }
    .link-underline { margin-left: 0; }
}

/* ========================================= */
/* 4. SECCIONES Y LAYOUTS                    */
/* ========================================= */
.section-padded { padding: 80px 0; }
.section-dark { background-color: var(--brand-dark); color: white; }
.bg-light { background-color: white; }

.section-heading { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 20px; color: var(--brand-dark); }
.section-dark .section-heading { color: white; }

/* Broken Grid */
@media (min-width: 1024px) {
    .split-layout { position: relative; display: flex; align-items: center; height: 500px; }
    .split-image { width: 60%; margin-left: auto; height: 100%; }
    .split-image img { width: 100%; height: 100%; object-fit: cover; }
    .split-text { position: absolute; left: 0; width: 45%; background: white; padding: 50px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); z-index: 2; }
}
@media (max-width: 1023px) {
    .split-layout { display: flex; flex-direction: column-reverse; gap: 0; }
    .split-text { background: white; padding: 40px 20px; }
    .split-image { height: 300px; }
    .split-image img { width: 100%; height: 100%; object-fit: cover; }
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.logo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.logo-item i {
    font-size: 2.2rem;
    color: var(--brand-accent);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 94, 60, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-item:hover i {
    transform: scale(1.1);
}

.logo-item span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.btn-outline-white { border: 1px solid white; color: white; padding: 12px 30px; border-radius: 50px; font-weight: 600; }
.text-white-dim { color: rgba(255,255,255,0.7); }
.text-white { color: white; }
.max-w-600 { max-width: 600px; margin: 0 auto; }

/* ========================================= */
/* 5. NUEVOS FILTROS (ESTILO CÁPSULA)        */
/* ========================================= */
.product-filters {
    display: flex; gap: 12px; overflow-x: auto; padding: 10px 0 25px;
    justify-content: center;
    scrollbar-width: none;
}
.product-filters::-webkit-scrollbar { display: none; }

.filter-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px 24px;
    border-radius: 100px; /* Pill shape */
    font-size: 0.9rem; font-weight: 600; color: var(--text-light);
    transition: all 0.3s;
    cursor: pointer;
}
.filter-btn:hover { border-color: var(--brand-dark); transform: translateY(-2px); }
.filter-btn.active {
    background: var(--brand-dark); color: white; border-color: var(--brand-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
@media (max-width: 768px) { .product-filters { justify-content: flex-start; padding-left: 20px; } }

/* ========================================= */
/* 6. TARJETAS "HIGH-END" (REDISEÑO)         */
/* ========================================= */

.grid-3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}
@media(min-width: 768px) { .grid-3-cols { grid-template-columns: repeat(3, 1fr); } }

.product-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.08);
}

/* Área de Imagen */
.card-image-wrapper {
    position: relative;
    background: #ffffff;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* Badge ID */
.card-badge-id {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Carrusel */
.card-gallery-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100%;
    scrollbar-width: none;
}
.card-gallery-wrapper::-webkit-scrollbar { display: none; }

.card-gallery-img {
    flex: 0 0 100%; width: 100%; height: 100%;
    object-fit: contain;
    padding: 30px;
    scroll-snap-align: start;
    transition: transform 0.7s ease;
}
.product-card:hover .card-gallery-img { transform: scale(1.03); }

/* Swipe Hint */
.swipe-hint {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.8);
    color: var(--brand-dark);
    font-size: 0.65rem; padding: 4px 12px; border-radius: 20px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    pointer-events: none; opacity: 0; transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-card:hover .swipe-hint { opacity: 1; bottom: 20px; }

/* Contenido Texto */
.card-content {
    padding: 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-meta {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--brand-accent); font-weight: 700; margin-bottom: 8px; display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem; color: var(--brand-dark); margin-bottom: 10px;
    line-height: 1.1; font-weight: 600;
}

.card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem; color: #666; margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Botón Premium */
.btn-card-action {
    margin-top: auto;
    width: 100%;
    background: var(--brand-dark);
    color: white;
    padding: 16px 0;
    border-radius: 12px;
    font-weight: 600; font-size: 0.9rem;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-card-action:hover {
    background: white; color: var(--brand-dark); border-color: var(--brand-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.btn-card-action i { font-size: 1.1rem; }

/* ========================================= */
/* 7. FOOTER PREMIUM (3 COLUMNAS)            */
/* ========================================= */
.main-footer {
    background: #111; /* Fondo oscuro elegante */
    color: #888;
    padding: 70px 0 40px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Columnas */
    gap: 40px;
    align-items: start;
}

/* Títulos de Columnas */
.footer-title {
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* --- TRUCO DEL LOGO BLANCO --- */
.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 20px;
    /* Esto vuelve cualquier PNG totalmente blanco */
    filter: brightness(0) invert(1); 
    opacity: 0.9;
}

.footer-desc {
    max-width: 280px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Lista de Links */
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: 0.3s; }
.footer-links a:hover { color: var(--brand-accent); padding-left: 5px; }

/* Botones Sociales Redondos */
.social-links { display: flex; gap: 12px; }
.social-btn {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
}
.social-btn:hover {
    background: var(--brand-accent);
    transform: translateY(-3px);
}

/* Copyright abajo */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive Móvil */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-desc { margin: 0 auto 20px; }
    .social-links { justify-content: center; }
}

/* El botón flotante de WhatsApp se mantiene igual */
#floating-whatsapp {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--brand-success); color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; z-index: 900;
}
/* ========================================= */
/* 12. SOCIAL PROOF (TESTIMONIOS & STATS)    */
/* ========================================= */

.testimonial-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.quote-icon {
    font-size: 1.5rem; color: #ddd; margin-bottom: 20px;
}

.testi-text {
    font-family: var(--font-display); /* Fuente Serif para que parezca cita */
    font-size: 1.1rem; color: var(--brand-dark);
    line-height: 1.6; margin-bottom: 30px; font-style: italic;
}

.testi-author {
    display: flex; align-items: center; gap: 15px;
}

.author-avatar {
    width: 45px; height: 45px;
    background: var(--brand-dark); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}

.testi-author h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--text-main); }
.testi-author span { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }

/* Barra de Estadísticas */
.stats-bar {
    margin-top: 80px;
    display: flex; justify-content: center; align-items: center;
    gap: 60px; flex-wrap: wrap;
    border-top: 1px solid #eee; padding-top: 60px;
}

.stat-item { text-align: center; }
.stat-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem; color: var(--brand-accent);
    margin-bottom: 5px; line-height: 1;
}
.stat-item p {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-light); font-weight: 700;
}

.stat-divider {
    width: 1px; height: 50px; background: #eee;
}

@media (max-width: 768px) {
    .stats-bar { flex-direction: column; gap: 40px; }
    .stat-divider { width: 50px; height: 1px; }
}

/* ========================================= */
/* 13. INFINITE REEL (GALERÍA FINAL)         */
/* ========================================= */

.reel-section {
    padding: 60px 0 80px;
    background: white;
    overflow: hidden; /* Esconde lo que se sale de la pantalla */
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content; /* El ancho se adapta al contenido */
    gap: 20px; /* Espacio entre fotos */
    animation: scrollReel 40s linear infinite; /* 40 segundos por vuelta */
}

/* Pausar animación al pasar el mouse */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Estilo de cada foto */
.reel-item {
    width: 300px; /* Ancho fijo por foto */
    height: 200px; /* Alto fijo */
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    filter: grayscale(100%); /* Blanco y negro por defecto */
    transition: all 0.4s ease;
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Efecto al pasar el mouse sobre una foto específica */
.reel-item:hover {
    filter: grayscale(0%); /* Vuelve el color */
    transform: scale(1.05); /* Crece un poquito */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.reel-item:hover img {
    transform: scale(1.1); /* Zoom interno */
}

/* La animación matemática del loop */
@keyframes scrollReel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Se mueve la mitad (el set original) */
}

/* Ajuste Móvil */
@media (max-width: 768px) {
    .reel-item { width: 200px; height: 150px; } /* Fotos más chicas en cel */
    .marquee-track { animation-duration: 20s; } /* Un poco más rápido en móvil */
}
/* ========================================= */
/* FIX: ESTILO BOTÓN FORMULARIO CONTACTO     */
/* ========================================= */

.btn-full-width {
    width: 100%;
    background: var(--brand-dark); /* Azul oscuro */
    color: white;
    padding: 16px 0; /* Más alto para que se vea importante */
    border-radius: 12px; /* Bordes redondeados modernos */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Alineación perfecta Texto + Icono */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-full-width:hover {
    background: var(--brand-accent); /* Cambia a color Tabaco */
    transform: translateY(-3px); /* Se eleva un poco */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Sombra más fuerte */
}

/* Ajuste para que el icono no se pegue al texto */
.btn-full-width i {
    font-size: 1.2rem;
}

/* Botón de Teléfono en Footer */
.footer-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05); /* Fondo sutil */
    color: white;
    padding: 12px 25px;
    border-radius: 50px; /* Redondo estilo cápsula */
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 25px; /* Separación de los iconos sociales */
    text-decoration: none;
}

.footer-phone-btn:hover {
    background: var(--brand-success); /* Verde WhatsApp */
    border-color: var(--brand-success);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.footer-phone-btn i { font-size: 1.2rem; }

/* ========================================= */
/* 14. ANIMACIONES PREMIUM (MOTION SYSTEM)   */
/* ========================================= */

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.animate-slide-in {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-in.left {
    transform: translateX(-40px);
}
.animate-slide-in.right {
    transform: translateX(40px);
}
.animate-slide-in.is-visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.94);
    filter: blur(4px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-zoom-in.is-visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Clases de retraso útiles (delays) */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }

/* Efectos de transición para los cambios de idioma */
[data-i18n], [data-i18n-placeholder] {
    transition: opacity 0.25s ease;
}

/* ========================================= */
/* 15. TOP ANNOUNCEMENT TICKER BAR           */
/* ========================================= */

.top-announcement-bar {
    background: var(--brand-accent);
    color: white;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    height: 35px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-item {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Hecho en México logo branding */
.hecho-mexico-icon {
    height: 22px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.hecho-mexico-icon:hover {
    opacity: 1;
}

.hecho-mexico-logo-dark {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    opacity: 0.95;
}

.hecho-mexico-logo-dark:hover {
    transform: scale(1.05);
    opacity: 1;
}

.hecho-mexico-icon-hero {
    height: 36px;
    width: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hecho-mexico-icon-hero:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hecho-mexico-footer-seal {
    height: 48px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.hecho-mexico-footer-seal:hover {
    opacity: 1;
    transform: scale(1.05);
}