:root {
    --jet-orange: #f58220;
    --jet-orange-dark: #cf6510;
    --jet-graphite: #1e1e1e;
    --jet-steel: #353535;
    --jet-smoke: #5d5d5d;
    --jet-sand: #f2efe9;
    --jet-white: #ffffff;
    --shadow-hard: 0 14px 40px rgba(0, 0, 0, 0.22);
    --radius: 18px;
    --max-w: 1220px;
}

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

body {
    font-family: "Manrope", sans-serif;
    color: var(--jet-graphite);
    line-height: 1.5;
    overflow-x: hidden;
    background:
        radial-gradient(1200px 480px at 0% -10%, #ffe4c8 0%, rgba(255, 228, 200, 0) 60%),
        repeating-linear-gradient(-45deg, #f8f6f2, #f8f6f2 16px, #f4f0e9 16px, #f4f0e9 32px);
}

.container {
    width: min(var(--max-w), calc(100% - 2rem));
    margin: 0 auto;
}

/* Link de mapa (endereço clicável) */
.maps-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color .2s;
}
.maps-link address {
    display: inline-block;
    font-style: normal;
    line-height: 1.7;
    border-bottom: 1px dashed rgba(255,255,255,.4);
    transition: border-color .2s;
}
.maps-link:hover {
    color: var(--jet-orange);
}
.maps-link:hover address {
    border-bottom-color: var(--jet-orange);
}
/* Rodapé: bloco de endereço clicável */
.maps-link-footer {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color .2s;
}
.maps-link-footer p { margin: 0 0 .2rem; }
.maps-link-footer:hover { color: var(--jet-orange); }

.topbar {
    background: var(--jet-graphite);
    color: #dddddd;
    font-size: 0.85rem;
    border-bottom: 4px solid var(--jet-orange);
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.6rem 0;
}

.topbar a {
    color: var(--jet-white);
    text-decoration: none;
    font-weight: 700;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.topbar .social-link,
.local-seo-card .social-link,
.footer-grid .social-link {
    color: var(--jet-orange);
}

.topbar .social-link:hover,
.local-seo-card .social-link:hover,
.footer-grid .social-link:hover {
    color: var(--jet-orange-dark);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(30, 30, 30, 0.94);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;

}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

nav a {
    text-decoration: none;
    color: #efefef;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    transition: color 0.22s ease;
}

nav a:hover {
    color: var(--jet-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #efefef;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

h1,
h2,
h3,
h4 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.85rem 1.2rem;
    border-radius: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--jet-orange);
    color: var(--jet-white);
}

.btn-primary:hover {
    background: var(--jet-orange-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--jet-white);
    border: 2px solid rgba(255, 255, 255, 0.52);
}

.btn-ghost:hover {
    color: #111;
    background: var(--jet-white);
}

.btn-ml {
    background: #FFE600;
    color: #1a1a1a;
    border: 2px solid #e6cf00;
}

.btn-ml:hover {
    background: #ffd000;
    transform: translateY(-2px);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
}

.card-actions .btn {
    width: 100%;
    font-size: 0.85rem;
}

.categories {
    padding: 0.2rem 0 2.8rem;
}

.section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    margin-bottom: 0.9rem;
}

.section-sub {
    color: #5c5c5c;
    margin-bottom: 1.2rem;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.cat-item {
    background: linear-gradient(180deg, var(--jet-steel), #232323);
    color: var(--jet-white);
    border-radius: 12px;
    padding: 1rem;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    animation: rise-in 0.55s ease both;
}

.cat-item:nth-child(1) { animation-delay: 0.08s; }
.cat-item:nth-child(2) { animation-delay: 0.14s; }
.cat-item:nth-child(3) { animation-delay: 0.2s; }
.cat-item:nth-child(4) { animation-delay: 0.26s; }
.cat-item:nth-child(5) { animation-delay: 0.32s; }
.cat-item:nth-child(6) { animation-delay: 0.38s; }

.cat-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: var(--jet-orange);
}

.cat-item h3 {
    font-size: 1.07rem;
    margin-bottom: 0.45rem;
}

.cat-item p {
    color: #cfcfcf;
    font-size: 0.9rem;
}

.category-link {
    color: #fff;
    text-decoration: underline;
}

.catalog {
    padding: 0.4rem 0 3.1rem;
}

.carousel-section {
    margin-bottom: 1.3rem;
}

.carousel-shell {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 9px 26px rgba(0, 0, 0, 0.16);
    background: #111;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 21 / 8;
    position: relative;
}

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

.carousel-caption {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-left: 3px solid var(--jet-orange);
    border-radius: 8px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.03em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--jet-orange);
}

.carousel-btn.prev { left: 0.7rem; }
.carousel-btn.next { right: 0.7rem; }

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 0.6rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.carousel-dot.is-active {
    background: var(--jet-orange);
}

/* ── Hero Banner Carousel ──────────────────────────────────────────────────── */
#hero-banner-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;   /* evita que o carousel-track extrapole horizontalmente */
    display: block;
}
.hero-banner-carousel {
    width: 100%;        /* garante que o shell preenche o wrap fora do .container */
    border-radius: 0;
    box-shadow: none;
}
.hero-banner-carousel .carousel-track {
    width: 100%;        /* ancora o track à largura do shell */
}
.hero-banner-slide {
    min-width: 100%;
    flex-shrink: 0;
    aspect-ratio: unset;
    height: 50vh;       /* 50% da altura da tela em qualquer dispositivo */
}
.hero-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 860px) { .hero-banner-slide { height: 40vh; } }
@media (max-width: 640px) { .hero-banner-slide { height: 32vh; } }

