/*
 * SanJose Florería — Pereira
 * REDISEÑO "LUXURY FLORAL" · solo estilo (estructura intacta)
 * Color de marca conservado: Primary #BF9460 (dorado cálido)
 * Variante profunda generada: --primary-deep #8F6F48 (~25% más oscura)
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* —— Color de marca existente (NO se cambia) —— */
    --primary: #BF9460;
    --secondary: #F2CEA2;
    --accent: #8C5F37;
    --highlight: #F2C9C9;
    --background: #F2F2F2;
    --text-dark: #333;
    --text-light: #555;
    --white: #fff;

    /* —— Variante profunda del color de marca (precios / hovers) —— */
    --primary-deep: #8F6F48;

    /* —— Sistema Luxury Floral —— */
    --ink: #14101B;
    --ink-2: #221B2E;
    --warm-white: #FDFCFB;
    --cream: #F8F5F0;
    --brand-tint: #F6EFE2;        /* tinte pastel muy suave del dorado */
    --gold: #C9A86A;
    --gold-dark: #A8853F;
    --gold-soft: rgba(201, 168, 106, 0.22);
    --text: #2B2433;
    --text-soft: #6B6375;
    --hairline: rgba(22, 18, 28, 0.09);
    --wa: #1EBE5D;
    --wa-dark: #169549;

    /* —— Tipografía (sin cargar fuentes nuevas: fallbacks elegantes) —— */
    --font-title: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.9;
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section-title, .hero-content h1 {
    font-family: var(--font-title);
}

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

/* ─────────────────────────────────────────────────────────────
   NAVBAR — blanco cálido con blur y hairline dorado inferior
   ───────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 252, 251, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 1px 0 rgba(201, 168, 106, 0.25);
    z-index: 1000;
    padding: 0.9rem 0;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 44px;
    width: auto;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--gold), 0 4px 14px rgba(20, 16, 27, 0.08);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.nav-menu a:hover {
    color: var(--primary-deep);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

/* Botón estacional (tono luxury, sin parpadeo) */
.nav-mothers-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(143, 111, 72, 0.28);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.18em;
    border: 1px solid rgba(201, 168, 106, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-transform: uppercase;
    font-size: 12px;
}

.nav-mothers-btn::after { display: none; }

.nav-mothers-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(143, 111, 72, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-deep);
    margin: 3px 0;
    transition: 0.3s;
}

/* ─────────────────────────────────────────────────────────────
   HERO — atelier luminoso (video + cerco dorado + marca de agua)
   ───────────────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ink);
}

/* Video a pantalla completa, siempre cubriendo el área */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Velo oscuro suave SOLO para legibilidad — deja ver el video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(20, 16, 27, 0.7) 0%, rgba(20, 16, 27, 0.2) 45%, rgba(20, 16, 27, 0.45) 100%),
        radial-gradient(80% 70% at 50% 60%, transparent 40%, rgba(20, 16, 27, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--warm-white);
    z-index: 2;
    max-width: 820px;
    padding: 2.5rem 2rem;
    position: relative;
}

/* Filete dorado fino sobre el título (en vez del arco) */
.hero-content::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.6rem;
    box-shadow: 0 0 12px rgba(201, 168, 106, 0.7);
}

.hero-content h1 {
    font-size: clamp(3rem, 5.5vw, 5.4rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    line-height: 1.08;
    text-shadow: 0 2px 26px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: 2.2rem;
    opacity: 0.92;
    letter-spacing: 0.01em;
}

/* Botón primario — gradiente de marca + brillo deslizante */
/* Botón primario base = "Hacer Pedido" (WhatsApp, verde) */
.cta-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    vertical-align: middle;
    background: var(--wa);
    color: #fff;
    border: none;
    padding: 15px 40px;
    margin: 2.2rem 0.4rem 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(30, 190, 93, 0.35);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--wa-dark);
    box-shadow: 0 14px 34px rgba(30, 190, 93, 0.5);
}

.cta-button:hover::after {
    left: 120%;
}

/* ─────────────────────────────────────────────────────────────
   SECTION TITLES — línea dorada de 64px bajo el título
   ───────────────────────────────────────────────────────────── */
.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    font-weight: 500;
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 1.1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   PRODUCTOS DESTACADOS — vitrinas de arco
   ───────────────────────────────────────────────────────────── */
.products {
    padding: 96px 0;
    background: var(--cream);
}

