:root {
    --rojo: #EF4123;
    --amarillo: #FDB813;
    --oscuro: #1A1A1A;
    --gris-fondo: #F9F9F9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--oscuro); line-height: 1.6; }
.container { padding: 0 25px; max-width: 1100px; margin: 0 auto; }

/* Ticker Marquee */
.ticker-wrapper { background: var(--rojo); color: white; padding: 10px 0; overflow: hidden; white-space: nowrap; font-size: 0.85rem; font-weight: 600; }
.ticker { display: inline-block; animation: marquee 25s linear infinite; }
.ticker span { margin-right: 60px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Header & Menu */
.header { height: 80px; background: white; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-logo { height: 55px; }

.menu-toggle { cursor: pointer; }
.bar { width: 30px; height: 3px; background: var(--rojo); margin: 6px 0; transition: 0.3s; }

.nav-menu {
    position: fixed; top: 80px; right: -100%; width: 100%; height: calc(100vh - 80px);
    background: white; flex-direction: column; display: flex;
    justify-content: center; align-items: center; transition: 0.4s;
}
.nav-menu.active { right: 0; }
.nav-menu li { margin: 20px 0; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--oscuro); font-size: 1.5rem; font-weight: 700; }

/* Hero */
.hero { padding: 50px 0; text-align: center; background: linear-gradient(to bottom, #fff, var(--gris-fondo)); }
.hero-logo { width: 280px; margin-bottom: 20px; }
.hero h1 { font-size: 2.2rem; line-height: 1.2; color: var(--oscuro); font-weight: 800; }
.hero h1 span { color: var(--rojo); }

/* Nosotros */
.section-padding { padding: 70px 0; }
.about-box { text-align: center; }
.about-box h2 { font-size: 2rem; color: var(--rojo); margin-bottom: 20px; }
.about-box p { font-size: 1.1rem; margin-bottom: 15px; color: #444; }
.highlight-text { font-weight: 700; color: var(--rojo); font-size: 1.3rem !important; margin-top: 25px; }

/* Productos */
.bg-light { background: var(--gris-fondo); }
.section-title { text-align: center; margin-bottom: 35px; font-size: 1.8rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* WhatsApp */
.wpp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 1000; }
.wpp-float img { width: 32px; }

/* Footer */
.footer { background: #111; color: white; padding: 60px 0 20px 0; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; }
.footer-logo { height: 80px; filter: brightness(0) invert(1); margin-bottom: 10px; }
.footer-location h4 { color: var(--amarillo); margin-bottom: 15px; text-transform: uppercase; }
.footer-bottom { margin-top: 50px; border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.8rem; opacity: 0.7; }
.footer-bottom a { color: var(--amarillo); text-decoration: none; }

/* Ocultar logo navbar en mobile */
.hide-mobile { display: none; }

/* Responsive Desktop */
@media (min-width: 992px) {
    .menu-toggle { display: none; }
    .nav-menu { position: static; height: auto; width: auto; flex-direction: row; background: transparent; }
    .nav-menu li { margin: 0 0 0 35px; }
    .nav-menu a { font-size: 1rem; }
    .hide-mobile { display: block; }
    .hero h1 { font-size: 4.5rem; }
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; }
    .footer-info { text-align: left; }
}