/* ================================================================
   KOSTAS STORE — Landing Page
   Tema: Claro · Azules elegantes · Tienda de moda
   ================================================================ */

@import url('variables.css');

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-body);
    font-size: var(--text-base);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ================================================================
   NAVBAR
   ================================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 6%;
    transition: background var(--t-normal), box-shadow var(--t-normal);
}
.nav.solid {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-icon {
    width: 38px; height: 38px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 16px;
}
.nav-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary);
}
.nav-brand em { font-style: normal; color: var(--primary-light); }

/* Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    padding: 8px 16px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--t-fast);
}
.nav-link:hover { color: var(--primary); background: var(--primary-xlight); }

/* CTA nav */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost {
    padding: 8px 18px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    border: 1.5px solid var(--brand-200);
    border-radius: var(--radius);
    transition: all var(--t-fast);
}
.btn-nav-ghost:hover { background: var(--primary-xlight); border-color: var(--primary-light); }
.btn-nav-filled {
    padding: 9px 22px;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 7px;
    transition: all var(--t-normal);
    box-shadow: var(--shadow-brand);
}
.btn-nav-filled:hover { background: var(--primary-mid); box-shadow: var(--shadow-brand-lg); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-sm);
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--t-normal);
}

/* Mobile menu */
.nav-menu-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 6%;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 998;
}
.nav-menu-mobile.open { display: flex; }
.nav-menu-mobile .nav-link { font-size: var(--text-base); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 48px) 6% 64px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Fondo decorativo */
.hero-bg-shape {
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(145deg, var(--brand-50) 0%, var(--brand-100) 60%, var(--brand-200) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}
.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--brand-200) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: .45;
    z-index: 0;
    mask-image: radial-gradient(ellipse 60% 70% at 80% 50%, black 30%, transparent 80%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 72px;
}

/* Left */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 8px;
    background: var(--primary-xlight);
    border: 1px solid var(--brand-200);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-mid);
    margin-bottom: var(--space-6);
    width: fit-content;
    animation: fadeUp .5s ease both;
}
.hero-tag-dot {
    width: 22px; height: 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 9px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    animation: fadeUp .5s .1s ease both;
}
.hero-title .line-accent {
    color: var(--primary-light);
    display: block;
}
.hero-title .line-thin {
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    display: block;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: var(--text-md);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: var(--space-10);
    animation: fadeUp .5s .2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
    animation: fadeUp .5s .3s ease both;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 700;
    box-shadow: var(--shadow-brand-lg);
    transition: all var(--t-normal);
}
.btn-hero-primary:hover { background: var(--primary-mid); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(29,78,216,.3); }
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    color: var(--primary);
    border: 2px solid var(--brand-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 600;
    transition: all var(--t-normal);
}
.btn-hero-secondary:hover { background: var(--primary-xlight); border-color: var(--primary-light); }

/* Stats under hero buttons */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
    animation: fadeUp .5s .4s ease both;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-value {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.hero-stat-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }
.hero-stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Right — fashion cards collage */
.hero-visual {
    position: relative;
    animation: fadeRight .7s .2s ease both;
    padding: 24px 0;
}
.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}
.hc { /* hero card */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    transition: transform var(--t-normal), box-shadow var(--t-normal);
    box-shadow: var(--shadow-md);
    cursor: default;
}
.hc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hc-tall { grid-row: span 2; min-height: 380px; }

/* Colores de cada card de moda */
.hc-1 { background: linear-gradient(145deg, #1D4ED8 0%, #0A2342 100%); }
.hc-2 { background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%); color: var(--primary); }
.hc-3 { background: linear-gradient(145deg, #F8FBFF 0%, #E0EFFE 100%); color: var(--primary); }
.hc-4 { background: linear-gradient(145deg, #2563EB 0%, #1D4ED8 100%); }

/* Ícono grande decorativo */
.hc-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-60%);
    font-size: 60px;
    opacity: .18;
}
.hc-1 .hc-icon, .hc-4 .hc-icon { color: var(--white); }
.hc-2 .hc-icon, .hc-3 .hc-icon { color: var(--primary); }

.hc-content {
    padding: 16px;
    position: relative;
    z-index: 2;
}
.hc-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .75;
    margin-bottom: 4px;
}
.hc-1 .hc-label, .hc-4 .hc-label { color: var(--white); }
.hc-2 .hc-label, .hc-3 .hc-label { color: var(--primary-mid); }

.hc-name {
    font-size: var(--text-lg);
    font-weight: 800;
    line-height: 1.1;
}
.hc-1 .hc-name, .hc-4 .hc-name { color: var(--white); }
.hc-2 .hc-name, .hc-3 .hc-name { color: var(--primary); }

.hc-price {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
}
.hc-1 .hc-price, .hc-4 .hc-price { background: rgba(255,255,255,.2); color: var(--white); }
.hc-2 .hc-price, .hc-3 .hc-price { background: var(--primary); color: var(--white); }

/* badge "Nuevo" */
.hc-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--gold-light);
    color: #6B4F00;
    box-shadow: var(--shadow-sm);
}

