:root {
    --bg: #0f1419;
    --surface: #1a222d;
    --surface2: #232d3b;
    --text: #e8eef4;
    --muted: #8b9aab;
    --accent: #1e7fd9;
    --accent2: #0f56a8;
    --brand-blue: #1e7fd9;
    --brand-blue-deep: #0f56a8;
    --brand-orange: #f18818;
    --brand-orange-deep: #cf6500;
    --brand-green: #1fa15a;
    --brand-green-soft: rgba(31, 161, 90, 0.24);
    --danger: #f05b5b;
    --success: #3ecf8e;
    --warn: #f0c14b;
    --radius: 12px;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(30, 127, 217, 0.2), transparent),
        radial-gradient(900px 500px at 100% 0%, rgba(241, 136, 24, 0.12), transparent),
        var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a {
    color: var(--accent);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    width: min(1100px, 100% - 2rem);
    margin-inline: auto;
}

.site-header {
    background: rgba(26, 34, 45, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.header-end {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-flag {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lang-flag:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.06);
}
.lang-flag.is-active {
    box-shadow: 0 0 0 2px var(--accent);
    background: rgba(61, 156, 245, 0.2);
}
.lang-flag[data-set-lang="pt"].is-active {
    box-shadow: 0 0 0 2px var(--brand-green);
    background: var(--brand-green-soft);
}
.lang-flag[data-set-lang="es"].is-active {
    box-shadow: 0 0 0 2px var(--brand-blue);
    background: rgba(30, 127, 217, 0.24);
}
.lang-flag-emoji {
    font-size: 0.72rem;
    line-height: 1;
    pointer-events: none;
}

.logo {
    display: inline-block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    letter-spacing: -0.02em;
    transform-origin: center;
    animation: logo-gentle-float 4.6s ease-in-out infinite;
    will-change: transform;
}
.logo-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.02em;
    margin-left: 0.04em;
}
.logo-three {
    color: var(--brand-orange);
}
.logo-d {
    color: var(--brand-blue);
}
.logo:hover {
    text-decoration: none;
}

@keyframes logo-gentle-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.cart-link {
    color: var(--text);
    font-weight: 500;
}
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.mobile-cart-link {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mobile-cart-link:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.06);
}

.mobile-cart-link__icon {
    font-size: 1rem;
    line-height: 1;
}

.mobile-cart-link__badge {
    position: absolute;
    top: -0.28rem;
    right: -0.28rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.2rem;
    font-size: 0.68rem;
}

.main-content {
    padding: 2rem 0 4rem;
}

.page-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.03em;
}