.product-badge {
    order: 3;
    align-self: center;
    background: rgba(20, 16, 27, 0.9);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    border: 1px solid rgba(201, 168, 106, 0.5);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.4rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--warm-white);
    border: 1px solid var(--hairline);
    border-radius: 200px 200px 18px 18px;
    overflow: hidden;
    padding: 12px 12px 16px;
    box-shadow: 0 18px 50px rgba(20, 16, 27, 0.07);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 10px;
}

.product-card .product-image {
    order: 1;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(20, 16, 27, 0.12);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 190px 190px 14px 14px;
    box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.55);
}

.card-content {
    order: 2;
    width: 100%;
    padding: 1.6rem 1.2rem 0.4rem;
    text-align: center;
}

.product-name {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.product-description {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

.product-price {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 1.2rem;
}

.order-btn {
    width: 100%;
    background: var(--wa);
    color: #fff;
    border: none;
    padding: 13px 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.order-btn:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   GALERÍA — salón oscuro con marcos sutiles
   ───────────────────────────────────────────────────────────── */
.gallery {
    padding: 96px 0;
    background: var(--ink);
}

.gallery .section-title {
    color: var(--warm-white);
}

.gallery .section-title::after {
    background: var(--gold);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.1rem;
    margin-top: 2rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.35);
}

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

.photo-item:hover img {
    transform: scale(1.07);
}

/* ─────────────────────────────────────────────────────────────
   SERVICIOS / CATEGORÍAS — filas editoriales con numeración
   ───────────────────────────────────────────────────────────── */
.services {
    padding: 96px 0;
    background: var(--warm-white);
    counter-reset: svc;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5rem;
    counter-increment: svc;
}

.services-grid.reverse .service-item {
    order: 2;
}

.services-grid.reverse .service-image {
    order: 1;
}

.service-item h2 {
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-top: 0.4rem;
}

/* Numeración editorial 01, 02, 03… solo contorno dorado */
.service-item h2::before {
    content: counter(svc, decimal-leading-zero);
    display: block;
    font-family: var(--font-title);
    font-style: italic;
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 0.6rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    opacity: 0.7;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 2rem;
    text-align: left;
}

.service-btn {
    background: transparent;
    color: var(--primary-deep);
    border: 1px solid var(--gold);
    padding: 13px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.service-btn:hover {
    background: var(--primary-deep);
    color: #fff;
    transform: translateY(-2px);
}

.service-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 260px 260px 20px 20px;
    box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.6), 0 22px 50px rgba(20, 16, 27, 0.14);
}

/* ─────────────────────────────────────────────────────────────
   ÁREAS DE COBERTURA
   ───────────────────────────────────────────────────────────── */
.service-areas {
    padding: 96px 0;
    background: var(--brand-tint);
}

.areas-intro {
    text-align: center;
    font-size: 1.02rem;
    color: var(--text-soft);
    max-width: 800px;
    margin: -1.5rem auto 3rem;
    line-height: 1.8;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    margin-bottom: 3rem;
}

.area-card {
    background: var(--warm-white);
    padding: 2rem;
    border: 1px solid var(--hairline);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(20, 16, 27, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(20, 16, 27, 0.1);
}

.area-icon {
    width: 62px;
    height: 62px;
    background: var(--warm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 1px var(--gold);
}

.area-icon svg {
    fill: var(--primary-deep);
}

.area-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.area-card p {
    font-size: 0.94rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.areas-cta {
    text-align: center;
    padding: 2.4rem;
    background: var(--warm-white);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(20, 16, 27, 0.05);
}

.areas-cta p {
    font-size: 1.05rem;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}

.area-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    border: none;
    padding: 15px 38px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.area-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(143, 111, 72, 0.32);
}

/* ─────────────────────────────────────────────────────────────
   UBICACIÓN — mapa con cerco dorado
   ───────────────────────────────────────────────────────────── */
.location {
    padding: 96px 0;
    background: var(--warm-white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--gold), 0 18px 44px rgba(20, 16, 27, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER — oscuro coherente
   ───────────────────────────────────────────────────────────── */
.footer {
    background: var(--ink);
    padding: 56px 0;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 106, 0.25);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--warm-white);
    letter-spacing: 0.08em;
}

.instagram-icon {
    color: var(--gold);
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 168, 106, 0.08);
    box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.3);
}

.instagram-icon:hover {
    color: var(--warm-white);
    background: rgba(201, 168, 106, 0.18);
    transform: translateY(-2px);
}

.footer-year {
    font-size: 0.9rem;
    color: var(--text-soft);
    letter-spacing: 0.15em;
}

/* ─────────────────────────────────────────────────────────────
   WHATSAPP FLOTANTE — verde de marca WhatsApp
   ───────────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--wa);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(30, 190, 93, 0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--wa-dark);
    box-shadow: 0 10px 30px rgba(30, 190, 93, 0.5);
}

/* ─────────────────────────────────────────────────────────────
   MODAL ESTACIONAL — tono sobrio luxury
   ───────────────────────────────────────────────────────────── */
.valentine-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
}