.carousel-shell--model {
    border-radius: 0;
    box-shadow: none;
}

.carousel-shell--model .carousel-slide {
    aspect-ratio: 16 / 10;
}

.carousel-shell--model .carousel-caption {
    font-size: 0.78rem;
    left: 0.6rem;
    bottom: 0.6rem;
    padding: 0.35rem 0.55rem;
}

.carousel-shell--model .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
}

.carousel-shell--model .carousel-btn.prev {
    left: 0.45rem;
}

.carousel-shell--model .carousel-btn.next {
    right: 0.45rem;
}

.carousel-shell--model .carousel-dots {
    bottom: 0.35rem;
}

.carousel-shell--model .carousel-dot {
    width: 8px;
    height: 8px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card {
    background: var(--jet-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 9px 26px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--jet-orange);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.media {
    height: 190px;
    background:
        linear-gradient(130deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.24)),
        linear-gradient(45deg, #2f2f2f, #545454);
    display: grid;
    place-items: center;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.tagline {
    color: var(--jet-orange-dark);
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.installment-note {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.12), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(245, 130, 32, 0.18);
}

.installment-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b5a1f;
}

.installment-value {
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
    line-height: 1.1;
    color: #1f1f1f;
    font-weight: 700;
}

.installment-fineprint {
    margin-top: -0.2rem;
    font-size: 0.76rem;
    line-height: 1.45;
    color: #5e5e5e;
}

.specs {
    list-style: none;
    display: grid;
    gap: 0.36rem;
    margin-bottom: 0.5rem;
}

.specs li {
    font-size: 0.92rem;
    color: #4d4d4d;
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
    border-bottom: 1px solid #ececec;
    padding-bottom: 0.24rem;
}

.specs strong {
    color: #1f1f1f;
    font-weight: 700;
}

.cta-band {
    background:
        linear-gradient(95deg, #242424, #111),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 8px, transparent 8px, transparent 16px);
    color: var(--jet-white);
    border-radius: 16px;
    margin-bottom: 2.2rem;
    box-shadow: var(--shadow-hard);
}

.cta-band-inner {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-band h3 {
    font-size: clamp(1.3rem, 2.7vw, 1.95rem);
}

.cta-band p {
    color: #dddddd;
    max-width: 56ch;
}

.legal-section {
    padding: 3rem 0 2rem;
}

.legal-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--jet-orange);
}

.legal-card h2,
.legal-card h3 {
    margin-bottom: 0.6rem;
}

.legal-card p,
.legal-card li {
    color: #444;
    margin-bottom: 0.55rem;
}

.legal-card ul {
    padding-left: 1rem;
}

.local-seo {
    margin-bottom: 2rem;
}

.local-seo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.local-seo-card {
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--jet-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 0.95rem;
}

.local-seo-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.local-seo-card p,
.local-seo-card address {
    color: #444;
    font-style: normal;
}

/* ========================================
   ROI CALCULATOR SECTION - CRO
   ======================================== */

.roi-calculator-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    padding: 3rem 1rem;
    border-top: 1px solid rgba(245, 130, 32, 0.2);
    border-bottom: 1px solid rgba(245, 130, 32, 0.2);
}

.roi-container {
    max-width: 600px;
}

.roi-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.roi-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.roi-subtitle {
    font-size: 0.95rem;
    color: #bfbfbf;
    margin: 0;
    line-height: 1.5;
}

.roi-widget {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(245, 130, 32, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.roi-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.roi-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.roi-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.roi-label-icon {
    font-size: 1.2rem;
}

.roi-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.roi-range-slider {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        rgba(245, 130, 32, 0.3) 0%,
        rgba(0, 208, 132, 0.3) 100%
    );
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.roi-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.roi-range-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

.roi-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    border: none;
    transition: box-shadow 0.3s ease;
}

.roi-range-slider::-moz-range-thumb:hover {
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

.roi-number-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0.875rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    min-width: 70px;
    font-family: "Oswald", sans-serif;
}

.roi-number-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

.roi-currency,
.roi-unit {
    font-weight: 700;
    color: #85a52a;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.roi-hint {
    font-size: 0.8rem;
    color: #6f6f6f;
    margin-top: -0.5rem;
}

.roi-assumptions {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 0;
}

.roi-summary {
    padding: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #bfbfbf;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roi-summary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.roi-details {
    padding: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}

.roi-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.roi-details li {
    font-size: 0.85rem;
    color: #bfbfbf;
    line-height: 1.4;
}

.roi-details strong {
    color: #ffffff;
}

.roi-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .roi-results {
        grid-template-columns: repeat(3, 1fr);
    }
}

.roi-result-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 208, 132, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.roi-result-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
    transform: translateY(-4px);
}