.lead {
    color: var(--muted);
    margin-top: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(241, 136, 24, 0.2);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 136, 24, 0.5);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.product-card-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-card-media {
    height: 200px;
    background: linear-gradient(160deg, rgba(30, 127, 217, 0.14), rgba(241, 136, 24, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}

.product-card .card-body {
    position: relative;
    z-index: 2;
}

.product-title-link {
    color: var(--text);
}

.product-title-link:hover {
    color: #ffd3a1;
    text-decoration: none;
}

.product-card .js-add-cart {
    position: relative;
    z-index: 3;
}

/* --- product card modo destaque (home) --- */
.product-card-body-wrap {
    position: relative;
}

.product-card-hit--body {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-card--featured .card-body {
    position: relative;
    z-index: 2;
}

.product-card--featured .product-card-media {
    position: relative;
    z-index: 0;
}

.product-card-media-cover {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-media-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-media-cover--placeholder .product-card-placeholder {
    height: 100%;
}

@keyframes featured-card-vibration-cycle {
    0%,
    33%,
    100% {
        transform: translateX(0) rotate(0deg);
    }
    2% {
        transform: translateX(-1.4px) rotate(-0.22deg);
    }
    4% {
        transform: translateX(1.4px) rotate(0.22deg);
    }
    6% {
        transform: translateX(-1.2px) rotate(-0.18deg);
    }
    8% {
        transform: translateX(1.1px) rotate(0.18deg);
    }
    10% {
        transform: translateX(-0.9px) rotate(-0.14deg);
    }
    12% {
        transform: translateX(0.8px) rotate(0.14deg);
    }
    14% {
        transform: translateX(-0.6px) rotate(-0.1deg);
    }
    16% {
        transform: translateX(0.4px) rotate(0.08deg);
    }
}

.section-products .product-card--featured {
    animation: featured-card-vibration-cycle 4.8s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
}

.section-products .product-card--featured:nth-child(2n) {
    animation-delay: 0.12s;
}

.section-products .product-card--featured:nth-child(3n) {
    animation-delay: 0.24s;
}

.section-products .product-card--featured:hover {
    animation: none;
}

.product-card-mini-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card-mini-gallery__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-card-mini-gallery__viewport::-webkit-scrollbar {
    display: none;
}

.product-card-mini-gallery__track {
    display: flex;
    height: 100%;
}

.product-card-mini-gallery__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0;
    height: 100%;
    min-height: 0;
}

.product-card-mini-gallery__slide a {
    display: block;
    height: 100%;
}

.product-card-mini-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes product-card-hint-wink {
    0%,
    100% {
        opacity: 0.18;
        transform: translateY(-50%) scale(0.88);
    }
    50% {
        opacity: 0.95;
        transform: translateY(-50%) scale(1.02);
    }
}

@keyframes product-card-nav-soft {
    0%,
    100% {
        opacity: 0.45;
    }
    50% {
        opacity: 0.9;
    }
}

.product-card-mini-gallery__hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: product-card-hint-wink 1.7s ease-in-out infinite;
}

.product-card-mini-gallery__hint--prev {
    left: 0.2rem;
    animation-delay: 0.1s;
}

.product-card-mini-gallery__hint--next {
    right: 0.2rem;
    animation-delay: 0.35s;
}

.product-card-mini-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 1.85rem;
    height: 1.85rem;
    border: 0;
    border-radius: 50%;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    background: rgba(8, 12, 18, 0.45);
    backdrop-filter: blur(4px);
    animation: product-card-nav-soft 2.1s ease-in-out infinite;
    transition: background 0.15s ease, transform 0.15s ease;
}

.product-card-mini-gallery__nav:hover {
    background: rgba(30, 127, 217, 0.75);
    animation: none;
    opacity: 1;
}

.product-card-mini-gallery__nav--prev {
    left: 0.35rem;
}

.product-card-mini-gallery__nav--next {
    right: 0.35rem;
}

@keyframes product-card-badge-pulse {
    0%,
    100% {
        opacity: 0.88;
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 55, 130, 0.35);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), 0 0 14px rgba(255, 55, 130, 0.45);
    }
}

.product-card-tiktok-badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem 0.45rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(40, 10, 30, 0.75));
    border: 1px solid rgba(255, 55, 130, 0.55);
    animation: product-card-badge-pulse 1.9s ease-in-out infinite;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.product-card-tiktok-badge:hover {
    text-decoration: none;
    color: #fff;
    border-color: rgba(0, 242, 234, 0.55);
    transform: scale(1.06);
    animation: none;
}

.product-card-tiktok-badge__icon {
    display: grid;
    place-items: center;
    color: #ff5a9a;
}

.product-card .price {
    color: #ffd3a1;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.card-body {
    padding: 1.25rem 1.35rem;
}

.product-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 0.85rem;
}

.price {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.75rem 0 0.25rem;
}
.price .currency {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
    color: #fff;
    box-shadow: 0 8px 24px rgba(30, 127, 217, 0.35);
}
.btn-primary:hover {
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(30, 127, 217, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.alert {
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--surface2);
    margin-bottom: 1rem;
}
.alert-error {
    border-color: rgba(240, 91, 91, 0.45);
    background: rgba(240, 91, 91, 0.1);
}
.alert-success {
    border-color: rgba(62, 207, 142, 0.45);
    background: rgba(62, 207, 142, 0.1);
}
.alert-warn {
    border-color: rgba(240, 193, 75, 0.45);
    background: rgba(240, 193, 75, 0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.table th,
.table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.table th {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cart-table {
    table-layout: fixed;
}

.cart-table td,
.cart-table th {
    overflow-wrap: anywhere;
}

.input-qty {
    width: 4.5rem;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--surface2);
    color: var(--text);
}

.cart-summary {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.total {
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .cart-table th,
    .cart-table td {
        padding: 0.6rem 0.45rem;
        font-size: 0.82rem;
    }

    .cart-table .input-qty {
        width: 3.35rem;
        min-width: 0;
    }

    .cart-table .btn {
        white-space: normal;
        line-height: 1.2;
        padding: 0.45rem 0.55rem;
    }
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: start;
}
@media (max-width: 820px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.stack label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 500;
    font-size: 0.9rem;
}
.stack input,
.stack textarea {
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--surface2);
    color: var(--text);
    font: inherit;
}

.summary-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

@keyframes footer-social-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes footer-social-shimmer {
    0%,
    100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.1) saturate(1.12);
    }
}

@keyframes footer-glow-instagram {
    0%,
    100% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.38), 0 0 14px rgba(221, 42, 123, 0.32), 0 0 22px rgba(245, 133, 41, 0.18);
    }
    50% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.42), 0 0 28px rgba(221, 42, 123, 0.52), 0 0 40px rgba(129, 52, 175, 0.28),
            0 0 52px rgba(245, 133, 41, 0.12);
    }
}