.valentine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 16, 27, 0.86);
    backdrop-filter: blur(8px);
}

.valentine-content {
    position: relative;
    background: var(--warm-white);
    padding: 3.2rem 2.6rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 70px rgba(20, 16, 27, 0.5);
    animation: slideUp 0.6s ease-out;
    border: 1px solid var(--gold);
}

.valentine-content h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
}

.valentine-content p {
    font-size: 1.02rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.valentine-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    padding: 15px 42px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 22px rgba(143, 111, 72, 0.3);
}

.valentine-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(143, 111, 72, 0.42);
}

/* Corazones flotantes — solo transform/opacity */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
}

.floating-hearts .heart {
    position: absolute;
    bottom: 0;
    font-size: 1.6rem;
    color: var(--gold);
    animation: floatHeart 5s ease-in-out infinite;
    opacity: 0;
}

.floating-hearts .heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-hearts .heart:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.floating-hearts .heart:nth-child(3) { left: 35%; animation-delay: 1s; }
.floating-hearts .heart:nth-child(4) { left: 50%; animation-delay: 1.5s; }
.floating-hearts .heart:nth-child(5) { left: 65%; animation-delay: 2s; }
.floating-hearts .heart:nth-child(6) { left: 80%; animation-delay: 2.5s; }
.floating-hearts .heart:nth-child(7) { left: 25%; animation-delay: 3s; }
.floating-hearts .heart:nth-child(8) { left: 75%; animation-delay: 3.5s; }

@keyframes floatHeart {
    0% { transform: translateY(0) scale(0.9); opacity: 0; }
    50% { opacity: 0.85; }
    100% { transform: translateY(-460px) scale(1.05); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.valentine-modal.hidden {
    display: none;
}

/* ─────────────────────────────────────────────────────────────
   BOTONES DEL HERO
   ───────────────────────────────────────────────────────────── */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botón secundario ghost con hairline dorado */
/* Botón secundario = "Ver Catálogo" (oro champán, sin corazones) */
.catalog-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--ink) !important;
    border: none !important;
    box-shadow: 0 10px 26px rgba(168, 133, 63, 0.42) !important;
}

.catalog-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(168, 133, 63, 0.52) !important;
}

/* Ocultar los emojis 💖 sin tocar el HTML */
.catalog-btn .heart-emoji {
    display: none;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: rgba(253, 252, 251, 0.98);
        backdrop-filter: blur(14px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.6rem;
        border-bottom: 1px solid var(--hairline);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .services-grid,
    .services-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid.reverse .service-item {
        order: 2;
    }

    .services-grid.reverse .service-image {
        order: 1;
    }

    .service-item h2 {
        font-size: 1.6rem;
    }

    .service-item h2::before {
        font-size: 2.6rem;
    }

    .service-item p {
        font-size: 0.98rem;
        text-align: left;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-brand {
        font-size: 1.25rem;
    }

    .valentine-content {
        padding: 2.2rem 1.6rem;
        width: 95%;
    }

    .valentine-content h2 {
        font-size: 1.5rem;
        padding-top: 1rem;
    }

    .valentine-content p {
        font-size: 1rem;
    }

    .valentine-btn {
        padding: 13px 32px;
    }

    .floating-hearts .heart {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.1rem;
    }

    .catalog-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .products,
    .gallery,
    .services,
    .service-areas,
    .location {
        padding: 64px 0;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .service-item h2 {
        font-size: 1.4rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float a {
        width: 52px;
        height: 52px;
    }

    .areas-intro {
        font-size: 0.98rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   APARICIÓN SUAVE
   ───────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card,
.service-item,
.photo-item,
.area-card {
    animation: fadeInUp 0.6s ease-out both;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ─────────────────────────────────────────────────────────────
   ACCESIBILIDAD — anula animaciones si se solicita
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }
}