.roi-result-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.roi-result-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roi-result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #85a52a;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.roi-result-value {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFD700;
}

.roi-result-sublabel {
    font-size: 0.75rem;
    color: #6f6f6f;
    font-weight: 500;
}

.roi-cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.roi-cta-text {
    font-size: 0.9rem;
    color: #bfbfbf;
    margin: 0;
    line-height: 1.6;
}

.roi-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00D084, #25D366);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 208, 132, 0.3);
}

.roi-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 208, 132, 0.4);
}

.roi-cta-arrow {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ========================================
   COMPLIANCE SECTION - CRO
   ======================================== */

.compliance-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(15, 15, 15, 0.98));
    padding: 3rem 1rem;
    border-top: 2px solid rgba(255, 215, 0, 0.1);
}

.compliance-container {
    max-width: 1200px;
}

.compliance-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(25, 25, 25, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.compliance-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

.compliance-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.95), rgba(35, 35, 35, 0.9));
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.15);
}

.compliance-item-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.compliance-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 208, 132, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.compliance-icon {
    width: 28px;
    height: 28px;
    fill: #FFD700;
}

.compliance-item-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* Estilos para o cartão único de conformidade (substituição consolidada) */
.compliance-item--single {
    grid-column: 1 / -1;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(28,28,28,0.95), rgba(22,22,22,0.95));
    border-radius: 16px;
    border: 1px solid rgba(255,215,0,0.12);
}

.compliance-single-content {
    color: #e6e6e6;
    font-size: 0.98rem;
    line-height: 1.6;
}

.compliance-single-content h4 {
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.02rem;
}

.compliance-bullets {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem 0;
}

.compliance-bullets li {
    position: relative;
    padding-left: 1.6rem;
    margin: 0.35rem 0;
    color: #dcdcdc;
}

.compliance-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .compliance-item--single {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}


.compliance-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 208, 132, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.compliance-cta-content h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.compliance-cta-content p {
    color: #bfbfbf;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.compliance-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00D084, #25D366);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 208, 132, 0.3);
}

.compliance-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 208, 132, 0.4);
}

.compliance-cta-icon {
    font-weight: 700;
    font-size: 1rem;
}

/* ========================================
   STICKY FOOTER - MOBILE CRO
   ======================================== */

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    gap: 0;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    .sticky-footer {
        display: flex;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
}

.sticky-cta-primary,
.sticky-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 0.75rem;
    border: none;
    border-radius: 0;
    font-weight: 800;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.sticky-cta-primary {
    background: linear-gradient(135deg, #00D084, #25D366);
    color: #ffffff;
    box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.sticky-cta-primary:active {
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    transform: scale(0.98);
}

.sticky-cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
}

.sticky-cta-primary:active::before {
    left: 100%;
}

.sticky-cta-secondary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    color: #FFD700;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
}