@keyframes footer-glow-facebook {
    0%,
    100% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.38), 0 0 14px rgba(24, 119, 242, 0.38);
    }
    50% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.42), 0 0 30px rgba(24, 119, 242, 0.58), 0 0 44px rgba(100, 170, 255, 0.22);
    }
}

@keyframes footer-glow-tiktok {
    0%,
    100% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55), 0 0 14px rgba(255, 55, 130, 0.28), 0 0 18px rgba(0, 242, 234, 0.14);
    }
    50% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.58), 0 0 26px rgba(255, 55, 130, 0.42), 0 0 34px rgba(0, 242, 234, 0.28);
    }
}

.footer-social-link {
    position: relative;
    display: grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.28s ease;
    will-change: transform, box-shadow, filter;
}

.footer-social-link svg {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social-link:hover {
    text-decoration: none;
    transform: translateY(-6px) scale(1.1);
    filter: saturate(1.2) brightness(1.05);
}

.footer-social-link:hover svg {
    transform: scale(1.14) rotate(-8deg);
}

.footer-social-link:active {
    transform: translateY(-2px) scale(1.04);
}

.footer-social-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.footer-social-link--instagram {
    background: linear-gradient(145deg, #f58529, #dd2a7b, #8134af);
    animation: footer-social-float 2.6s ease-in-out infinite, footer-glow-instagram 2.5s ease-in-out infinite,
        footer-social-shimmer 3.4s ease-in-out infinite;
}

.footer-social-link--instagram:hover {
    animation-play-state: paused, paused, paused;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 36px rgba(221, 42, 123, 0.6), 0 0 56px rgba(129, 52, 175, 0.3);
}

.footer-social-link--facebook {
    background: #1877f2;
    animation: footer-social-float 2.6s ease-in-out 0.35s infinite, footer-glow-facebook 2.5s ease-in-out 0.25s infinite,
        footer-social-shimmer 3.4s ease-in-out 0.2s infinite;
}

.footer-social-link--facebook:hover {
    animation-play-state: paused, paused, paused;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 40px rgba(24, 119, 242, 0.72);
}

.footer-social-link--tiktok {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.14);
    animation: footer-social-float 2.6s ease-in-out 0.7s infinite, footer-glow-tiktok 2.5s ease-in-out 0.5s infinite,
        footer-social-shimmer 3.4s ease-in-out 0.45s infinite;
}

.footer-social-link--tiktok:hover {
    animation-play-state: paused, paused, paused;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6), 0 0 32px rgba(255, 55, 130, 0.48), 0 0 40px rgba(0, 242, 234, 0.32);
}

@media (prefers-reduced-motion: reduce) {
    .footer-social-link {
        animation: none;
        will-change: auto;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .footer-social-link--instagram {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 18px rgba(221, 42, 123, 0.35);
    }

    .footer-social-link--facebook {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 16px rgba(24, 119, 242, 0.4);
    }

    .footer-social-link--tiktok {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 55, 130, 0.25);
    }

    .footer-social-link:hover {
        transform: translateY(-2px) scale(1.03);
        filter: none;
    }

    .footer-social-link:hover svg {
        transform: none;
    }
}

