/* ============================================
   COOKIE LOVERS — Repostería artesanal
   Ultra-professional design system
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand palette - cálido, artesanal, femenino */
    --cream: #faf6f2;
    --cream-soft: #fffaf5;
    --cream-dark: #f0e8dd;
    --pink: #f5a8b8;
    --pink-soft: #fde4eb;
    --pink-light: #fff0f3;
    --rose: #e94e77;
    --chocolate: #3a2520;
    --chocolate-soft: #6b4c3d;
    --gold: #c9a06b;
    --gold-soft: #e8d2a6;
    --accent: #8b3a4e;

    /* Neutrals */
    --ink: #1a1410;
    --body: #4a3d36;
    --muted: #8a7d73;
    --line: rgba(58, 37, 32, 0.08);
    --line-strong: rgba(58, 37, 32, 0.18);
    --white: #ffffff;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Caveat', cursive;

    /* Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    --shadow-sm: 0 1px 3px rgba(58, 37, 32, 0.08);
    --shadow: 0 4px 20px rgba(58, 37, 32, 0.08);
    --shadow-lg: 0 20px 60px rgba(58, 37, 32, 0.12);
    --shadow-xl: 0 30px 80px rgba(58, 37, 32, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --header-h: 80px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.script { font-family: var(--font-script); font-weight: 700; font-style: italic; color: var(--rose); }
.gold { color: var(--gold); font-style: italic; }

em { font-style: italic; color: var(--rose); }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}
.container-narrow { max-width: 860px; }

/* =========== TOP BAR =========== */
.top-bar {
    background: var(--chocolate);
    color: var(--cream-soft);
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* =========== HEADER =========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 242, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: var(--space-6);
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ink);
}
.brand-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(245, 168, 184, 0.35);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand-tag {
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    margin-top: 2px;
}

/* Nav */
.nav-main {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.nav-link {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--body);
    border-radius: 999px;
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--rose); background: var(--pink-light); }
.nav-link.active { color: var(--rose); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: all var(--transition);
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--accent));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(233, 78, 119, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 78, 119, 0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* =========== HERO =========== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    padding: var(--space-16) 0 var(--space-20);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
}
.orb-1 {
    width: 400px; height: 400px;
    background: var(--pink-soft);
    top: -100px; right: -100px;
}
.orb-2 {
    width: 300px; height: 300px;
    background: var(--gold-soft);
    bottom: -80px; left: -80px;
    animation-delay: -5s;
}
.orb-3 {
    width: 250px; height: 250px;
    background: var(--pink-light);
    top: 50%; left: 40%;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--white);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rose);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: var(--space-6);
    letter-spacing: -0.035em;
}
.hero-title .script {
    font-size: 1.15em;
    display: inline-block;
    transform: rotate(-4deg);
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--body);
    margin-bottom: var(--space-8);
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--line);
}
.hero-stats > div {
    display: flex;
    flex-direction: column;
}
.hero-stats strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ink);
}
.hero-stats span {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero visual - animated cake */
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
}
.cake-stack {
    position: relative;
    width: 320px;
    height: 380px;
    animation: cake-float 6s ease-in-out infinite;
}
@keyframes cake-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cake-layer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(58, 37, 32, 0.12);
}
.cake-layer.l1 {
    bottom: 0;
    width: 280px; height: 90px;
    background: linear-gradient(180deg, #f5d4c1 0%, #e4b89e 100%);
}
.cake-layer.l2 {
    bottom: 75px;
    width: 220px; height: 80px;
    background: linear-gradient(180deg, #fde4eb 0%, #f5a8b8 100%);
}
.cake-layer.l3 {
    bottom: 140px;
    width: 160px; height: 70px;
    background: linear-gradient(180deg, #faf6f2 0%, #e8d2a6 100%);
}
.cake-topper {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    background: var(--rose);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(233, 78, 119, 0.4);
}
.cake-topper::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 2px; height: 30px;
    background: var(--gold);
}
.cake-decor {
    position: absolute;
    font-size: 2rem;
    animation: decor-float 4s ease-in-out infinite;
}
.cake-decor.d1 { top: 10%; left: -10%; animation-delay: 0s; }
.cake-decor.d2 { top: 30%; right: -10%; animation-delay: -1s; }
.cake-decor.d3 { bottom: 40%; left: -5%; animation-delay: -2s; }
.cake-decor.d4 { bottom: 10%; right: -5%; animation-delay: -3s; }
@keyframes decor-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -6px); }
}

/* =========== TRUST BAR =========== */
.trust-bar {
    padding: var(--space-6) 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-label {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--chocolate-soft);
    font-style: italic;
}
.trust-row .dot { color: var(--gold); }

