:root {
    --yellow: #f7c600;
    --yellow-light: #ffdc3e;
    --yellow-dark: #d8a900;

    --black: #171717;
    --black-soft: #232323;
    --black-light: #2d2d2d;

    --white: #ffffff;
    --background: #f6f6f3;

    --gray-100: #f2f2f2;
    --gray-200: #e4e4e4;
    --gray-400: #a0a0a0;
    --gray-500: #737373;
    --gray-700: #444444;

    --whatsapp: #25d366;

    --container: 1180px;

    --shadow-small: 0 12px 35px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 28px 80px rgba(0, 0, 0, 0.18);

    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 34px;

    --transition: 0.25s ease;
}

/* Reset */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    background: var(--white);
    color: var(--black);

    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

/* Barra superior */

.topbar {
    position: relative;
    z-index: 120;

    background: var(--yellow);
    color: var(--black);
}

.topbar-content {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 11px;
    font-weight: 800;
}

.topbar-content p {
    display: flex;
    align-items: center;
    gap: 9px;
}

.topbar-content a:hover {
    text-decoration: underline;
}

.online-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #16a34a;

    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
}

/* Cabeçalho */

.header {
    position: sticky;
    top: 0;
    z-index: 110;

    background: rgba(23, 23, 23, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(16px);

    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.header-content {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    width: 170px !important;
    max-width: 170px !important;
    height: auto !important;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    margin-left: auto;
}

.main-menu a {
    position: relative;

    color: rgba(255, 255, 255, 0.75);

    font-size: 11px;
    font-weight: 700;
}

.main-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--yellow);

    transition: var(--transition);
}

.main-menu a:hover {
    color: var(--white);
}

.main-menu a:hover::after {
    width: 100%;
}

.header-button {
    flex: 0 0 auto;

    padding: 14px 19px;

    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);

    font-size: 11px;
    font-weight: 900;

    transition: var(--transition);
}

.header-button:hover {
    transform: translateY(-2px);
    background: var(--yellow-light);
}

.menu-button {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
    width: 20px;
    height: 2px;

    background: var(--white);

    transition: var(--transition);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            rgba(18, 18, 18, 1) 0%,
            rgba(31, 31, 31, 1) 55%,
            rgba(20, 20, 20, 1) 100%
        );

    color: var(--white);
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.hero-decoration {
    position: absolute;

    border-radius: 50%;
    filter: blur(10px);

    pointer-events: none;
}

.hero-decoration-one {
    width: 420px;
    height: 420px;

    top: -220px;
    right: 5%;

    background: rgba(247, 198, 0, 0.16);
}

.hero-decoration-two {
    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    background: rgba(247, 198, 0, 0.08);
}

.hero-grid {
    position: relative;
    z-index: 2;

    min-height: 690px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;

    padding-block: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;
    padding: 9px 14px;

    border: 1px solid rgba(247, 198, 0, 0.4);
    border-radius: 999px;

    background: rgba(247, 198, 0, 0.08);
    color: var(--yellow);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 680px;

    margin-bottom: 24px;

    font-size: clamp(42px, 5.6vw, 74px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -3.8px;
}

.hero-content h1 strong {
    color: var(--yellow);
}

.hero-description {
    max-width: 620px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.search-form {
    max-width: 650px;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;

    margin-bottom: 17px;
    padding: 7px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.07);
}

.search-input {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 10px;

    padding-inline: 13px;
}

.search-input span {
    color: var(--yellow);
    font-size: 24px;
}

.search-input input {
    width: 100%;
    min-width: 0;

    padding: 13px 0;

    border: 0;
    outline: 0;

    background: transparent;
    color: var(--white);

    font-size: 13px;
}

.search-input input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.search-input input.input-error {
    animation: shake 0.3s ease;
}

.search-form button {
    padding: 15px 20px;

    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);

    font-size: 11px;
    font-weight: 900;

    transition: var(--transition);
}

.search-form button:hover {
    background: var(--yellow-light);
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 36px;
}

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 21px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;

    transition: var(--transition);
}

