:root {
    --decor-orange: #f76903;
    --decor-orange-dark: #d94f00;
    --decor-red: #c70435;
    --decor-yellow: #ffd21a;
    --decor-ink: #17202a;
    --decor-muted: #637083;
    --decor-line: #eceff3;
    --decor-soft: #fff6ed;
    --decor-white: #ffffff;
    --decor-radius: 16px;
    --decor-container: 1120px;
    --decor-shadow: 0 14px 38px rgba(23, 32, 42, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--decor-ink);
    background: #fff;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--decor-red); }

.decor-container {
    width: min(var(--decor-container), calc(100% - 32px));
    margin-inline: auto;
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    clip: auto;
    height: auto;
    width: auto;
    left: 16px;
    top: 16px;
    z-index: 9999;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--decor-orange);
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.site-logo img,
.custom-logo-link img {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 64px;
    object-fit: contain;
}
.main-navigation { margin-left: auto; }
.primary-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.primary-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -.01em;
    opacity: .96;
}
.primary-menu a:hover { color: var(--decor-yellow); }
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--decor-yellow);
    color: var(--decor-ink);
    font-size: 14px;
    font-weight: 850;
}
.header-cta:hover { color: var(--decor-red); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: rgba(255,255,255,.14);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}
.menu-toggle span:not(.screen-reader-text) {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 99px;
}

.hero {
    background: var(--decor-orange);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 8px solid var(--decor-yellow);
}
.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    right: -160px;
    top: -150px;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    align-items: center;
    padding: 72px 0 76px;
}
.hero-kicker,
.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 900;
    font-size: 12px;
    color: var(--decor-red);
}
.hero-kicker { color: var(--decor-yellow); }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.045em; margin: 0 0 16px; }
.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    max-width: 780px;
}
.hero-subtitle {
    margin: 0 0 28px;
    max-width: 640px;
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255,255,255,.90);
}
.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--decor-red); }
.btn-light:hover { color: var(--decor-orange-dark); }
.btn-ghost { border-color: rgba(255,255,255,.38); color: #fff; }
.btn-ghost:hover { color: var(--decor-yellow); border-color: var(--decor-yellow); }
.btn-primary { background: var(--decor-red); color: #fff; }
.btn-primary:hover { color: #fff; background: #a9022c; }
.btn-outline { background: #fff; border-color: var(--decor-line); color: var(--decor-ink); }
.btn-outline:hover { color: var(--decor-red); border-color: rgba(199, 4, 53, .25); }
.text-link {
    display: inline-flex;
    font-weight: 900;
    color: var(--decor-red);
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.hero-tags span {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 750;
}
.hero-brand-card {
    justify-self: end;
    width: min(520px, 100%);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.hero-brand-card img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    box-shadow: none;
    filter: none;
}

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--decor-line);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}
.trust-grid > div {
    padding: 22px 18px;
    border-left: 1px solid var(--decor-line);
}
.trust-grid > div:last-child { border-right: 1px solid var(--decor-line); }
.trust-grid strong { display: block; font-size: 15px; }
.trust-grid span { display: block; font-size: 13px; color: var(--decor-muted); }

.section { padding: 72px 0; }
.section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}
.section-heading h2,
.decor-page-intro h1,
.decor-page-intro h2,
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); }
.section-heading p { color: var(--decor-muted); font-size: 18px; margin: 0; }
.decor-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.decor-content-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.decor-card {
    background: #fff;
    border: 1px solid var(--decor-line);
    border-radius: var(--decor-radius);
    padding: 26px;
    box-shadow: 0 1px 0 rgba(23,32,42,.02);
}
.decor-card h2,
.decor-card h3 { font-size: 24px; margin-bottom: 10px; }
.decor-card p { color: var(--decor-muted); margin: 0 0 14px; }
.decor-card p:last-child { margin-bottom: 0; }
.product-card span,
.offer-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--decor-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.local-section { background: var(--decor-soft); }
.local-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.local-card {
    padding: clamp(28px, 5vw, 46px);
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(247,105,3,.14);
    box-shadow: var(--decor-shadow);
}
.local-card h2 { font-size: clamp(32px, 4vw, 48px); }
.local-card p { color: var(--decor-muted); font-size: 17px; }