/* =========== SECTIONS =========== */
.section { padding: var(--space-24) 0; }
.section-alt { background: var(--cream-soft); }
.section-dark { background: var(--chocolate); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-16);
}
.section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: var(--space-3);
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
}
.section-dark .section-lead { color: rgba(250, 246, 242, 0.7); }
.section-dark .section-kicker { color: var(--pink); }

.section-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* =========== NEWS SECTION =========== */
.news-section { background: linear-gradient(180deg, var(--cream) 0%, var(--pink-light) 100%); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}
.news-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition);
    border: 1px solid var(--line);
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink);
}
.news-card.featured {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
    border: 2px solid var(--pink);
    transform: scale(1.05);
}
.news-emoji {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    display: inline-block;
    animation: wiggle 3s ease-in-out infinite;
}
.news-card:nth-child(2) .news-emoji { animation-delay: -1s; }
.news-card:nth-child(3) .news-emoji { animation-delay: -2s; }
@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}
.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
}
.news-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-4);
}
.news-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--rose);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =========== PRODUCTS GRID =========== */
.filter-chips {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}
.chip {
    padding: 0.55rem 1.2rem;
    background: var(--white);
    border: 1.5px solid var(--line-strong);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--body);
    transition: all var(--transition);
}
.chip:hover { border-color: var(--rose); color: var(--rose); }
.chip.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--line);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--pink-soft), var(--gold-soft));
    display: grid;
    place-items: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}
.product-card:hover .product-image { transform: scale(1.05); }
.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 50%);
}
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--rose);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.05em;
}
.product-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 2;
    font-size: 1rem;
    transition: all var(--transition);
    cursor: pointer;
}
.product-fav:hover { transform: scale(1.1); }
.product-body { padding: var(--space-5) var(--space-6) var(--space-6); }
.product-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}
.product-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: var(--space-4);
    line-height: 1.5;
}
.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--line);
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
}
.product-price small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-left: 0.2rem;
}
.product-order {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
}
.product-order:hover { background: var(--rose); transform: scale(1.05); }

/* =========== SERVICES / WAS HERE BEFORE, NOT USED NOW =========== */

/* =========== STORY SECTION =========== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
.story-visual {
    position: relative;
    min-height: 500px;
}
.story-img {
    position: absolute;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.story-img-1 {
    width: 70%;
    height: 320px;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink));
    display: grid;
    place-items: center;
    font-size: 5rem;
}
.story-img-1::before { content: '👩‍🍳'; }
.story-img-2 {
    width: 60%;
    height: 280px;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    display: grid;
    place-items: center;
    font-size: 5rem;
}
.story-img-2::before { content: '🧁'; }
.story-stat {
    position: absolute;
    top: 40%;
    right: 5%;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 2;
    min-width: 150px;
    text-align: center;
}
.story-stat strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--rose);
    line-height: 1;
}
.story-stat span {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.story-text .section-kicker { text-align: left; margin-bottom: var(--space-3); }
.story-text h2 { text-align: left; }
.story-text p {
    margin-bottom: var(--space-4);
    font-size: 1.02rem;
    line-height: 1.8;
}
.story-bullets {
    margin: var(--space-6) 0 var(--space-8);
}
.story-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
}
.story-bullets li:last-child { border-bottom: none; }
.story-bullets svg {
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========== PROCESS =========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}
.process-step {
    text-align: center;
    padding: var(--space-6);
}
.step-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-4);
    font-style: italic;
}
.process-step h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-3);
}
.process-step p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* =========== THEMED CATÁLOGOS =========== */
.themed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}
.themed-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.themed-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, var(--rose));
}
.themed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.themed-emoji {
    font-size: 3rem;
    margin-bottom: var(--space-3);
    display: inline-block;
}
.themed-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-2);
}
.themed-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
    line-height: 1.6;
}
.themed-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--cream);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent, var(--rose));
    letter-spacing: 0.05em;
}

/* =========== LOCATION =========== */
.location-section {
    background: var(--cream-soft);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}
.location-section .section-kicker { margin-bottom: var(--space-3); }
.location-section h2 { margin-bottom: var(--space-5); }
.location-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: var(--space-6);
}
.location-list {
    display: grid;
    gap: var(--space-4);
}
.location-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.location-list svg {
    color: var(--rose);
    flex-shrink: 0;
}
.location-list strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 2px;
}
.location-list span {
    font-size: 0.85rem;
    color: var(--muted);
}
.map-card {
    aspect-ratio: 1 / 1;
    max-width: 440px;
    margin-left: auto;
    background: linear-gradient(135deg, var(--pink-soft), var(--gold-soft));
    border-radius: var(--radius-xl);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.3) 0%, transparent 25%);
}
.map-placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--chocolate);
}
.map-pin {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.map-placeholder strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}
.map-placeholder span {
    font-size: 0.9rem;
    color: var(--chocolate-soft);
}