.button img {
    width: 21px;
    height: 21px;
}

.button-primary {
    background: var(--whatsapp);
    color: var(--white);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.hero-statistics {
    max-width: 650px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.statistic {
    padding-top: 22px;
}

.statistic + .statistic {
    padding-left: 22px;

    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.statistic strong,
.statistic span {
    display: block;
}

.statistic strong {
    margin-bottom: 5px;

    color: var(--yellow);

    font-size: 17px;
    font-weight: 900;
}

.statistic span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
    font-weight: 700;
}

.hero-image-column {
    min-width: 0;
}

.hero-image {
    position: relative;
    overflow: hidden;

    min-height: 510px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large);

    background: var(--black-soft);

    box-shadow: var(--shadow-large);
}

.hero-image > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-image-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.05) 60%
        );
}

.hero-image-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;

    background: rgba(16, 16, 16, 0.78);

    backdrop-filter: blur(12px);
}

.badge-check {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;
    flex: 0 0 auto;

    border-radius: 13px;

    background: var(--yellow);
    color: var(--black);

    font-size: 20px;
    font-weight: 900;
}

.hero-image-badge strong,
.hero-image-badge small {
    display: block;
}

.hero-image-badge strong {
    margin-bottom: 4px;

    font-size: 12px;
}

.hero-image-badge small {
    color: rgba(255, 255, 255, 0.58);

    font-size: 10px;
}

.hero-brand-seal {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 76px;
    height: 76px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
}

.hero-brand-seal img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

/* Benefícios */

.benefits {
    position: relative;
    z-index: 5;

    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.benefit {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    border-right: 1px solid var(--gray-200);
}

.benefit:last-child {
    border-right: 0;
}

.benefit img {
    max-width: 135px;
    max-height: 58px;

    object-fit: contain;
}

/* Seções */

.section {
    padding-block: 100px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 50px;

    margin-bottom: 48px;
}

.section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--yellow-dark);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-heading h2,
.quote-copy h2,
.faq-heading h2 {
    max-width: 720px;

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.section-heading > p {
    color: var(--gray-500);

    font-size: 13px;
    font-weight: 500;
    line-height: 1.75;
}

.section-heading-centered {
    grid-template-columns: 1fr;
    justify-items: center;

    text-align: center;
}

.section-heading-centered p {
    max-width: 650px;
}

/* Categorias */

.categories {
    background: var(--background);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;

    min-height: 285px;

    display: flex;
    align-items: flex-start;
    flex-direction: column;

    padding: 25px;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-medium);

    background: var(--white);
    color: var(--black);

    text-align: left;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.035);

    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-7px);

    border-color: var(--yellow);

    box-shadow: var(--shadow-small);
}

.category-number {
    position: absolute;
    top: 20px;
    right: 21px;

    color: var(--gray-200);

    font-size: 23px;
    font-weight: 900;
}

.category-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;
    padding: 9px;

    border-radius: 17px;

    background: #fff7cf;
}

.category-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.category-card > strong {
    margin-bottom: 10px;

    font-size: 17px;
    font-weight: 900;
}

.category-card p {
    margin-bottom: 18px;

    color: var(--gray-500);

    font-size: 11px;
    font-weight: 500;
    line-height: 1.7;
}

.category-link {
    margin-top: auto;

    color: var(--yellow-dark);

    font-size: 10px;
    font-weight: 900;
}

/* Modelos */

.models {
    position: relative;

    background:
        linear-gradient(
            rgba(16, 16, 16, 0.94),
            rgba(16, 16, 16, 0.96)
        ),
        url("img/banner-renault.jpg") center / cover fixed;

    color: var(--white);
}

.section-heading-light > p {
    color: rgba(255, 255, 255, 0.58);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.model-card {
    position: relative;
    overflow: hidden;

    min-height: 340px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-medium);

    background: var(--black-soft);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-7px);
}

.model-card > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.model-card:hover > img {
    transform: scale(1.06);
}

.model-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.08) 70%
        );
}

.model-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 2;
}