.footer-copy {
    margin: 0;
    max-width: 36rem;
    line-height: 1.45;
}

/* --- layout / acessibilidade --- */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    z-index: 100;
    font-weight: 600;
}
.skip-link:focus {
    left: 0.5rem;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-main {
    padding: 0;
}

.main-content {
    padding: 2rem 0 4rem;
}

.hp {
    position: absolute;
    left: -3000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* --- navegação mobile --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--surface2);
    cursor: pointer;
}
.nav-toggle-bar {
    display: block;
    height: 2px;
    width: 1.25rem;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .mobile-cart-link {
        display: inline-flex;
    }

    .nav-toggle {
        display: inline-flex;
    }
    .nav {
        position: absolute;
        right: 0;
        top: calc(100% + 0.5rem);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-width: 220px;
        padding: 0.5rem;
        border-radius: var(--radius);
        background: rgba(26, 34, 45, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .header-inner {
        position: relative;
    }
    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav a {
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
        color: var(--text);
    }
    .nav a:hover {
        background: rgba(255, 255, 255, 0.06);
        text-decoration: none;
    }

    .nav .cart-link {
        display: none;
    }
}

/* --- hero --- */
.hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video,
.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-fallback {
    background:
        linear-gradient(135deg, rgba(61, 156, 245, 0.35), rgba(124, 92, 255, 0.25)),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08), transparent 45%),
        var(--surface);
    animation: hero-drift 14s ease-in-out infinite alternate;
}

@keyframes hero-drift {
    from {
        filter: saturate(1) hue-rotate(0deg);
    }
    to {
        filter: saturate(1.15) hue-rotate(12deg);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.1) 0%, rgba(8, 12, 18, 0.75) 55%, rgba(8, 12, 18, 0.92) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 6vw, 4rem) 0 clamp(2.5rem, 8vw, 4.5rem);
}

.hero-layout {
    display: block;
}

.hero-logo-block {
    display: flex;
    align-items: flex-end;
}

.hero-copy {
    max-width: 44rem;
    animation: hero-copy-slide-in-right 1.1s cubic-bezier(0.22, 0.82, 0.36, 1) both;
}

@keyframes hero-logo-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-copy-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-logo {
    display: block;
    width: clamp(220px, 42vw, 460px);
    max-width: 82%;
    height: auto;
    margin: 0 0 0.95rem;
    filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.45));
    animation: hero-logo-slide-in-left 1.1s cubic-bezier(0.22, 0.82, 0.36, 1) both;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(1.35rem, 3.2vw, 2.15rem);
    font-weight: 800;
    color: var(--brand-orange);
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.98),
        0 0 14px rgba(255, 255, 255, 0.52),
        0 8px 28px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(241, 136, 24, 0.28);
    margin: 0 0 0.55rem;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.22em;
}

.hero-title-word {
    display: inline-block;
    color: #12161d;
    -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.92);
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.95),
        0 4px 18px rgba(255, 255, 255, 0.18),
        0 8px 30px rgba(0, 0, 0, 0.34);
}

.hero-title-mark {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

.hero-title-three {
    color: var(--brand-orange);
    text-shadow: 0 5px 16px rgba(241, 136, 24, 0.45);
}

.hero-title-d {
    color: var(--brand-blue);
    text-shadow: 0 5px 16px rgba(30, 127, 217, 0.45);
}

.hero-slogan {
    max-width: 36rem;
    margin: 0.75rem 0 0;
    font-size: clamp(1.06rem, 2.55vw, 1.3rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    align-items: center;
}

.hero-actions .btn {
    font-size: 1rem;
    padding: 0.72rem 1.2rem;
}

@media (min-width: 980px) {
    .hero-layout {
        display: grid;
        grid-template-columns: 40% 60%;
        align-items: end;
        gap: clamp(1.2rem, 3.6vw, 2.4rem);
    }

    .hero-copy {
        margin-left: clamp(1.2rem, 3vw, 2.6rem);
    }

    .hero-logo {
        width: min(100%, 480px);
        max-width: 100%;
        margin: 0;
    }
}

@keyframes hero-cta-primary-idle {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 rgba(30, 127, 217, 0);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4), 0 0 32px rgba(30, 127, 217, 0.42);
    }
}