/* =========== TESTIMONIALS =========== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}
.testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    position: relative;
}
.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.5;
    color: var(--gold);
    position: absolute;
    top: 1.8rem;
    right: 1.5rem;
    opacity: 0.5;
}
.testimonial p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(250, 246, 242, 0.85);
    margin-bottom: var(--space-6);
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-3);
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
}
.testimonial-author strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.78rem;
    color: rgba(250, 246, 242, 0.6);
}
.stars {
    color: var(--gold);
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

/* =========== FAQ =========== */
.faq { display: grid; gap: 0.75rem; }
.faq details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq details[open] { border-color: var(--pink); box-shadow: var(--shadow); }
.faq summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--rose);
    transition: transform var(--transition);
    flex-shrink: 0;
    line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
    padding: 0 1.5rem 1.2rem;
    color: var(--body);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========== CTA / CONTACT =========== */
.cta-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}
.cta-info .section-kicker { margin-bottom: var(--space-3); }
.cta-info h2 { margin-bottom: var(--space-5); line-height: 1.1; }
.cta-info > p {
    font-size: 1.05rem;
    color: var(--body);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}
.contact-list {
    display: grid;
    gap: var(--space-3);
}
.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.contact-list svg { color: var(--rose); flex-shrink: 0; }
.contact-list strong {
    display: block;
    font-size: 0.85rem;
    color: var(--ink);
    font-weight: 600;
}
.contact-list span { font-size: 0.85rem; color: var(--muted); }

.cta-form {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--line);
}
.cta-form h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-6);
    text-align: center;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}
.field { margin-bottom: var(--space-4); }
.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius);
    font-size: 0.92rem;
    background: var(--cream-soft);
    color: var(--ink);
    transition: all var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: var(--space-4);
}

/* =========== FOOTER =========== */
.footer {
    background: var(--chocolate);
    color: var(--cream);
    padding: var(--space-20) 0 var(--space-8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(250, 246, 242, 0.7);
    margin: var(--space-4) 0 var(--space-5);
    max-width: 340px;
    line-height: 1.7;
}
.footer h4 {
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
    font-weight: 600;
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a, .contact-inline li {
    font-size: 0.88rem;
    color: rgba(250, 246, 242, 0.65);
    transition: color var(--transition);
}
.footer ul a:hover { color: var(--pink); }
.contact-inline li { display: block; }

.social-row { display: flex; gap: 0.6rem; }
.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(250, 246, 242, 0.08);
    display: grid;
    place-items: center;
    transition: all var(--transition);
    color: var(--cream);
}
.social-row a:hover { background: var(--rose); transform: translateY(-2px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(250, 246, 242, 0.1);
    font-size: 0.82rem;
    color: rgba(250, 246, 242, 0.55);
    flex-wrap: wrap;
    gap: var(--space-4);
}
.made { font-style: italic; }

/* =========== WHATSAPP FLOAT =========== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--transition);
    animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0); }
}
.wa-float:hover {
    transform: scale(1.1);
    background: #20ba57;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: var(--space-10); }
    .hero-visual { order: -1; min-height: 340px; }
    .cake-stack { transform: scale(0.85); }
    .story-grid { grid-template-columns: 1fr; }
    .story-visual { min-height: 400px; }
    .location-grid { grid-template-columns: 1fr; }
    .map-card { margin: 0 auto; }
    .cta-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { transform: none; }
    .themed-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: var(--space-16) 0; }
    .nav-main {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-6);
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
    }
    .nav-main.open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-link {
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
        text-align: center;
    }
    .menu-toggle { display: flex; }
    .brand-text { display: none; }
    .hero { padding-top: var(--space-10); padding-bottom: var(--space-16); min-height: auto; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-stats { gap: var(--space-4); }
    .hero-stats strong { font-size: 1.4rem; }
    .hero-stats span { font-size: 0.7rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .products-grid { grid-template-columns: 1fr; }
    .themed-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-row { justify-content: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-form { padding: var(--space-6); }
    .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .wa-float svg { width: 24px; height: 24px; }
    .top-bar { font-size: 0.7rem; padding: 0.4rem; }
    .story-stat { right: 50%; transform: translateX(50%); top: auto; bottom: -40px; }
}
