:root {
    --bg: #fff9f0;
    --bg-soft: #fff2d8;
    --surface: rgba(255, 255, 255, 0.88);
    --text: #2a1b14;
    --muted: #6d5748;
    --primary: #e0a538;
    --primary-dark: #bf7b17;
    --accent: #4a2a1d;
    --border: rgba(74, 42, 29, 0.12);
    --shadow: 0 14px 35px rgba(74, 42, 29, 0.14);
    --radius: 20px;
    --container: min(1120px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(224, 165, 56, 0.18), transparent 0 28%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 .75rem;
}

.section-subtitle {
    margin: 0 0 2rem;
    color: var(--muted);
    max-width: 680px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 249, 240, 0.88);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-weight: 800;
}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(224, 165, 56, 0.4);
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 600;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #2d1d16;
    color: #fff;
    cursor: pointer;
}

.nav-menu {
    position: absolute;
    top: 80px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.nav-menu.is-open {
    display: flex;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: var(--bg-soft);
    color: var(--primary-dark);
}

.hero {
    padding: 2rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-copy,
.hero-art,
.product-card,
.about-card,
.contact-card,
.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 1.5rem;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: #fff2cd;
    color: #855313;
    font-weight: 800;
    letter-spacing: .03em;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 0 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #f7bf57 100%);
    color: #2a1b14;
}

.btn-secondary {
    background: linear-gradient(135deg, #fff7e8 0%, #ffe0a8 100%);
    color: #4a2a1d;
    border: 1px solid rgba(191, 123, 23, 0.26);
    box-shadow: 0 10px 22px rgba(74, 42, 29, 0.12);
}

.hero-art {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    padding: 1rem;
}

.hero-art::before,
.hero-art::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 192, 92, 0.95) 0%, rgba(238, 173, 45, 0.8) 62%, rgba(211, 145, 24, 0.55) 100%);
}

.hero-art::before {
    width: 180px;
    height: 180px;
    top: 38px;
    left: 32px;
}

.hero-art::after {
    width: 210px;
    height: 210px;
    right: 22px;
    bottom: 28px;
}

.hero-badge {
    position: absolute;
    right: 16px;
    top: 16px;
    padding: .75rem 1rem;
    background: rgba(45, 29, 22, 0.93);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
}

.hero-visual-text {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: 240px;
    padding: .9rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}

.stat {
    padding: 1rem 1.2rem;
}

.stat strong {
    display: block;
    font-size: 1.4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, #fff7e5 0%, #ffefc8 100%);
    padding: 1rem;
}

.product-body {
    padding: 1.2rem;
}

.product-size {
    display: inline-flex;
    margin: .15rem 0 .75rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: #fff3cf;
    color: #855313;
    font-weight: 800;
    font-size: .88rem;
}

.product-price {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .8rem;
    font-weight: 900;
    color: #2a1b14;
    background: linear-gradient(135deg, #ffd36a 0%, #ffecb2 100%);
    padding: .5rem .9rem;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(224, 165, 56, 0.24);
    animation: pricePulse 2.2s ease-in-out infinite;
}

.product-price::before {
    content: '★';
    color: #bf7b17;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-card,
.contact-card {
    padding: 1.4rem;
}

.bullets {
    display: grid;
    gap: .7rem;
    padding: 0;
    list-style: none;
}

.bullets li {
    display: flex;
    align-items: start;
    gap: .7rem;
}

.bullets span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffe4a4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 800;
}

.rating-badge {
    display: grid;
    gap: .45rem;
    margin: 1rem 0 1.2rem;
    padding: 1rem;
    border-radius: 16px;
    background: #fff3cf;
    color: #593714;
}

.rating-badge strong {
    font-size: 2rem;
    line-height: 1;
}

.stars {
    letter-spacing: .18rem;
    color: #e3a11f;
    font-size: 1.15rem;
}

.review-list {
    display: grid;
    gap: .8rem;
}

.review-list blockquote {
    margin: 0;
    padding: .9rem 1rem;
    border-left: 4px solid var(--primary);
    background: #fffaf0;
    border-radius: 12px;
    color: var(--accent);
}

.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.contact-highlight {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    color: #fff;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.24);
}

.contact-note {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.map-card {
    overflow: hidden;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-actions {
    margin-top: 1rem;
}

.contact-full {
    grid-column: 1 / -1;
}

.contact-form {
    display: grid;
    gap: .9rem;
}

.form-row {
    display: grid;
    gap: .35rem;
}

label {
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(74, 42, 29, 0.18);
    border-radius: 14px;
    padding: .9rem 1rem;
    font: inherit;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(224, 165, 56, 0.3);
    border-color: var(--primary);
}

.alert {
    padding: .85rem 1rem;
    border-radius: 14px;
    font-weight: 700;
}

.alert-success {
    background: #e6f6ea;
    color: #1f6b38;
}

.alert-error {
    background: #fff0ef;
    color: #a12c24;
}

.site-footer {
    margin-top: 1rem;
    padding: 2.5rem 0 2rem;
    color: #f7ead8;
    background: linear-gradient(135deg, #2c1a12 0%, #4a2a1d 100%);
}

.footer-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem 0 1.4rem;
}

.footer-box h3 {
    margin-top: 0;
    color: #ffd98b;
}

.footer-brand {
    display: inline-block;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.footer-links {
    display: grid;
    gap: .45rem;
}

.footer-links a {
    color: #fff4df;
}

.footer-links a:hover {
    color: #ffd98b;
}

.footer-copy {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 244, 223, 0.82);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(224, 165, 56, 0.24);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 14px 28px rgba(224, 165, 56, 0.34);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-price,
    .reveal {
        animation: none !important;
        transition: none !important;
    }
}

@media (min-width: 640px) {
    .stats,
    .about-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 860px) {
    .nav-toggle {
        display: none;
    }

    .footer-box {
        grid-template-columns: 1.2fr .8fr 1fr;
        align-items: start;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: .25rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: 0;
    }

    .hero-grid {
        grid-template-columns: 1.15fr .85fr;
    }

    .about-grid {
        grid-template-columns: 1.1fr .9fr;
    }

    .contact-grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1140px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