@keyframes hero-cta-contact-idle {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 28px rgba(20, 115, 66, 0.4), 0 0 0 rgba(37, 211, 102, 0);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(20, 115, 66, 0.48), 0 0 28px rgba(37, 211, 102, 0.35);
    }
}

@keyframes hero-scroll-chev-bob {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.95;
    }
}

@keyframes hero-scroll-chev-fade {
    0%,
    100% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.75;
    }
}

.hero .hero-cta-primary {
    animation: hero-cta-primary-idle 2.8s ease-in-out infinite;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease,
        filter 0.28s ease,
        background 0.22s ease,
        border-color 0.22s ease;
    will-change: transform, box-shadow;
}

.hero .hero-cta-primary:hover {
    animation: none;
    transform: translateY(-6px) scale(1.05);
    filter: brightness(1.08) saturate(1.1);
    background: linear-gradient(135deg, #2f9bff, #1a66cc);
    box-shadow: 0 20px 48px rgba(30, 127, 217, 0.58), 0 0 40px rgba(100, 185, 255, 0.28);
}

.hero .hero-cta-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-ghost {
    background: linear-gradient(135deg, var(--brand-green), #17824b);
    border-color: rgba(31, 161, 90, 0.92);
    color: #fff;
    box-shadow: 0 10px 28px rgba(20, 115, 66, 0.4);
}

.hero-ghost.hero-cta-contact {
    animation: hero-cta-contact-idle 2.8s ease-in-out 0.35s infinite;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease,
        filter 0.28s ease,
        background 0.22s ease,
        border-color 0.22s ease;
    will-change: transform, box-shadow;
}

.hero-ghost.hero-cta-contact:hover {
    animation: none;
    transform: translateY(-6px) scale(1.05);
    filter: brightness(1.08) saturate(1.08);
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: rgba(37, 211, 102, 0.95);
    box-shadow: 0 20px 46px rgba(18, 140, 126, 0.55), 0 0 36px rgba(37, 211, 102, 0.32);
}

.hero-ghost.hero-cta-contact:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.5rem, 4vw, 2.75rem);
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.hero-scroll-hint:hover {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.hero-scroll-hint:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 6px;
    border-radius: 12px;
}

.hero-scroll-hint__chevs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: hero-scroll-chev-bob 1.85s ease-in-out infinite;
}

.hero-scroll-hint__chev {
    display: block;
    margin-top: -5px;
}

.hero-scroll-hint__chev:first-child {
    margin-top: 0;
}

.hero-scroll-hint__chev--2 {
    animation: hero-scroll-chev-fade 1.85s ease-in-out infinite;
    animation-delay: 0.15s;
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-logo {
        animation: none;
    }

    .hero-copy {
        animation: none;
    }

    .logo {
        animation: none;
        will-change: auto;
    }

    .section-products .product-card--featured {
        animation: none;
        will-change: auto;
    }

    .section-services.services-cascade-ready .services-cascade-item {
        opacity: 1;
        transform: none;
        transition: none;
        transition-delay: 0ms;
        will-change: auto;
    }

    .hero .hero-cta-primary,
    .hero-ghost.hero-cta-contact {
        animation: none;
        will-change: auto;
    }

    .hero-scroll-hint__chevs,
    .hero-scroll-hint__chev--2 {
        animation: none;
        opacity: 0.65;
    }

    .section-cta__btn {
        animation: none;
    }

    .contact-form .contact-submit-btn {
        animation: none;
    }

    .product-gallery__viewport {
        scroll-behavior: auto;
    }

    .product-card-tiktok-badge,
    .product-card-mini-gallery__hint,
    .product-card-mini-gallery__nav {
        animation: none;
    }

    .product-card-mini-gallery__hint {
        opacity: 0.55;
    }

    .product-card-mini-gallery__nav {
        opacity: 0.75;
    }

    .product-card-mini-gallery__viewport {
        scroll-behavior: auto;
    }
}

/* --- seções --- */
.section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-products {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.section-products .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.35rem;
}

.section-products .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-orange), rgba(241, 136, 24, 0.15));
}

.section-social-highlights {
    background: linear-gradient(180deg, rgba(20, 25, 35, 0.7) 0%, rgba(13, 18, 27, 0.55) 100%);
}

