:root {
    --navy: #1f2a63;
    --navy-dark: #141b45;
    --gold: #b8923f;
    --gold-light: #d4b06a;
    --cream: #f7f4ee;
    --text-dark: #24262d;
    --text-muted: #6b6f7a;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; }

h1, h2, h3 {
    font-family: "Playfair Display", Georgia, serif;
    margin: 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #ece7db;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
}

.header-logo {
    height: 73px;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 22px;
    font-weight: 600;
    font-size: 15px;
}

.site-nav a {
    color: var(--navy);
    position: relative;
}

.site-nav a:hover {
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #241c08;
}

.btn-primary:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.btn-nav {
    padding: 10px 22px;
    font-size: 13px;
    white-space: nowrap;
}

.header-actions-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: clamp(16px, 2.5vw, 28px);
    border-left: 1px solid #e4dfd0;
}

.btn-outline-nav {
    padding: 9px 20px;
    font-size: 13px;
    white-space: nowrap;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline-nav:hover {
    background: var(--navy);
    color: var(--white);
}

/* Hero */

.hero {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(212, 176, 106, 0.18), transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(212, 176, 106, 0.10), transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    padding: 100px 24px 90px;
    max-width: 760px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
    margin: 0 0 18px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-lead {
    color: #d8dcef;
    font-size: 17px;
    max-width: 620px;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Strip */

.strip {
    background: var(--cream);
    border-bottom: 1px solid #ece7db;
}

.strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
}

.strip-item strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--navy);
}

.strip-item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Sections */

.section {
    padding: 90px 0;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 10px;
}

.services h2 {
    font-size: 32px;
    color: var(--navy);
    max-width: 620px;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid #ece7db;
    border-radius: 16px;
    padding: 32px 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(31, 42, 99, 0.08);
    border-color: var(--gold-light);
}

.service-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}

/* Loja - destaques na home */

.store-teaser { background: var(--cream); }
.store-teaser h2 {
    font-size: 32px;
    color: var(--navy);
    max-width: 620px;
    margin-bottom: 40px;
}
.store-teaser-cta {
    text-align: center;
    margin-top: 40px;
}

.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.store-card {
    background: var(--white);
    border: 1px solid #ece7db;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .15s, box-shadow .15s;
}
.store-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(31,42,99,0.1); }
.store-card-img-wrap { position: relative; width: 100%; aspect-ratio: 1 / 1; background: var(--cream); }
.store-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.store-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.store-card-body { padding: 14px 16px; }
.store-card-name { font-family: "Playfair Display", Georgia, serif; color: var(--navy); font-size: 15px; margin: 0 0 4px; }
.store-card-brand { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; }
.store-card-price { font-weight: 700; color: var(--gold); font-size: 16px; }
.store-card-soldout {
    position: absolute; top: 10px; right: 10px;
    background: #b23a3a; color: #fff; font-size: 10.5px; font-weight: 700;
    padding: 3px 9px; border-radius: 999px;
}

.header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-size: 18px;
    text-decoration: none;
}
.header-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: 1px 6px;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.4;
}

.store-card-link { display: flex; flex-direction: column; color: inherit; text-decoration: none; flex: 1; }
.store-card-actions { display: flex; gap: 8px; padding: 0 16px 16px; }
.store-card-add-form { flex: 1; margin: 0; }
.store-card-btn {
    display: block;
    width: 100%;
    flex: 1;
    text-align: center;
    padding: 9px 8px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}
.store-card-btn-add { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #241c08; }
.store-card-btn-add:hover { filter: brightness(1.06); }
.store-card-btn-details { flex: 1; border: 2px solid var(--navy); color: var(--navy); background: transparent; padding: 7px 8px; }
.store-card-btn-disabled { flex: 1; background: #eee; color: #9a9ea6; cursor: default; }

/* Pricing */

.pricing {
    background: var(--white);
}

.pricing h2 {
    font-size: 32px;
    color: var(--navy);
}

.pricing-lead {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 16px;
    margin: 16px 0 44px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.price-card {
    background: var(--cream);
    border: 1px solid #ece7db;
    border-radius: 18px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
}

.price-card-featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 24px 48px rgba(20, 27, 69, 0.22);
    transform: translateY(-6px);
}

.price-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.price-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.price-card-featured .price-num {
    background: var(--gold-light);
    color: var(--navy-dark);
}

.price-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
}

.price-card-featured h3 {
    color: var(--white);
}

.price-sub {
    font-size: 12.5px;
    color: var(--text-muted);
}

.price-card-featured .price-sub {
    color: #b9bfe0;
}

.price-group {
    margin-bottom: 18px;
}

.price-group-title {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.price-card-featured .price-group-title {
    color: var(--gold-light);
}

.price-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13.5px;
    border-bottom: 1px dashed rgba(31, 42, 99, 0.15);
    padding-bottom: 6px;
}

.price-card-featured .price-list li {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.price-list li span {
    color: var(--text-muted);
}

.price-card-featured .price-list li span {
    color: #c7cbe0;
}

.price-list li strong {
    color: var(--navy);
    white-space: nowrap;
}

.price-card-featured .price-list li strong {
    color: var(--white);
}

.price-highlight {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 14px;
}

.price-card-featured .price-highlight {
    background: var(--gold-light);
    color: var(--navy-dark);
}

.pricing-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    background: var(--navy-dark);
    border-radius: 16px;
    padding: 24px;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e4e6f2;
    font-size: 13px;
    font-weight: 600;
}

.pricing-badge span {
    font-size: 18px;
}

.pricing-footnote {
    margin-top: 22px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.pricing-footnote a {
    color: var(--gold);
    font-weight: 700;
}

/* About */

.about {
    background: var(--cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(20, 27, 69, 0.18);
}

.about-content h2 {
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-signature {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--navy);
    font-size: 18px;
    margin-top: 24px;
}

/* Contact */

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

.contact h2 {
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 14px;
}

.contact-lead {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    font-size: 15px;
    color: var(--text-dark);
}

.contact-label {
    display: block;
    font-weight: 700;
    color: var(--gold);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-list a:hover {
    color: var(--gold);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(31, 42, 99, 0.12);
    min-height: 320px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

/* Footer */

.site-footer {
    background: var(--navy-dark);
    color: #c7cbe0;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1) opacity(0.85);
}

.footer-text {
    font-size: 13.5px;
    flex: 1;
    min-width: 220px;
}

.footer-copy {
    font-size: 12px;
    color: #8b90ab;
    width: 100%;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

/* Responsive */

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card-featured {
        transform: none;
    }
    .pricing-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-nav-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 18px;
        background: var(--white);
        border-bottom: 1px solid #ece7db;
        box-shadow: 0 16px 30px rgba(20, 27, 69, 0.12);
        padding: 20px 24px 26px;
    }
    .mobile-nav-panel.open {
        display: flex;
    }
    .mobile-nav-panel .site-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .mobile-nav-panel .site-nav a {
        padding: 10px 4px;
        border-bottom: 1px solid #f1eee3;
    }
    .mobile-nav-panel .header-actions-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 6px;
        padding-left: 0;
        padding-top: 14px;
        border-left: none;
        border-top: 1px solid #f1eee3;
    }
    .mobile-nav-panel .btn {
        text-align: center;
        width: 100%;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-inner {
        padding: 64px 20px 56px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 56px 0;
    }
    .pricing-badges {
        grid-template-columns: 1fr;
    }
    .price-list li {
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .mobile-nav-panel {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        gap: clamp(20px, 3vw, 40px);
        margin-left: 24px;
    }
}