/* ================================================================
   CATEGORÍAS
   ================================================================ */
.categories-section {
    padding: var(--space-24) 6%;
    background: var(--bg-section);
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: var(--space-4);
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 24px; height: 1.5px;
    background: var(--brand-300);
    border-radius: 1px;
}
.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: var(--space-4);
}
.section-title .accent { color: var(--primary-light); }
.section-desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.7;
}

.cat-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.cat-card:hover .cat-img-area { filter: brightness(.9); }

.cat-img-area {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    transition: filter var(--t-normal);
    position: relative;
    overflow: hidden;
}
.cat-1 .cat-img-area { background: linear-gradient(135deg, var(--brand-50) 0%, var(--brand-100) 100%); }
.cat-2 .cat-img-area { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); }
.cat-3 .cat-img-area { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); }
.cat-4 .cat-img-area { background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%); }

.cat-img-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,.6), transparent);
}

.cat-body { padding: var(--space-5) var(--space-5) var(--space-6); }
.cat-name {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.cat-sub { font-size: var(--text-sm); color: var(--text-muted); }
.cat-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-light);
    margin-top: var(--space-4);
    transition: gap var(--t-fast);
}
.cat-card:hover .cat-cta { gap: 10px; }

/* Variante estática — sin hover interactivo */
.cat-card.cat-static { cursor: default; }
.cat-card.cat-static:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--border); }
.cat-card.cat-static:hover .cat-img-area { filter: none; }

.cat-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--space-4);
}
.cat-tag {
    padding: 3px 12px;
    background: var(--primary-xlight);
    border: 1px solid var(--brand-200);
    color: var(--primary-mid);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 600;
}

/* ================================================================
   ABOUT — Historia de Kostas
   ================================================================ */
.about-section {
    padding: var(--space-24) 6%;
    background: var(--white);
}
.about-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual lado izquierdo */
.about-visual {
    position: relative;
}
.about-main-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-10);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-xl);
}
.about-main-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.about-main-card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.about-big-icon {
    font-size: 90px;
    position: absolute;
    top: 30px; right: 30px;
    opacity: .12;
}
.about-card-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,255,255,.15);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    width: fit-content;
    position: relative;
    z-index: 2;
}
.about-card-quote {
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-5);
}
.about-card-sub {
    font-size: var(--text-sm);
    opacity: .7;
    position: relative;
    z-index: 2;
}

/* Tarjeta flotante sobre la principal */
.about-float-card {
    position: absolute;
    right: -30px; top: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}
.afc-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: var(--primary-xlight);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: 17px;
    flex-shrink: 0;
}
.afc-text strong { display: block; font-size: var(--text-base); font-weight: 800; color: var(--text-primary); }
.afc-text span   { font-size: var(--text-xs); color: var(--text-muted); }

/* Puntos decorativos */
.about-dots {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 100px; height: 100px;
    background-image: radial-gradient(var(--brand-300) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: .6;
}

/* Contenido derecho */
.about-content {}
.about-lead {
    font-size: var(--text-md);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}
.pillar {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}
.pillar-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--primary-xlight);
    border: 1px solid var(--brand-200);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-mid);
    font-size: 17px;
    flex-shrink: 0;
}
.pillar-title { font-size: var(--text-base); font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.pillar-desc  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

.about-signature {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}
.sig-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.sig-name  { font-size: var(--text-base); font-weight: 700; color: var(--text-primary); }
.sig-title { font-size: var(--text-sm); color: var(--text-muted); }

/* ================================================================
   PRODUCTOS DESTACADOS (colección)
   ================================================================ */
.featured-section {
    padding: var(--space-24) 6%;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.featured-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.featured-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}
.featured-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
    gap: var(--space-4);
}
.featured-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.15;
}
.featured-title span { color: var(--brand-300); }
.featured-title small {
    display: block;
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255,255,255,.55);
    letter-spacing: 0;
    margin-bottom: var(--space-1);
}
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--t-fast);
    white-space: nowrap;
}
.btn-see-all:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.4); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.product-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-normal);
    backdrop-filter: blur(8px);
}
.product-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); transform: translateY(-4px); }
.product-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
}
.product-img-bg-1 { background: rgba(255,255,255,.05); }
.product-img-bg-2 { background: rgba(255,255,255,.08); }
.product-img-bg-3 { background: rgba(255,255,255,.05); }
.product-img-bg-4 { background: rgba(255,255,255,.08); }

