/* =============================================
   FUERZA Y FUEGO — Manos Creativas
   Estética: Artesanal contemporáneo / Luxury organic
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ---------- Variables ---------- */
:root {
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-pale: #F5EDDA;
    --gold-dark: #8B6508;
    --cement: #A8A59C;
    --cement-light: #D6D3CD;
    --cement-dark: #6B6860;
    --cream: #FAF8F4;
    --cream-warm: #F2EDE4;
    --charcoal: #2C2A26;
    --charcoal-soft: #4A4740;
    --white: #FFFFFF;
    --shadow-soft: 0 2px 20px rgba(44, 42, 38, 0.06);
    --shadow-card: 0 4px 30px rgba(44, 42, 38, 0.08);
    --shadow-hover: 0 8px 40px rgba(184, 134, 11, 0.12);
    --radius: 2px;
    --radius-lg: 4px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Utilidades ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ---------- Tipografía ---------- */
.heading-xl {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}
.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.heading-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
}
.heading-sm {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}
.subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.body-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--charcoal-soft);
    max-width: 600px;
}
.slogan {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--cement-dark);
    letter-spacing: 0.02em;
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-soft);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.navbar-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}
.navbar-logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: -2px;
}
.navbar-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.navbar-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
    position: relative;
    transition: color var(--transition);
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active {
    color: var(--gold-dark);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.navbar-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero + Slider ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: var(--cream-warm);
}
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250,248,244,0.75) 0%, rgba(242,237,228,0.4) 50%, rgba(250,248,244,0.1) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 80px 0 120px;
}
.hero-text {
    max-width: 580px;
}
.hero-text .subtitle { margin-bottom: 20px; }
.hero-text .heading-xl { margin-bottom: 24px; }
.hero-text .body-text { margin-bottom: 36px; }
.hero-slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}
.hero-arrow {
    background: rgba(255,255,255,0.85);
    border: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--charcoal);
}
.hero-arrow:hover {
    background: var(--gold);
    color: white;
}
.hero-dots {
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Decorador dorado */
.gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0;
}
.gold-line--center {
    margin: 20px auto;
}

/* ---------- Botones ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ---------- Sección "Nuestras Líneas" (Home) ---------- */
.lineas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.linea-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(184, 134, 11, 0.08);
    transition: all var(--transition);
    cursor: pointer;
}
.linea-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-light);
}
.linea-card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}
.linea-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.linea-card:hover .linea-card-img img {
    transform: scale(1.05);
}
.linea-card-body {
    padding: 28px 24px;
}
.linea-card-body .subtitle {
    font-size: 0.65rem;
    margin-bottom: 8px;
}
.linea-card-body .heading-sm {
    margin-bottom: 10px;
}
.linea-card-body p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal-soft);
    line-height: 1.6;
}
.linea-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap var(--transition);
}
.linea-card:hover .linea-card-link { gap: 14px; }

/* ---------- Sección Nosotros (Home) ---------- */
.nosotros {
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.nosotros::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%);
}
.nosotros .heading-lg { color: var(--cream); }
.nosotros .body-text { color: var(--cement-light); max-width: 700px; }
.nosotros .subtitle { color: var(--gold-light); }
.nosotros .gold-line { background: var(--gold-light); }
.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}
.nosotros-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.nosotros-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cement-light);
    line-height: 1.7;
}

/* ---------- Grid de Productos ---------- */
.productos-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-warm);
    text-align: center;
    overflow: hidden;
}
.productos-hero-bg {
    position: absolute;
    inset: 0;
}
.productos-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}
.productos-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(242,237,228,0.9) 0%, rgba(250,248,244,0.95) 100%);
}
.productos-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}
.productos-hero-content .subtitle { margin-bottom: 16px; }
.productos-hero-content .heading-xl { margin-bottom: 20px; }
.productos-hero-content .body-text {
    margin: 0 auto 20px;
    text-align: center;
}

/* Filtro de sublíneas */
.sublinea-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}
.sublinea-filter button {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--cement-light);
    background: transparent;
    color: var(--charcoal-soft);
    cursor: pointer;
    transition: all var(--transition);
}
.sublinea-filter button:hover,
.sublinea-filter button.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

/* Grid productos */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.producto-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all var(--transition);
}
.producto-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.producto-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.producto-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.producto-card:hover .producto-card-img img {
    transform: scale(1.04);
}
.producto-card-img .placeholder-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.4;
}
.producto-card-body {
    padding: 20px;
}
.producto-card-body .subtitle {
    font-size: 0.6rem;
    margin-bottom: 6px;
    color: var(--cement);
}
.producto-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.producto-card-body p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal-soft);
    line-height: 1.5;
    margin-bottom: 6px;
}
.producto-card-body .medidas {
    font-size: 0.78rem;
    color: var(--cement-dark);
    font-weight: 400;
}