.sticky-cta-secondary:active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    transform: scale(0.98);
}

.sticky-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sticky-cta-icon-pulse {
    animation: pulse-icon 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    text-align: left;
}

.sticky-cta-main {
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sticky-cta-sub {
    font-weight: 500;
    font-size: 0.7rem;
    opacity: 0.85;
    text-transform: capitalize;
}

.sticky-footer-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D084, #FFD700);
    width: 0%;
    transition: width 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .sticky-footer {
        animation: none;
    }

    .sticky-cta-icon-pulse {
        animation: none;
    }

    .sticky-cta-primary,
    .sticky-cta-secondary {
        transition: none;
    }
}

@media (prefers-color-scheme: light) {
    .sticky-footer {
        background: rgba(245, 245, 245, 0.98);
        border-top-color: rgba(0, 0, 0, 0.1);
    }

    .sticky-cta-secondary {
        color: #8b7500;
        border-color: rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    }
}

.sticky-footer.hidden {
    display: none;
}

@media (min-width: 641px) {
    .sticky-footer {
        display: none;
    }
}

.local-seo-card a {
    color: #222;
    text-decoration: none;
    font-weight: 700;
}

footer {
    background: #141414;
    color: #cbcbcb;
    padding: 2rem 0 1rem;
    border-top: 5px solid var(--jet-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.footer-grid h4 {
    color: var(--jet-orange);
    margin-bottom: 0.5rem;
    font-size: 1.02rem;
}

.footer-grid a {
    color: #e5e5e5;
    text-decoration: none;
}

.footer-grid p,
.footer-grid li {
    font-size: 0.92rem;
    list-style: none;
    margin-bottom: 0.35rem;
}

.copy {
    border-top: 1px solid #2d2d2d;
    padding-top: 0.8rem;
    text-align: center;
    font-size: 0.82rem;
    color: #9c9c9c;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1050px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-grid,
    .footer-grid,
    .local-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    #primaryNav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(20, 20, 20, 0.98);
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
        transition: max-height 0.3s ease;
    }

    #primaryNav.is-open {
        max-height: 360px;
    }

    #primaryNav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
    }

    #primaryNav ul li a {
        display: block;
        padding: 0.75rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 720px) {
    .logo-image {
        height: 58px;
    }

    .header-inner {
        min-height: auto;
        padding: 0.6rem 0;
    }

    .catalog-grid,
    .cat-grid,
    .footer-grid,
    .local-seo-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .carousel-shell--model .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .roi-widget,
    .compliance-item--single,
    .compliance-cta {
        padding: 1.25rem;
    }
}

/* ── MOBILE ≤ 640 px ─────────────────────────────────────────────────────────
   Topbar oculta, calculadora numa tela só.
   Nenhuma dessas regras afeta desktop.
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {

    /* 1. TOPBAR: ocultar no mobile */
    .topbar { display: none; }

    /* 2. ROI CALCULADORA: tudo numa tela (sem scroll para ver resultado) */
    .roi-calculator-section { padding: 1rem 0 0.75rem; }

    .roi-header { margin-bottom: 0.75rem; }

    .roi-title { font-size: 1.05rem; }

    .roi-subtitle { font-size: 0.74rem; margin-top: 0.2rem; }

    .roi-widget { padding: 0.85rem; }

    .roi-form {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .roi-input-group { gap: 0.35rem; }

    .roi-label { font-size: 0.8rem; }

    .roi-number-input {
        padding: 0.45rem 0.55rem;
        font-size: 0.88rem;
        min-width: 58px;
    }

    .roi-range-slider { height: 6px; }

    .roi-hint { font-size: 0.68rem; margin-top: -0.15rem; }

    /* Suposições: ocultar no mobile para economizar espaço */
    .roi-assumptions { display: none; }

    /* Resultados: 3 colunas lado a lado */
    .roi-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.7rem;
    }

    .roi-result-card { padding: 0.55rem 0.3rem; }

    .roi-result-icon { font-size: 1.1rem; margin-bottom: 0.15rem; }

    .roi-result-value { font-size: 0.92rem; }

    .roi-result-label { font-size: 0.56rem; }

    .roi-result-sublabel { display: none; }

    /* CTA da calculadora: texto oculto, botão compacto */
    .roi-cta-section { gap: 0.4rem; }

    .roi-cta-text { display: none; }

    .roi-cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.78rem;
        width: 100%;
    }

    /* Banner hero mobile — botões menores, sem altura forçada */
    #hero-banner-wrap { overflow: hidden; }
    .hero-banner-carousel .carousel-btn { width: 26px; height: 26px; font-size: .78rem; }
    .hero-banner-carousel .carousel-dots { bottom: .25rem; }
    .hero-banner-carousel .carousel-dot { width: 6px; height: 6px; }
}
/* Grid da nova seção (1/3 e 2/3 no Desktop) */
.atendimento-avaliacoes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 800px) {
    .atendimento-avaliacoes-grid {
        grid-template-columns: 1fr 2fr;
    }
}