.model-content > span {
    display: inline-block;

    margin-bottom: 5px;

    color: var(--yellow);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.model-content h3 {
    margin-bottom: 16px;

    font-size: 29px;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.model-content button {
    padding: 12px 16px;

    border-radius: 999px;

    background: var(--yellow);
    color: var(--black);

    font-size: 10px;
    font-weight: 900;

    transition: var(--transition);
}

.model-content button:hover {
    background: var(--white);
}

/* Produtos */

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.product-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-medium);

    background: var(--white);

    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.05);

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(247, 198, 0, 0.65);

    box-shadow: var(--shadow-small);
}

.product-image {
    position: relative;

    height: 255px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px;

    background: #f8f8f6;
}

.product-image > span {
    position: absolute;
    top: 16px;
    left: 16px;

    padding: 7px 11px;

    border-radius: 999px;

    background: var(--black);
    color: var(--yellow);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 23px;
}

.product-content > small {
    margin-bottom: 7px;

    color: var(--yellow-dark);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-content h3 {
    min-height: 54px;

    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.product-content p {
    margin-bottom: 23px;

    color: var(--gray-500);

    font-size: 10px;
    line-height: 1.65;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: auto;
}

.product-footer strong {
    font-size: 14px;
    font-weight: 900;
}

.product-footer button {
    padding: 11px 14px;

    border-radius: 11px;

    background: var(--black);
    color: var(--white);

    font-size: 9px;
    font-weight: 900;

    transition: var(--transition);
}

.product-footer button:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Cotação */

.quote-section {
    position: relative;
    overflow: hidden;

    padding-block: 100px;

    background: var(--black);
    color: var(--white);
}

.quote-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -220px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(247, 198, 0, 0.1);
}

.quote-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.quote-copy > p {
    max-width: 480px;

    margin: 20px 0 30px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.8;
}

.quote-copy ul {
    display: grid;
    gap: 14px;

    list-style: none;
}

.quote-copy li {
    display: flex;
    align-items: center;
    gap: 11px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    font-weight: 700;
}

.quote-copy li span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;
    flex: 0 0 auto;

    border-radius: 8px;

    background: var(--yellow);
    color: var(--black);

    font-weight: 900;
}

.quote-form {
    padding: 34px;

    border-radius: var(--radius-large);

    background: var(--white);
    color: var(--black);

    box-shadow: var(--shadow-large);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading span {
    display: block;

    margin-bottom: 7px;

    color: var(--yellow-dark);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-heading h3 {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;

    margin: 0 0 7px 2px;

    color: var(--gray-700);

    font-size: 9px;
    font-weight: 900;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--gray-200);
    border-radius: 13px;
    outline: none;

    background: #fafafa;
    color: var(--black);

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}

.form-group input {
    min-height: 50px;

    padding-inline: 15px;
}

.form-group textarea {
    min-height: 102px;

    padding: 15px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--yellow);

    background: var(--white);

    box-shadow: 0 0 0 4px rgba(247, 198, 0, 0.1);
}

.form-group input.input-error {
    border-color: #ef4444;

    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-error {
    display: block;

    min-height: 14px;

    margin: 5px 0 0 2px;

    color: #dc2626;

    font-size: 9px;
    font-weight: 700;
}

.form-submit {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 5px;

    border-radius: 13px;

    background: var(--whatsapp);
    color: var(--white);

    font-size: 11px;
    font-weight: 900;

    transition: var(--transition);
}

.form-submit img {
    width: 21px;
    height: 21px;
}

.form-submit:hover {
    transform: translateY(-2px);

    box-shadow: 0 13px 25px rgba(37, 211, 102, 0.25);
}

.form-notice {
    margin-top: 12px;

    color: var(--gray-400);

    font-size: 8px;
    text-align: center;
}

/* Processo */

.process {
    background: var(--background);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    overflow: hidden;

    min-height: 250px;

    padding: 30px;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-medium);

    background: var(--white);

    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);

    border-color: var(--yellow);
}