/* ---------- Sección Ideas / Inspiración ---------- */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.idea-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: pointer;
}
.idea-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.idea-card:hover img { transform: scale(1.06); }
.idea-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(44,42,38,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.idea-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 400;
}
.idea-card-overlay p {
    font-size: 0.85rem;
    color: var(--cement-light);
    margin-top: 6px;
}

/* ---------- Contacto ---------- */
.contacto-section { background: var(--white); }
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contacto-form .form-group {
    margin-bottom: 24px;
}
.contacto-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
    margin-bottom: 8px;
}
.contacto-form input,
.contacto-form textarea,
.contacto-form select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    border: 1px solid var(--cement-light);
    background: var(--cream);
    color: var(--charcoal);
    transition: border-color var(--transition);
    outline: none;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
    border-color: var(--gold);
}
.contacto-form textarea { resize: vertical; min-height: 140px; }
.contacto-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.contacto-info p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--charcoal-soft);
    line-height: 1.8;
    margin-bottom: 24px;
}
.contacto-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contacto-info .info-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold);
    margin-top: 2px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    color: var(--cement-light);
    padding: 60px 0 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand .heading-sm {
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--cement);
    max-width: 340px;
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cement);
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(168, 165, 156, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--cement-dark);
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168, 165, 156, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover {
    border-color: var(--gold-light);
    background: rgba(184, 134, 11, 0.1);
}
.footer-social a svg {
    width: 16px;
    height: 16px;
    color: var(--cement);
}

/* ---------- Animaciones Scroll ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-text .body-text { margin-left: auto; margin-right: auto; }
    .hero-visual { display: none; }
    .lineas-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .nosotros-grid { grid-template-columns: 1fr; }
    .contacto-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .ideas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
        border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    }
    .navbar-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .navbar-toggle { display: flex; }
    .section-padding { padding: 70px 0; }
    .productos-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .productos-hero-content .heading-xl { font-size: 2.2rem; }
    .productos-hero-content .body-text { font-size: 0.9rem; padding: 0 10px; }
    .sublinea-filter { gap: 8px; }
    .sublinea-filter button { padding: 8px 16px; font-size: 0.68rem; }
    .hero-slider { height: 70vh; }
    .hero-content { min-height: 70vh; padding: 60px 0 100px; }
    .hero-text .heading-xl { font-size: 2rem; }
    .hero-slider-controls { bottom: 24px; }
}
@media (max-width: 480px) {
    .productos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .producto-card-body { padding: 14px; }
    .producto-card-body h3 { font-size: 0.95rem; }
    .producto-card-body p { font-size: 0.8rem; line-height: 1.4; }
    .producto-card-body .medidas { font-size: 0.72rem; }
    .producto-precio { font-size: 0.95rem; }
    .heading-xl { font-size: 2rem !important; line-height: 1.15 !important; word-break: break-word; }
    .heading-lg { font-size: 1.6rem !important; }
    .heading-md { font-size: 1.3rem !important; }
    .body-text { font-size: 0.9rem; line-height: 1.6; }
    .subtitle { font-size: 0.65rem; }
    .slogan { font-size: 0.9rem; }
    .section-padding { padding: 50px 0; }
    .container { padding: 0 16px; }
    .btn { padding: 12px 24px; font-size: 0.72rem; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .counter-item .counter-number { font-size: 2.5rem; }
    .counter-item .counter-label { font-size: 0.65rem; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 360px) {
    .heading-xl { font-size: 1.7rem !important; }
    .heading-lg { font-size: 1.4rem !important; }
    .container { padding: 0 12px; }
    .productos-grid { grid-template-columns: 1fr; gap: 16px; }
    .btn { padding: 10px 20px; font-size: 0.7rem; }
    .navbar-logo img { height: 38px; }
    .producto-card-body p { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner {
    text-align: center;
}
.preloader-inner .logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--cement-light);
    margin: 0 auto;
    overflow: hidden;
}
.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: preloaderSlide 1s ease infinite;
}
@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* Parallax */
.parallax-hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Precio */
.producto-precio {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 6px;
}
.producto-detail-precio {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

/* Contador animado */
.counter-section { background: var(--white); }
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.counter-item .counter-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.counter-item .counter-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}