/* Card Único (Esquerda) e Wrapper de Avaliações (Direita) */
.atendimento-card-unico, .avaliacoes-wrap {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-left: 3px solid #f58220; /* Borda laranja que já existia nos cards originais */
}

/* Ajustes Internos do Card da Esquerda */
.info-group { margin-bottom: 1.5rem; }
.info-group:last-child { margin-bottom: 0; }
.info-group h3 { 
    font-size: 1.1rem; 
    color: #333; 
    text-transform: uppercase; 
    margin-bottom: 0.5rem; 
}
.info-group p, .info-group address { 
    font-size: 0.95rem; 
    color: #555; 
    line-height: 1.5; 
    font-style: normal; 
}

/* Ajustes do Carrossel de Avaliações (Direita) */
.avaliacoes-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-slide { 
    text-align: center; 
    padding: 1rem 3rem; 
    cursor: default !important; 
}
.review-stars { 
    color: #FBBC05; 
    font-size: 1.8rem; 
    letter-spacing: 2px; 
    margin-bottom: 1rem; 
}
.review-text { 
    font-size: 1.2rem; 
    font-style: italic; 
    color: #333; 
    line-height: 1.6; 
    margin-bottom: 1.5rem; 
}
.review-author { 
    font-weight: 700; 
    color: #666; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

@media (max-width: 600px) {
    .review-slide { padding: 0.5rem 1.5rem; }
    .review-text { font-size: 1rem; }
}

/* =========================================================
   AJUSTES DE RESPONSIVIDADE - BANNER E CATÁLOGO
   Garante que as imagens não sejam cortadas em nenhuma tela
========================================================= */


/* 1. Ajuste do Banner Principal no Hero (Altura Automática) */
.hero-banner-carousel,
.hero-banner-carousel .carousel-track {
    height: auto !important; /* Libera a altura para acompanhar a imagem */
    min-height: 0 !important;
}

.hero-banner-slide {
    width: 100%;
    height: auto;
    display: block; /* Remove flexbox para a altura fluir naturalmente */
    background: transparent;
}

.hero-banner-slide img {
    width: 100%;
    height: auto !important; /* A altura da imagem dita a altura do banner */
    object-fit: cover; 
    display: block;
    max-height: none !important; /* Remove limites de altura no PC */
}

/* 2. Ajuste dos Cards de Veículos (Fotos e Vídeos) */
.carousel-shell--model {
    aspect-ratio: 4 / 3; /* Mantém um formato padrão para todos os cards */
    overflow: hidden;
    background-color: #f8f8f8; /* Fundo neutro */
}

.carousel-shell--model .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.carousel-shell--model .carousel-slide img,
.carousel-shell--model .carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain !important; /* 🔑 Sobrescreve qualquer regra anterior e impede o corte */
}
/* =========================================================
       AJUSTES DE RESPONSIVIDADE (MOBILE)
    ========================================================= */
    @media (max-width: 650px) {
      /* Reduz o respiro lateral para ganhar espaço na tela */
      .content { padding: 1rem 0.75rem; }
      
      /* Barra de aviso de salvamento empilhada */
      .unsaved-bar { flex-direction: column; align-items: flex-start; text-align: left; gap: 0.75rem; }
      
      /* Ajuste do Modal de Edição */
      .modal { padding: 1.25rem; }
      
      /* Topbar e Botões do cabeçalho */
      .topbar { padding: 0.75rem 1rem; }
      .topbar-right { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
      .topbar-right .btn { flex: 1; justify-content: center; }
      
      /* Como a tabela agora tem scroll, empilhamos os botões de ação para ficarem fáceis de tocar */
      .act-row { flex-direction: column; gap: 0.4rem; }
      .act-row .btn { width: 100%; justify-content: center; }
    }