.split-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: center;
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid var(--decor-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--decor-shadow);
}
.split-panel h2 { font-size: clamp(32px, 4vw, 50px); }
.split-panel p { color: var(--decor-muted); font-size: 18px; }
.steps {
    display: grid;
    gap: 14px;
}
.steps div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: var(--decor-soft);
}
.steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--decor-red);
    color: #fff;
}
.steps span { font-weight: 760; }

.offers-band {
    background: var(--decor-red);
    color: #fff;
}
.offers-band .eyebrow { color: var(--decor-yellow); }
.offers-content {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}
.offers-content h2 { font-size: clamp(30px, 4vw, 48px); max-width: 760px; }
.offers-content p { max-width: 720px; color: rgba(255,255,255,.86); }

.faq-list { display: grid; gap: 12px; }
details summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 18px;
}
details p { margin-top: 12px !important; }

.page-hero {
    background: var(--decor-orange);
    color: #fff;
    padding: 62px 0;
    border-bottom: 8px solid var(--decor-yellow);
}
.page-hero .eyebrow { color: var(--decor-yellow); }
.page-hero p { color: rgba(255,255,255,.86); }
.page-content-wrap { padding-top: 48px; }
.decor-entry { max-width: 980px; margin-inline: auto; }
.decor-entry h1,
.decor-entry h2,
.decor-entry h3 { color: var(--decor-ink); }
.decor-entry a { color: var(--decor-red); font-weight: 850; }

/* Mantém o texto visível nos botões inseridos dentro do conteúdo das páginas. */
.decor-entry a.btn,
.decor-entry a.btn:visited {
    text-decoration: none;
}
.decor-entry a.btn-primary,
.decor-entry a.btn-primary:visited,
.decor-entry a.btn-primary:hover,
.decor-page-intro a.btn-primary,
.decor-page-intro a.btn-primary:visited,
.decor-page-intro a.btn-primary:hover {
    color: #fff;
}
.decor-entry a.btn-outline,
.decor-entry a.btn-outline:visited {
    color: var(--decor-ink);
}
.decor-entry a.btn-outline:hover {
    color: var(--decor-red);
}

.decor-page-intro { margin-bottom: 22px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
    padding-left: 26px;
    position: relative;
    margin: 10px 0;
    color: var(--decor-muted);
}
.check-list li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: .7em;
    border-radius: 50%;
    background: var(--decor-yellow);
    box-shadow: 0 0 0 4px rgba(255,210,26,.22);
}
.decor-seo-text { margin-top: 18px; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.post-card h2 { font-size: 22px; }
.post-thumb img, .featured-image img { border-radius: 16px; display: block; margin-bottom: 16px; }
.pagination-wrap { grid-column: 1 / -1; }

.site-footer {
    background: #141922;
    color: #fff;
    padding: 56px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 34px;
}
.footer-logo img { width: 220px; max-height: 90px; object-fit: contain; }
.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255,255,255,.76); }
.site-footer h2 { font-size: 16px; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--decor-yellow); }
.footer-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-actions a {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
    font-size: 13px;
}
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.floating-whatsapp:hover { color: #fff; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border: 1px solid var(--decor-line);
    border-radius: var(--decor-radius);
    padding: 16px;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: 999px;
    background: var(--decor-red);
    color: #fff;
    font-weight: 850;
}

@media (max-width: 980px) {
    .nav-wrap { min-height: 72px; }
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .main-navigation {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        padding: 16px;
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--decor-shadow);
    }
    body.menu-open .main-navigation { display: block; }
    .primary-menu { align-items: stretch; flex-direction: column; gap: 4px; }
    .primary-menu a { display: block; color: var(--decor-ink); padding: 10px 12px; border-radius: 10px; }
    .primary-menu a:hover { background: var(--decor-soft); color: var(--decor-red); }
    .hero-grid,
    .local-grid,
    .split-panel,
    .footer-grid { grid-template-columns: 1fr; }
    .hero-brand-card { justify-self: start; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .decor-content-grid.three,
    .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .offers-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .site-logo img,
    .custom-logo-link img { max-width: 172px; max-height: 56px; }
    .hero-grid { padding: 52px 0 56px; }
    .hero-brand-card { padding: 0; border-radius: 0; }
    .trust-grid,
    .decor-content-grid,
    .decor-content-grid.three,
    .post-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .decor-card { padding: 22px; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { left: 16px; right: 16px; }
}