.process-number {
    position: absolute;
    top: 8px;
    right: 18px;

    color: var(--gray-100);

    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.process-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 16px;

    background: var(--yellow);
    color: var(--black);

    font-size: 8px;
    font-weight: 900;
}

.process-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    font-size: 18px;
    font-weight: 900;
}

.process-card p {
    position: relative;
    z-index: 2;

    color: var(--gray-500);

    font-size: 11px;
    line-height: 1.75;
}

/* CTA */

.cta {
    padding: 0 0 95px;

    background: var(--background);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 43px 48px;

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            120deg,
            var(--yellow),
            var(--yellow-light)
        );
}

.cta-content span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content h2 {
    margin: 6px 0;

    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-content p {
    font-size: 11px;
    font-weight: 600;
}

.cta-content > button {
    flex: 0 0 auto;

    padding: 16px 21px;

    border-radius: 999px;

    background: var(--black);
    color: var(--white);

    font-size: 10px;
    font-weight: 900;

    transition: var(--transition);
}

.cta-content > button:hover {
    transform: translateY(-3px);

    background: var(--black-light);
}

/* FAQ */

.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 80px;
}

.faq-heading {
    position: sticky;
    top: 125px;
}

.faq-heading > p {
    max-width: 370px;

    margin: 18px 0 25px;

    color: var(--gray-500);

    font-size: 12px;
    line-height: 1.75;
}

.faq-heading > button {
    background: transparent;
    color: var(--black);

    font-size: 10px;
    font-weight: 900;
}

.faq-heading > button:hover {
    color: var(--yellow-dark);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;

    border: 1px solid var(--gray-200);
    border-radius: 17px;

    background: var(--white);

    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(247, 198, 0, 0.7);

    box-shadow: var(--shadow-small);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 21px;

    background: transparent;
    color: var(--black);

    text-align: left;
}

.faq-question span {
    font-size: 12px;
    font-weight: 800;
}

.faq-question strong {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;
    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--gray-100);

    font-size: 18px;
}

.faq-item.active .faq-question strong {
    background: var(--yellow);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
    overflow: hidden;

    padding-inline: 21px;

    color: var(--gray-500);

    font-size: 11px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 21px;
}

/* Rodapé */

.footer {
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
    gap: 65px;

    padding-block: 65px 50px;
}

.footer-brand img {
    width: 170px;
    max-width: 170px;
    height: auto;

    margin-bottom: 18px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 430px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
}

.footer-column > strong {
    margin-bottom: 7px;

    color: var(--yellow);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column button {
    padding: 0;

    background: transparent;
    color: rgba(255, 255, 255, 0.58);

    font-size: 10px;
    font-weight: 600;

    transition: var(--transition);
}

.footer-column a:hover,
.footer-column button:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 66px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* WhatsApp */

.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 300;

    min-height: 58px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 18px 0 13px;

    border-radius: 999px;

    background: var(--whatsapp);
    color: var(--white);

    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.34);

    font-size: 10px;
    font-weight: 900;

    transition: var(--transition);
}

.whatsapp-floating img {
    width: 28px;
    height: 28px;
}

.whatsapp-floating:hover {
    transform: translateY(-4px);
}

.whatsapp-mobile {
    display: none;
}

/* Animação */

.reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(-5px);
    }

    66% {
        transform: translateX(5px);
    }
}

/* Tablet */

