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

:root {
    --primary: #795744;
    --primary-dark: #5f4333;
    --primary-ink: #342216;
    --accent: #d7a63a;
    --background: #faf6f1;
    --surface: #ffffff;
    --surface-soft: #f3e6db;
    --surface-muted: #f6efe8;
    --border: #e6d8ca;
    --text: #352317;
    --text-soft: #6a5647;
    --success: #25d366;
    --shadow: 0 20px 50px rgba(63, 38, 18, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.625;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    max-width: 860px;
}

.center {
    text-align: center;
}

.section {
    padding: 96px 0;
}

.section-soft {
    background: rgba(243, 230, 219, 0.45);
}

.section-dark {
    background: var(--primary);
    color: #fdf8f2;
}

.section-muted {
    background: rgba(243, 230, 219, 0.35);
}

.section-head {
    margin-bottom: 56px;
}

.section-head h2,
.legal-card h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}

.section-head p,
.lead,
.contact-lead {
    color: var(--text-soft);
    font-size: 1.125rem;
}

.section-line {
    width: 96px;
    height: 4px;
    background: var(--accent);
    border-radius: 999px;
    margin: 0 auto 28px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 216, 202, 0.7);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
    box-shadow: 0 14px 36px rgba(53, 35, 23, 0.08);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* .header-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
} */

.brand {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-ink);
}

.site-nav {
    margin-left: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-soft);
}

.site-nav a:hover,
.footer-grid a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--primary-ink);
    font-size: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: var(--success);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bc5b;
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    min-height: 56px;
    padding: 0 32px;
    font-size: 1.05rem;
}

.header-cta,
.footer-cta {
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 88px;
    color: #fff;
    overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-highlight {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(39, 13, 8, 0.35) 0%, rgba(46, 14, 8, 0.52) 48%, rgba(33, 10, 6, 0.68) 100%);
}

.hero-highlight {
    inset: auto 50% 10% auto;
    width: 42%;
    height: 34%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 133, 0.22) 0%, rgba(255, 214, 133, 0) 70%);
    filter: blur(16px);
    transform: translateX(50%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-copy {
    max-width: 820px;
    padding: 56px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(240, 182, 61, 0.92);
    border-radius: 999px;
    background: rgba(129, 76, 17, 0.4);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.86rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 18px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: -18px 0 40px;
}

.category-btn {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(121, 87, 68, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--text-soft);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(121, 87, 68, 0.45);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.product-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.product-card,
.testimonial-card,
.legal-card {
    background: var(--surface);
    border: 1px solid rgba(230, 216, 202, 0.75);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.product-card.hidden {
    display: none;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-load-more {
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-load-more[hidden] {
    display: none;
}

.btn-load-more:hover {
    background: var(--primary-dark);
}

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

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(63, 38, 18, 0.12);
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface-soft);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-body {
    padding: 24px;
}

.product-body h3 {
    font-size: 1.18rem;
    line-height: 1.35;
    min-height: 3.2em;
    margin-bottom: 10px;
}

.product-body p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(243, 230, 219, 0.55);
    color: var(--text-soft);
    font-size: 0.88rem;
}

.feature-card {
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 248, 241, 0.8);
}

.testimonial-columns {
    column-count: 2;
    column-gap: 32px;
    max-width: 1040px;
    margin: 0 auto;
}

.testimonial-card {
    break-inside: avoid;
    padding: 32px;
    margin-bottom: 32px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    color: var(--text-soft);
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    background: rgba(121, 87, 68, 0.1);
    color: var(--primary);
}

.testimonial-meta strong,
.contact-item h3,
.footer-grid h3,
.legal-card h2 {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-meta span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 96px;
    align-items: stretch;
}

.contact-grid h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.contact-lead {
    margin-bottom: 40px;
}

.contact-stack {
    display: grid;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--surface-soft);
    color: var(--primary);
    flex: 0 0 auto;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: var(--success);
}

.contact-item a,
.contact-item p {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.contact-item small {
    display: inline-block;
    margin-top: 8px;
    color: var(--accent);
    font-weight: 600;
}

.whatsapp-link {
    color: var(--success);
    font-weight: 600;
}

.map-wrap {
    min-height: 400px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(230, 216, 202, 0.75);
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 60px 0 24px;
    background: #704d34;
    border-top: 8px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer-grid h3 span {
    color: var(--accent);
}

.footer-grid p,
.footer-grid li,
.footer-bottom p {
    color: #dcc9b6;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-grid p {
    margin-bottom: 12px;
}

.footer-grid ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-grid a {
    color: #dcc9b6;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-grid i {
    color: var(--accent);
    margin-right: 10px;
    width: 18px;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(230, 216, 202, 0.3);
    text-align: center;
    color: #dcc9b6;
}

.legal-page {
    background: rgba(243, 230, 219, 0.42);
}

.legal-shell {
    min-height: 100vh;
    padding-top: 136px;
}

.legal-wrap {
    max-width: 920px;
}

.legal-card {
    padding: 40px;
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(230, 216, 202, 0.7);
}

.legal-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(121, 87, 68, 0.1);
    color: var(--primary);
}

.legal-header p,
.legal-card section p {
    color: var(--text-soft);
}

.legal-card section + section {
    margin-top: 28px;
}

.legal-card h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--success);
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.35);
}

@media (max-width: 1100px) {
    .site-nav ul {
        gap: 18px;
    }

    .header-cta {
        display: none;
    }

    .brand {
        font-size: 1.2rem;
    }

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

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        margin-left: 0;
        padding: 18px;
        border: 1px solid rgba(230, 216, 202, 0.8);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero {
        min-height: auto;
        padding: 136px 0 88px;
    }

    .hero-highlight {
        width: 58%;
        bottom: 8%;
    }

    .hero-copy,
    .hero-inner,
    .section-head,
    .narrow,
    .contact-grid {
        text-align: center;
    }

    .hero-actions,
    .testimonial-meta {
        justify-content: center;
    }

    .product-grid,
    .feature-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-columns {
        column-count: 1;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }

    .hero p {
        max-width: 620px;
    }

    .map-wrap {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 72px 0;
    }

    .hero-badge {
        padding: 10px 18px;
        letter-spacing: 0.08em;
        font-size: 0.7rem;
    }

    .brand {
        max-width: 220px;
        line-height: 1.15;
    }

    .header-logo {
        width: 34px;
        height: 34px;
    }

    .hero {
        padding: 124px 0 72px;
    }

    .hero-copy {
        padding: 24px 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .category-filters {
        gap: 10px;
    }

    .category-btn {
        width: 100%;
    }

    .btn,
    .btn-lg {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .testimonial-card,
    .legal-card {
        padding: 24px;
    }

    .legal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
    }
}