.social-highlights-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.social-highlights-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: social-highlights-scroll 44s linear infinite;
}

.social-highlight-card {
    display: block;
    flex: 0 0 clamp(230px, 26vw, 330px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 136, 24, 0.35);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    text-decoration: none;
}

.social-highlights-marquee:hover .social-highlights-track,
.social-highlights-marquee:focus-within .social-highlights-track {
    animation-play-state: paused;
}

.social-highlight-thumb-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #121923;
}

.social-highlight-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-highlight-network {
    position: absolute;
    top: .55rem;
    right: .55rem;
    border-radius: 999px;
    padding: .22rem .55rem;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(2px);
}

.social-highlight-network--instagram {
    background: rgba(198, 64, 143, 0.82);
}

.social-highlight-network--tiktok {
    background: rgba(18, 18, 18, 0.82);
}

.social-highlight-body {
    padding: .8rem .85rem .92rem;
}

.social-highlight-body h3 {
    margin: 0;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
}

.social-highlight-body p {
    margin: .42rem 0 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.45;
}

@keyframes social-highlights-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@media (max-width: 960px) {
    .social-highlights-track {
        animation-duration: 38s;
    }
}

@media (max-width: 640px) {
    .social-highlight-card {
        flex-basis: min(80vw, 280px);
    }
    .social-highlights-track {
        animation-duration: 34s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-highlights-track {
        animation: none;
    }
}

.section-head {
    margin-bottom: 1.75rem;
}

.section-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.02em;
}

.section-lead {
    margin: 0;
}

.section-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.section-cta--product {
    margin-bottom: -1.6rem;
}

@keyframes section-cta-bounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(161, 74, 6, 0.46), 0 0 18px rgba(255, 168, 59, 0.28);
    }
    35% {
        transform: translateY(-14px) scale(1.04);
        box-shadow: 0 20px 52px rgba(161, 74, 6, 0.6), 0 0 38px rgba(255, 168, 59, 0.42);
    }
    55% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 13px 36px rgba(161, 74, 6, 0.5), 0 0 24px rgba(255, 168, 59, 0.34);
    }
    70% {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 17px 42px rgba(161, 74, 6, 0.56), 0 0 30px rgba(255, 168, 59, 0.38);
    }
}

.section-cta__btn {
    background: linear-gradient(135deg, #ffb347 0%, #f18818 48%, #cf5e0b 100%);
    border: 1px solid rgba(255, 196, 123, 0.62);
    color: #fff7ea;
    text-shadow: 0 1px 1px rgba(75, 30, 4, 0.35);
    animation: section-cta-bounce 2.4s ease-in-out infinite;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease,
        filter 0.28s ease,
        background 0.22s ease,
        border-color 0.22s ease;
    will-change: transform, box-shadow;
}

.section-cta__btn:hover {
    animation: none;
    transform: translateY(-5px) scale(1.06);
    color: #fff;
    filter: brightness(1.08) saturate(1.1);
    background: linear-gradient(135deg, #ffc26b 0%, #ff981f 44%, #db5d00 100%);
    border-color: rgba(255, 213, 158, 0.85);
    box-shadow: 0 16px 42px rgba(180, 82, 5, 0.62), 0 0 34px rgba(255, 168, 59, 0.46);
}

.section-cta__btn:active {
    transform: translateY(-1px) scale(1.02);
}

.catalog-head {
    margin-bottom: 1.5rem;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(260px, 460px) 1fr;
    gap: 1.4rem;
    padding: 1rem;
}

.product-detail-media {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(30, 127, 217, 0.18), rgba(241, 136, 24, 0.1));
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-single-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.product-gallery {
    position: relative;
    width: 100%;
}

.product-gallery__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 4 / 3;
    max-height: 520px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.product-gallery__viewport::-webkit-scrollbar {
    height: 6px;
}

.product-gallery__viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 99px;
}

.product-gallery__track {
    display: flex;
    height: 100%;
}

.product-gallery__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0;
    height: 100%;
    min-height: 0;
}

.product-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 50%;
    padding: 0;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    background: rgba(8, 12, 18, 0.55);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-gallery__nav:hover {
    background: rgba(30, 127, 217, 0.65);
}