@media (max-width: 1050px) {
    .main-menu {
        gap: 18px;
    }

    .main-menu a {
        font-size: 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;

        padding-block: 70px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-image {
        min-height: 500px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit {
        border-bottom: 1px solid var(--gray-200);
    }

    .category-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-grid {
        gap: 50px;
    }
}

/* Menu mobile */

@media (max-width: 850px) {
    .header-content {
        min-height: 74px;
    }

    .menu-button {
        display: flex;

        margin-left: auto;
    }

    .header-button {
        display: none;
    }

    .main-menu {
        position: fixed;
        top: 110px;
        left: 20px;
        right: 20px;

        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;

        padding: 10px;

        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;

        background: rgba(23, 23, 23, 0.98);

        box-shadow: var(--shadow-large);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);

        transition: var(--transition);
    }

    .main-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-menu a {
        padding: 15px 14px;

        border-radius: 10px;

        font-size: 12px;
    }

    .main-menu a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .main-menu a::after {
        display: none;
    }

    .menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quote-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-heading {
        position: static;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Celular */

@media (max-width: 620px) {
    body {
        padding-bottom: 62px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar-content {
        min-height: 35px;

        justify-content: center;
    }

    .topbar-content p {
        display: none;
    }

    .logo img {
        width: 135px !important;
        max-width: 135px !important;
    }

    .header-content {
        min-height: 68px;
    }

    .main-menu {
        top: 88px;
        left: 14px;
        right: 14px;
    }

    .hero-grid {
        min-height: auto;

        padding-block: 52px;
    }

    .hero-content h1 {
        font-size: clamp(39px, 13vw, 58px);
        letter-spacing: -2.6px;
    }

    .hero-description {
        font-size: 14px;
    }

    .search-form {
        grid-template-columns: 1fr;

        border-radius: 16px;
    }

    .search-input {
        min-height: 48px;
    }

    .search-form button {
        min-height: 48px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-statistics {
        grid-template-columns: 1fr;
        gap: 13px;

        padding-top: 20px;
    }

    .statistic,
    .statistic + .statistic {
        padding: 0 0 13px;

        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-image {
        min-height: 390px;

        border-radius: 24px;
    }

    .hero-brand-seal {
        width: 62px;
        height: 62px;

        top: 16px;
        right: 16px;
    }

    .hero-brand-seal img {
        width: 38px;
        height: 38px;
    }

    .hero-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit {
        min-height: 95px;

        padding: 15px;
    }

    .benefit:nth-child(even) {
        border-right: 0;
    }

    .section,
    .quote-section {
        padding-block: 68px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .quote-copy h2,
    .faq-heading h2 {
        font-size: 34px;
        letter-spacing: -1.7px;
    }

    .category-grid,
    .models-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 260px;
    }

    .model-card {
        min-height: 315px;
    }

    .product-image {
        height: 260px;
    }

    .quote-form {
        padding: 23px;

        border-radius: 23px;
    }

    .quote-grid {
        gap: 42px;
    }

    .cta {
        padding-bottom: 68px;
    }

    .cta-content {
        align-items: flex-start;
        flex-direction: column;

        padding: 30px 24px;

        border-radius: 23px;
    }

    .cta-content > button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;

        padding-block: 52px 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;

        padding-block: 18px;
    }

    .whatsapp-floating {
        display: none;
    }

    .whatsapp-mobile {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 400;

        min-height: 62px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        padding: 0 15px;

        background: var(--whatsapp);
        color: var(--white);

        box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);

        font-size: 11px;
        font-weight: 900;
    }

    .whatsapp-mobile img {
        width: 23px;
        height: 23px;
    }
}

/* Usuários com animações reduzidas */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================
   SHOWROOM PREMIUM — HERO
===================================================== */
.hero-image-column { min-width: 0; }

.vehicle-showcase {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 34px;
    background: #202020;
    box-shadow: 0 35px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}

.vehicle-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), inset 0 -120px 150px rgba(0,0,0,.34);
}

.showcase-top {
    position: absolute;
    top: 22px;
    left: 24px;
    right: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.showcase-label {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(15,15,15,.68);
    color: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.showcase-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.75);
    font-size: 9px;
    font-weight: 800;
}
.showcase-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.14), 0 0 16px rgba(34,197,94,.75);
}

.vehicle-slides,
.vehicle-slide { position: absolute; inset: 0; }
.vehicle-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .65s ease, visibility .65s ease, transform 1.2s ease;
}
.vehicle-slide.active { opacity: 1; visibility: visible; transform: scale(1); }

.vehicle-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.9) contrast(1.06) brightness(.82);
    transition: transform 6s ease;
}
.vehicle-slide.active .vehicle-photo { transform: scale(1.055); }