.product-new-tag {
    position: absolute;
    top: 12px; left: 12px;
    padding: 3px 10px;
    background: var(--gold-light);
    color: #5C3F00;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.product-body { padding: var(--space-4); }
.product-name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.product-type {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: var(--space-3);
}
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-price {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--brand-300);
}
.product-add-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 13px;
    transition: all var(--t-fast);
    border: 1px solid rgba(255,255,255,.2);
}
.product-card:hover .product-add-btn { background: var(--white); color: var(--primary); }

/* ================================================================
   EXPERIENCIA / VALORES
   ================================================================ */
.values-section {
    padding: var(--space-24) 6%;
    background: var(--bg-section);
}
.values-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: var(--space-16);
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all var(--t-normal);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-normal);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-lg);
    background: var(--primary-xlight);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--primary-mid);
    margin: 0 auto var(--space-5);
    transition: all var(--t-normal);
    border: 1px solid var(--brand-200);
}
.value-card:hover .value-icon { background: var(--primary); color: var(--white); border-color: var(--primary); }
.value-title { font-size: var(--text-base); font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-2); }
.value-desc  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }

/* ================================================================
   NÚMEROS / STATS
   ================================================================ */
.stats-section {
    padding: var(--space-20) 6%;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stats-inner--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 860px;
}
.stat-num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.stat-num--text {
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: -1px;
}
.stat-num span { color: var(--primary-light); }
.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

/* ================================================================
   VISÍTANOS / CTA
   ================================================================ */
.visit-section {
    padding: var(--space-24) 6%;
    background: var(--bg-section);
}
.visit-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.visit-content {}
.visit-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-top: var(--space-8);
    margin-bottom: var(--space-10);
}
.visit-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}
.vii-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--primary-xlight);
    border: 1px solid var(--brand-200);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-mid);
    font-size: 16px;
    flex-shrink: 0;
}
.vii-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.vii-value { font-size: var(--text-base); font-weight: 600; color: var(--text-primary); margin-top: 2px; }

/* Mapa placeholder */
.visit-map-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-placeholder {
    height: 200px;
    background: linear-gradient(145deg, var(--brand-50) 0%, var(--brand-100) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--primary-mid);
    font-size: var(--text-sm);
    font-weight: 600;
}
.map-placeholder i { font-size: 36px; opacity: .5; }
.map-info { padding: var(--space-6); }
.map-address { font-size: var(--text-base); font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-2); }
.map-sub { font-size: var(--text-sm); color: var(--text-muted); }
.btn-directions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-5);
    padding: 11px 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 700;
    width: fit-content;
    transition: all var(--t-fast);
    box-shadow: var(--shadow-brand);
}
.btn-directions:hover { background: var(--primary-mid); transform: translateY(-1px); box-shadow: var(--shadow-brand-lg); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-16) 6% var(--space-8);
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: var(--space-8);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-5);
}
.footer-logo-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.footer-logo-name {
    font-size: 20px;
    font-weight: 800;
}
.footer-logo-name em { font-style: normal; color: var(--brand-300); }
.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: all var(--t-fast);
}
.social-link:hover { background: rgba(255,255,255,.2); color: var(--white); border-color: rgba(255,255,255,.3); }

.footer-col-title {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.4);
    margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.65);
    transition: color var(--t-fast);
    display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--white); }
.footer-link i { font-size: 10px; opacity: .5; }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}
.footer-copy { font-size: var(--text-sm); color: rgba(255,255,255,.4); }
.footer-copy b { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a { font-size: var(--text-sm); color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ================================================================
   ANIMACIONES ON SCROLL
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1  { transition-delay: .1s; }
.reveal-delay-2  { transition-delay: .2s; }
.reveal-delay-3  { transition-delay: .3s; }
.reveal-delay-4  { transition-delay: .4s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .hero-inner    { gap: 40px; }
    .cat-grid      { grid-template-columns: repeat(2, 1fr); }
    .values-grid   { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
    .hero-inner    { grid-template-columns: 1fr; }
    .hero-visual   { display: none; }
    .about-inner   { grid-template-columns: 1fr; gap: 40px; }
    .about-float-card { display: none; }
    .visit-inner   { grid-template-columns: 1fr; gap: 40px; }
    .stats-inner   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .nav-menu      { display: none; }
    .nav-hamburger { display: flex; }
    .btn-nav-ghost { display: none; }
}
@media (max-width: 640px) {
    .cat-grid      { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .values-grid   { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-title    { letter-spacing: -1px; }
    .hero-actions  { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}