.product-gallery__nav--prev {
    left: 0.5rem;
}

.product-gallery__nav--next {
    right: 0.5rem;
}

.product-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    flex-wrap: wrap;
}

.product-gallery__dot {
    width: 0.45rem;
    height: 0.45rem;
    border: 0;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-gallery__dot.is-active {
    background: var(--brand-orange);
    transform: scale(1.25);
}

.product-detail-tiktok {
    margin-top: 0.9rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 55, 130, 0.35);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-detail-tiktok:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 55, 130, 0.15);
    border-color: rgba(0, 242, 234, 0.35);
    transform: translateY(-1px);
}

.product-detail-tiktok__icon {
    color: #ff377a;
    display: grid;
    place-items: center;
}

.product-detail-body {
    padding: 0.5rem 0.3rem;
}

.product-qty-wrap {
    margin: 1rem 0 0.35rem;
}

.product-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(241, 136, 24, 0.09);
    border: 1px solid rgba(241, 136, 24, 0.32);
    border-radius: 12px;
    padding: 0.35rem;
}

.qty-btn {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1d77cc, #155ea7);
    cursor: pointer;
}

.qty-btn:hover {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-deep));
}

.product-qty-input {
    width: 5.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(16, 21, 29, 0.9);
    color: var(--text);
    border-radius: 8px;
    padding: 0.4rem 0.5rem;
    text-align: center;
    font-weight: 700;
}

.product-detail-support {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 26rem;
}

.product-detail-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    color: rgba(220, 255, 235, 0.95);
    background: rgba(18, 140, 126, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-detail-wa-btn__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #25d366;
}

.product-detail-wa-btn:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.85);
    box-shadow: 0 6px 22px rgba(18, 140, 126, 0.28);
    transform: translateY(-1px);
}

.product-detail-wa-btn--unset {
    color: var(--muted);
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.product-detail-wa-btn--unset .product-detail-wa-btn__icon {
    color: var(--muted);
}

.product-detail-wa-btn--unset:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

@media (max-width: 860px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
    .product-detail-media {
        min-height: 240px;
    }
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

/* --- serviços + animação --- */
.services-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.services-list {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}
.services-copy {
    padding: 1.2rem 1.3rem;
    border-color: rgba(241, 136, 24, 0.22);
    background:
        radial-gradient(760px 180px at 4% -10%, rgba(241, 136, 24, 0.14), transparent),
        var(--surface);
}
.services-copy .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 0.85rem;
    padding-bottom: 0.32rem;
}
.services-copy .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-orange), rgba(241, 136, 24, 0.1));
}
.services-list li {
    margin: 0;
    color: #d9e3ee;
    border: 1px solid rgba(241, 136, 24, 0.22);
    background: linear-gradient(165deg, rgba(22, 29, 39, 0.96), rgba(24, 31, 42, 0.76));
    border-radius: 12px;
    padding: 0.68rem 0.82rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 22px rgba(0, 0, 0, 0.2);
}
.services-list li strong {
    color: #ffd3a1;
}
.services-outro {
    margin-top: 1.15rem;
    padding: 0.95rem 1rem 0.95rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(105deg, rgba(30, 127, 217, 0.12), rgba(241, 136, 24, 0.1));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.services-outro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(180deg, var(--brand-orange), var(--brand-blue));
    opacity: 0.95;
}

.services-outro__text {
    margin: 0;
    padding-left: 0.55rem;
    color: #dce6ef;
    font-size: 0.92rem;
    line-height: 1.55;
}

.section-services.services-cascade-ready .services-cascade-item {
    opacity: 0;
    transform: translateX(-42px);
    transition:
        transform 0.52s cubic-bezier(0.22, 0.78, 0.2, 1),
        opacity 0.42s ease;
    will-change: transform, opacity;
}

.section-services.is-cascade-visible .services-cascade-item {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--cascade-index, 0) * 110ms);
}

.section-services.is-cascade-leaving .services-cascade-item {
    opacity: 0;
    transform: translateX(-42px);
    transition-delay: calc(var(--cascade-index, 0) * 85ms);
}

.services-visual {
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
    border-color: rgba(241, 136, 24, 0.24);
    background: linear-gradient(170deg, rgba(30, 127, 217, 0.13), rgba(241, 136, 24, 0.17));
}