.vehicle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(5,5,5,.93) 0%,rgba(5,5,5,.69) 36%,rgba(5,5,5,.12) 74%,rgba(5,5,5,.2) 100%), linear-gradient(to top,rgba(0,0,0,.92) 0%,transparent 62%);
}

.vehicle-content {
    position: absolute;
    left: 34px;
    bottom: 182px;
    z-index: 10;
    max-width: 360px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease .16s, transform .55s ease .16s;
}
.vehicle-slide.active .vehicle-content { opacity: 1; transform: translateY(0); }
.vehicle-content > span {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.vehicle-content h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(42px,5vw,64px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow: 0 12px 35px rgba(0,0,0,.65);
}
.vehicle-content p {
    max-width: 330px;
    margin-bottom: 19px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.7;
    text-shadow: 0 5px 20px rgba(0,0,0,.85);
}
.vehicle-content button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 17px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    font-size: 9px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(247,198,0,.22);
    transition: var(--transition);
}
.vehicle-content button b { font-size: 16px; }
.vehicle-content button:hover { transform: translateY(-3px); background: #fff; }

.showcase-seal {
    position: absolute;
    top: 70px;
    right: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 14px 8px 8px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(15,15,15,.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.showcase-seal-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
}
.showcase-seal-icon img { width: 28px; height: 28px; object-fit: contain; }
.showcase-seal strong,.showcase-seal span { display: block; }
.showcase-seal strong { margin-bottom: 2px; color: #fff; font-size: 10px; font-weight: 900; }
.showcase-seal span { color: rgba(255,255,255,.54); font-size: 8px; font-weight: 600; }

.vehicle-navigation {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 92px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}
.vehicle-selector {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: rgba(14,14,14,.68);
    color: #fff;
    backdrop-filter: blur(15px);
    text-align: left;
    transition: var(--transition);
}
.vehicle-selector:hover { transform: translateY(-3px); border-color: rgba(247,198,0,.55); }
.vehicle-selector.active { border-color: var(--yellow); background: rgba(247,198,0,.95); color: #111; }
.vehicle-selector > span { color: var(--yellow); font-size: 9px; font-weight: 900; }
.vehicle-selector.active > span { color: #111; }
.vehicle-selector strong,.vehicle-selector small { display: block; }
.vehicle-selector strong { font-size: 9px; font-weight: 900; }
.vehicle-selector small { margin-top: 2px; color: rgba(255,255,255,.48); font-size: 7px; font-weight: 700; text-transform: uppercase; }
.vehicle-selector.active small { color: rgba(0,0,0,.58); }

.showcase-trust {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 20;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(10,10,10,.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}
.showcase-check {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    background: var(--yellow);
    color: #111;
    font-size: 19px;
    font-weight: 900;
}
.showcase-trust strong,.showcase-trust small { display: block; }
.showcase-trust strong { margin-bottom: 3px; color: #fff; font-size: 10px; font-weight: 900; }
.showcase-trust small { color: rgba(255,255,255,.52); font-size: 8px; font-weight: 500; }

@media (max-width: 1050px) {
    .vehicle-showcase { min-height: 610px; }
}

@media (max-width: 620px) {
    .vehicle-showcase { min-height: 570px; border-radius: 24px; }
    .showcase-top { top: 15px; left: 15px; right: 15px; }
    .showcase-status { display: none; }
    .showcase-seal { top: 61px; right: 15px; padding: 7px; }
    .showcase-seal > div:last-child { display: none; }
    .vehicle-content { left: 20px; right: 20px; bottom: 205px; max-width: none; }
    .vehicle-content h2 { font-size: 43px; letter-spacing: -2px; }
    .vehicle-content p { max-width: 290px; }
    .vehicle-navigation { left: 14px; right: 14px; bottom: 90px; gap: 5px; }
    .vehicle-selector { justify-content: center; padding: 11px 6px; }
    .vehicle-selector > span,.vehicle-selector small { display: none; }
    .vehicle-selector strong { font-size: 8px; }
    .showcase-trust { left: 14px; right: 14px; bottom: 14px; }
}
