*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #C5A100;
    --ink: #70A6BA;
    --slate: #0f2040;
    --mid: #F8F8F8;
    --dust: #0A0A0A;
    --cream: #e8f0fc;
    --white: #ffffff;
    --blue: #0729BA;
    --blue-dark: #0A174E;
    --green: #128C7E;
    --green-light: #128C7E;
    --yellow: rgba(197,161,0,0.44);
    --stripe: rgba(232,25,44,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: "Barlow", sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025; pointer-events: none; z-index: 9999;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem;
    background: rgba(200,200,200,0.48);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,25,44,0.25);
}
-- .nav-logo { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 1.5rem; letter-spacing: 0.04em; color: var(--white); text-decoration: none; }
.nav-logo { font-family: "Rammetto One", sans-serif; font-weight: 900; font-size: 1.5rem; letter-spacing: 0.04em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--blue); }
.nav-cta { background: #0A174E; color: #ffffff; font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.55rem 1.4rem; border-radius: 4px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: #0729BA; transform: translateY(-1px); }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, var(--stripe) 0px, var(--stripe) 1px, transparent 1px, transparent 80px); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; animation: fadeUp 0.7s ease both; }
.hero-eyebrow::before { content: ""; display: block; width: 24px; height: 2px; background: #e02020; }
.hero h1 { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(3.5rem, 10vw, 8rem); line-height: 0.92; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeUp 0.7s 0.1s ease both; }
.hero h1 em { font-style: normal; color: var(--blue); display: block; }
.hero-sub { max-width: 520px; font-size: 1.1rem; color: var(--dust); line-height: 1.6; margin-bottom: 2.5rem; animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeUp 0.7s 0.3s ease both; }
.hero-visual { position: absolute; right: -4rem; top: 50%; transform: translateY(-50%); width: min(520px, 55vw); opacity: 0.18; pointer-events: none; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--blue-dark); color: #FFFFFF; font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 20px rgba(224,32,32,0.3); }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,32,32,0.4); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--white); font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* STATS */
.stats-bar { background: var(--blue-dark); padding: 1.2rem 2rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 0.6rem; color: #ffffff; }
.stat-num { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 1.8rem; line-height: 1; }
.stat-label { font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.2; max-width: 80px; }

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.8rem; }
.section-title { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; text-transform: uppercase; margin-bottom: 1.2rem; }

/* PRODUCTS GRID */
#productos { background: var(--ink); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }

.product-card {
    background: var(--slate);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: rgba(245,200,0,0.35); }

.product-img {
    width: 100%; height: 200px; object-fit: cover; display: block;
    filter: brightness(0.88) saturate(0.9);
    transition: filter 0.3s;
}
.product-card:hover .product-img { filter: brightness(1) saturate(1.05); }

.product-body { padding: 1.4rem 1.5rem; }
.product-tag { display: inline-block; background: var(--ink); color: var(--blue); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 3px; margin-bottom: 0.7rem; }
.product-name { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.product-desc { color: var(--mid); font-size: 0.88rem; line-height: 1.55; }

.product-card-cta {
    display: block; text-align: center;
    margin: 1rem 1.5rem 1.5rem;
    background: var(--black);
    color: var(--blue);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.6rem; border-radius: 5px; text-decoration: none;
    border: 1px solid var(--yellow);
    transition: background 0.2s, border-color 0.2s;
}
.product-card-cta:hover { background: var(--yellow); border-color: var(--black); }

/* FEATURES */
#ventajas { background: var(--black); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature { display: flex; flex-direction: column; gap: 0.8rem; font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;}
.feature-dot { width: 10px; height: 10px; background: var(--blue-dark); border-radius: 50%; flex-shrink: 0; }
.feature h3 { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.04em; display: inline-block;}
.feature p { color: var(--mid); font-size: 0.92rem; line-height: 1.6; }

span.size-40 {
    font-size: 40px;
    font-variation-settings: 'OPSZ' 40;
    display: inline-block;
}
span.size-48 {
    font-size: 48px;
    font-variation-settings: 'OPSZ' 48;
    display: inline-block;
}


/* TESTIMONIALS */
#testimonios { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial { background: var(--slate); border-radius: 8px; padding: 1.8rem; border: 1px solid rgba(255,255,255,0.06); position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: -0.4rem; left: 1.2rem; font-family: "Barlow Condensed", sans-serif; font-size: 5rem; font-weight: 900; color: var(--black); opacity: 0.3; line-height: 1; }
.testimonial-text { color: var(--ink); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.testimonial-author { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); }
.testimonial-role { font-size: 0.8rem; color: var(--mid); margin-top: 0.1rem; }

/* CTA */
#contacto { background: var(--black); text-align: center; }
.cta-box { background: var(--blue-dark); border-radius: 12px; padding: 4rem 2rem; position: relative; overflow: hidden; }
.cta-box::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 10px, transparent 12px); }
.cta-box h2 { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem); text-transform: uppercase; color: #ffffff; line-height: 1; margin-bottom: 1rem; position: relative; }
.cta-box p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; position: relative; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--green); color: var(--white); font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 6px; text-decoration: none; transition: all 0.2s; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.whatsapp-btn:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* FOOTER */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem; text-align: center; }
.footer-logo { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--blue); }
footer p { color: var(--mid); font-size: 0.82rem; }
.social-links { display: flex; justify-content: center; gap: 1.2rem; margin: 1rem 0; }
.social-links a { color: var(--mid); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.social-links a:hover { color: var(--blue); }

.sombra {
    -webkit-box-shadow: -5px 21px 21px 0px rgba(135,125,135,0.61);
    -moz-box-shadow: -5px 21px 21px 0px rgba(135,125,135,0.61);
    box-shadow: -5px 21px 21px 0px rgba(135,125,135,0.61);
    border-radius: 22px 22px 22px 22px;
    -moz-border-radius: 22px 22px 22px 22px;
    -webkit-border-radius: 22px 22px 22px 22px;
    border: 0px solid #000000;

}

/* FLOAT WA */
.float-wa { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; background: var(--green); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(192,21,21,0.5); transition: all 0.2s; text-decoration: none; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(192,21,21,0.6); }
.float-wa svg { width: 30px; height: 30px; fill: white; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
    .hero-visual { display: none; }
    .stats-bar { gap: 1.5rem; }
    nav { padding: 0.9rem 1.2rem; }
    section { padding: 3.5rem 1.2rem; }
}