.services-video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.services-fallback {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background:
        linear-gradient(170deg, rgba(30, 127, 217, 0.18), rgba(241, 136, 24, 0.22)),
        radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.2), transparent 42%),
        #161e2a;
    background-size: cover;
    background-position: center;
}

.services-fallback-label {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    background: rgba(12, 16, 22, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffd3a1;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.services-logo-overlay {
    position: absolute;
    left: clamp(0.6rem, 1.6vw, 1rem);
    bottom: clamp(0.6rem, 1.6vw, 1rem);
    width: clamp(76px, 18%, 150px);
    height: auto;
    z-index: 2;
    opacity: 0.96;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

/* --- contato --- */
.section-contact {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-contact .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.35rem;
}

.section-contact .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 58%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-orange), rgba(30, 127, 217, 0.35));
}

.section-lead--contact {
    max-width: 40rem;
    line-height: 1.6;
    color: #b5c3d4;
}

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

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    padding: 1.35rem 1.5rem;
    border-color: rgba(241, 136, 24, 0.22);
    background:
        radial-gradient(520px 120px at 0% 0%, rgba(241, 136, 24, 0.1), transparent),
        radial-gradient(420px 100px at 100% 100%, rgba(30, 127, 217, 0.12), transparent),
        var(--surface);
    box-shadow: var(--shadow);
}

.contact-form.stack input:focus,
.contact-form.stack textarea:focus {
    outline: none;
    border-color: rgba(241, 136, 24, 0.45);
    box-shadow: 0 0 0 1px rgba(241, 136, 24, 0.12);
}

@keyframes contact-submit-pulse {
    0%,
    100% {
        box-shadow: 0 8px 22px rgba(30, 127, 217, 0.28), 0 0 0 rgba(241, 136, 24, 0);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(30, 127, 217, 0.38), 0 0 20px rgba(241, 136, 24, 0.1);
        filter: brightness(1.04) saturate(1.05);
    }
}

.contact-form .contact-submit-btn {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
    box-shadow: 0 8px 22px rgba(30, 127, 217, 0.28);
    animation: contact-submit-pulse 3.2s ease-in-out infinite;
    transition:
        transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.26s ease,
        filter 0.26s ease;
}

.contact-form .contact-submit-btn:hover {
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 12px 32px rgba(30, 127, 217, 0.42), 0 0 24px rgba(241, 136, 24, 0.16);
    filter: brightness(1.06);
}

.contact-form .contact-submit-btn:active {
    transform: scale(0.99);
}

.map-card {
    padding: 0;
    overflow: hidden;
    min-height: 320px;
    border-color: rgba(30, 127, 217, 0.22);
    box-shadow: var(--shadow);
    background: linear-gradient(165deg, rgba(30, 127, 217, 0.08), rgba(241, 136, 24, 0.06));
}

.map-embed {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

.map-placeholder {
    padding: 1.5rem;
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
}

/* --- Admin: mensagens não lidas --- */
.admin-nav-messages {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.admin-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    background: var(--danger);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 0 2px rgba(26, 34, 45, 0.95);
}
.admin-dashboard-messages {
    border: 1px solid rgba(241, 136, 24, 0.28);
    background: linear-gradient(135deg, rgba(241, 136, 24, 0.08), rgba(30, 127, 217, 0.06));
}
.admin-dashboard-messages-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.admin-dashboard-messages-title {
    margin: 0;
    font-size: 1.1rem;
}
.admin-dashboard-messages-desc {
    margin: 0.35rem 0 0;
}
.admin-dashboard-messages-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* --- WhatsApp flutuante --- */
.whatsapp-fab {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 60;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 12px 32px rgba(18, 140, 126, 0.45);
    animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-fab:hover {
    text-decoration: none;
    transform: scale(1.05);
}

@keyframes wa-pulse {
    0%,
    100% {
        box-shadow: 0 12px 32px rgba(18, 140, 126, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    55% {
        box-shadow: 0 14px 36px rgba(18, 140, 126, 0.55), 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.whatsapp-fab--unset {
    filter: saturate(0.85);
    opacity: 0.95;
}
.whatsapp-fab--unset:hover {
    opacity: 1;
}
