
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}

html {
    scroll-behavior: smooth;
}

/* CONTAINERS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.site-header {
    background: #111;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98%;
    margin: 1.5rem auto 2.5rem auto;
    padding: 4rem 0;
    background-color: #f0f0f0;
    background: url('../assets/images/background-banner.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    overflow: hidden;
    color: #f0f0f0;
    height: 700px;
    min-height: 400px;
    /* sombra */
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.4);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        width: auto;
        max-width: 100%;
        /*max-height: 400px;*/
    }

.hero-icon-left {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: auto;
    z-index: 2;
}

.hero-icon-center {
    position: absolute;
    top: 30%;
    width: 25px;
    height: auto;
    z-index: 2;
}

.hero-icon-center-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 2;
    white-space: nowrap;
    margin-left: 3rem;
}

    .hero-icon-center-wrapper .hero-icon-center {
        width: 25px;
        height: auto;
        flex-shrink: 0;
    }

.hero-icon-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem;
    color: gray;
    margin-left: 30px;
    font-weight: 600;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    color: lightgray;
    max-width: 470px;
    margin: 2rem 0 0 3rem;
}

    .hero-text h1 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 1rem 0;
    }

        /* Palavras com destaque de cor */
        .hero-text h1 .highlight {
            background: linear-gradient(to right, #00BFFF, #00FF99);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    /* Parágrafo */
    .hero-text p {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
        color: #ccc;
    }

        /* Negrito dentro do parágrafo */
        .hero-text p strong {
            font-weight: 600;
            color: #ffffff;
        }

/* Botão principal verde */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: black;
    background-color: #00ff7f;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 255, 127, 0.3);
    }

/* Botão secundário azul */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #00bfff;
    background-color: transparent;
    border: 2px solid #00bfff;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}

    .btn-secondary:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
        background-color: #00bfff;
        color: white;
    }

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0.5rem;
    text-decoration: none;
}

    .btn-primary img,
    .btn-secondary img {
        width: 15px;
        height: 15px;
    }

/* SOBRE */
.sobre {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(to bottom, #f0f0f0 0%, #e5e5e5 59%, whitesmoke 55%, whitesmoke 100%);
    width: 100%;
    padding: 4rem 0;
    overflow: hidden;
    color: #fff;
    height: auto;
    min-height: 400px;
}


.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

    .sobre-image img {
        width: auto;
        max-width: 85%;
        border-radius: 25px;
        /* sombra */
        box-shadow: 0 18px 25px rgba(0, 0, 0, 0.4);
    }

.sobre-image-logo {
    position: absolute;
    bottom: 4%;
    right: 15%;
    width: 16% !important;
    height: auto;
    z-index: 2;
    border-radius: 2px !important;
}

.sobre-image-textbox {
    position: absolute;
    bottom: 4%;
    left: 10%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85), rgba(60, 60, 60, 0.75));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    width: clamp(220px, 47%, 320px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: white;
    backdrop-filter: blur(4px);
    text-align: left;
    /* sombra */
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.4);
}

    /* Texto principal */
    .sobre-image-textbox p {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.6;
        margin: 0.5rem 0 1rem 0;
        color: #f1f1f1;
    }

    /* Nome */
    .sobre-image-textbox h3 {
        font-family: 'Inter', sans-serif !important;
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.3;
        margin: 0;
    }

    /* Cargo */
    .sobre-image-textbox h4 {
        margin-top: 0.2rem;
        font-size: 0.75rem;
        font-weight: 400;
        color: #aaa;
        line-height: 1.3;
    }

.sobre-icon-center {
    position: absolute;
    top: 30%;
    width: 25px;
    height: auto;
    z-index: 2;
}

.sobre-icon-center-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    transform: none;
    z-index: 2;
    white-space: nowrap;
    margin: 2rem 0 0 3rem;
}

    .sobre-icon-center-wrapper .sobre-icon-center {
        width: 25px;
        height: auto;
        flex-shrink: 0;
    }

.sobre-icon-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem;
    color: gray;
    margin-left: 30px;
    font-weight: 600;
}



.sobre-text {
    font-family: 'Inter', sans-serif;
    color: lightgray;
    max-width: 470px;
    margin: 5rem 0 0 3rem;
}

    .sobre-text h2 {
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 1rem 0;
        color: black;
    }

        .sobre-text h2 .highlight {
            background: linear-gradient(to right, #007BFF, #339CFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    /* Parágrafo */
    .sobre-text p {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
        color: gray;
    }

        /* Negrito dentro do parágrafo */
        .sobre-text p strong {
            font-weight: 500;
            color: black;
        }

    /* Parágrafo */
    .sobre-text h3 {
        margin: 2.5rem 0 0.8rem 0;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.5;
        color: black;
    }

    .sobre-text hr {
        border: none;
        height: 2px;
        background: linear-gradient(to right, #006BE9 3cm, #ccc 0);
        margin: 1rem 0;
    }

.sobre-diferenciais {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 500px;
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
}

    .diferencial-item img {
        width: 35px;
        height: auto;
        margin: 0 0 0.5rem 0.5rem;
    }

    .diferencial-item p {
        font-size: 0.7rem;
        color: gray;
        font-family: 'Montserrat', sans-serif;
        margin: 0;
    }

    .diferencial-item h4 {
        margin: 1rem 0 0.5rem 0;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.5;
        color: black;
    }

/* CARROS */
.carros {
    padding: 2rem 0 5rem 0;
    background: #f4f4f4;
}

.carros-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.carros-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.carros-text {
    text-align: left;
}
/* Texto */
.carros-subtitle {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #555;
    /*letter-spacing: 1px;*/
}

.carros-text h2 {
    font-size: 0.7rem;
    font-weight: 700;
    margin: 0.2rem 0 2rem;
}

.carros-text .highlight {
    color: #006be9;
}

/* Logos cinza */
.carros-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

    .carros-logos img {
        max-height: 40px;
        filter: grayscale(100%) brightness(80%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

        .carros-logos img:hover {
            filter: none;
            opacity: 1;
        }

/* Cards */
.carros-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.carros-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

    .carros-card img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Logo dentro do card */
.card-logo {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .card-logo img {
        height: 20%;
        width: auto;
    }

/* MARCAS */
.marcas {
    background-color: #f0f0f0;
    background: url('../assets/images/background-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

    .marcas .container {
        max-width: 1400px;
    }

.marcas-icon-center-wrapper {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.7rem;
    color: whitesmoke;
    /*font-weight: 600;*/
}

.marcas h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin: auto;
    max-width: 65%;
}

.marcas P {
    font-family: 'Montserrat', sans-serif !important;
}

.marcas .description {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 50px;
}

.marcas {
    background-color: #111;
    background: url('../assets/images/background-marcas.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.marcas-header {
    margin-bottom: 60px;
}

.marcas h2 .highlight-blue {
    background: linear-gradient(to right, #00BFFF, #00FF99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marcas h2 .highlight-lightblue {
    color: #00aaff;
}

.marcas .description {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 50px;
}

/* Diagramas */
.diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: auto;
}

/* Lados (Marcas e Compradores) */
.diagram-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .diagram-side.left {
        margin-right: 3%;
        text-align: right;
    }

    .diagram-side.right {
        margin-left: 3%;
        text-align: left;
    }

.diagram-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

    .diagram-node img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }

.diagram-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

    .diagram-wrapper::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 1px;
        background: linear-gradient( to right, transparent, rgba(166, 166, 166, 0.4), transparent );
        z-index: 0;
    }


/* Centro */
.diagram-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(166, 166, 166, 0.3);
    border-radius: 17px;
    padding: 2rem 0;
    /*max-width: 70%;*/
    background-color: black;
    position: relative;
    z-index: 1;
}

.brand-logo {
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
}

    .brand-logo img {
        width: 35%;
        height: auto;
    }

/* Categorias */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 80%;
}

.category {
    font-family: 'Montserrat', sans-serif !important;
    background-color: #4FC1FF;
    padding: 4px 10px;
    border-radius: 8px;
    color: #007BFF;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px 15px 15px 50px;
}

    .category img {
        width: 15px;
        height: auto;
        margin-right: 0.7rem;
        vertical-align: middle;
    }

    .category:hover {
        background-color: #00aaff;
    }

.category-middle {
    font-family: 'Montserrat', sans-serif !important;
    background-color: black;
    padding: 4px 10px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .category-middle img {
        width: 18px;
        height: auto;
    }

.diagram-node-middle {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    border-radius: 50px;
}

.diagram-side.left .diagram-node:nth-child(1) {
    position: relative;
    right: 4rem;
    transition: left 0.8s ease;
}

.diagram-side.left .diagram-node:nth-child(2) {
    position: relative;
    transition: left 0.8s ease;
}

.diagram-side.left .diagram-node:nth-child(3) {
    position: relative;
    right: 6rem;
    transition: left 0.8s ease;
}

.diagram-side.right .diagram-node:nth-child(1) {
    position: relative;
    left: 4rem;
    transition: right 0.3s ease;
}

.diagram-side.right .diagram-node:nth-child(2) {
    position: relative;
    transition: right 0.3s ease;
}

.diagram-side.right .diagram-node:nth-child(3) {
    position: relative;
    left: 6rem;
    transition: right 0.3s ease;
}

.diagram-middle-left {
    display: flex;
    border: 1px solid rgba(166, 166, 166, 0.3);
    justify-content: center;
    align-items: center;
    margin-right: 3%;
    background-color: black;
    position: relative;
    z-index: 1;
    border-radius: 50px;
}

.diagram-middle-right {
    display: flex;
    border: 1px solid rgba(166, 166, 166, 0.3);
    justify-content: center;
    align-items: center;
    margin-left: 3%;
    background-color: black;
    position: relative;
    z-index: 1;
    border-radius: 50px;
}

/* PRODUTOS */
.produtos {
    background: #f5f5f5;
    padding: 6rem 2rem 1.5rem 2rem;
}

.produtos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.produtos-icon-center-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    white-space: nowrap;
}

    .produtos-icon-center-wrapper .produtos-icon-center {
        width: 25px;
        height: auto;
        flex-shrink: 0;
    }

.produtos-icon-center {
    width: 24px;
    height: auto;
}

.produtos-icon-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem;
    color: #555555;
    margin-left: 5px;
    font-weight: 600;
}

.produtos-header {
    font-family: 'Inter', sans-serif;
    color: lightgray;
    max-width: 570px;
    text-align: left;
}

    .produtos-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 1rem 0;
        color: black;
    }

        .produtos-header h2 .highlight-blue {
            background: linear-gradient(to right, #00BFFF, #00c2a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .produtos-header h2 .highlight-lightblue {
            background: linear-gradient(to right, #007bff, #00aaff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    /* Parágrafo */
    .produtos-header p {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
        color: #555555;
    }

        /* Negrito dentro do parágrafo */
        .produtos-header p strong {
            font-weight: 500;
            color: black;
        }


/* Layout principal */
.produtos-content {
    display: flex;
    gap: 5rem;
    margin-top: 2rem;
}

/* Sidebar categorias */
.produtos-categorias {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #339CFF;
    border-radius: 12px;
    padding: 0.5rem;
    gap: 0.5rem;
    width: 20%;
}

/* Botão base */
.categoria {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: none;
    background: #f0f4ff;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    color: #007bff;
    font-size: 1rem;
    width: 100%;
}

    .categoria img {
        width: 25px;
        height: auto;
        vertical-align: middle;
        margin-left: 1rem;
    }

    /* Hover */
    .categoria:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    /* Ativo */
    .categoria.active {
        background: #00e090; /* verde ativo */
        color: #000; /* texto preto */
        font-weight: 700;
    }

/* Cards de produtos */
.produtos-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.produto-card {
    background: #fff;
    border: 1px solid #339CFF;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: 0.3s;
}

    .produto-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .produto-card img {
        max-width: 150px;
        margin-bottom: 1rem;
    }

    .produto-card h3 {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: #007bff;
        background: linear-gradient(to right, #007bff, #00aaff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: 'Inter', sans-serif;
    }

/* Rodapé CTA */
.produtos-footer {
    font-family: 'Inter', sans-serif;
    margin-top: 3rem;
    text-align: center;
}

    .produtos-footer p {
        color: darkgray;
    }

    .produtos-footer a {
        display: block;
        font-weight: 900;
        color: #007bff;
        margin: 0.5rem auto;
        text-decoration: none;
        font-size: 0.9rem;
        font-family: 'Inter', sans-serif;
    }

.btn-contato {
    background: linear-gradient(90deg, #00ff7f, #00ff7f);
    color: black !important;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 30%;
    font-family: 'Inter', sans-serif;
}

    .btn-contato:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 255, 127, 0.3);
    }

    .btn-contato img {
        width: 15px;
        height: 15px;
    }

.produtos-lista .produto-card:nth-child(1) {
    background-color: white !important;
    background: url('../assets/images/kit-suspensao.jpg') no-repeat center 85%;
    background-size: contain;
    padding: 35px 25px;
    text-align: start;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.produtos-lista .produto-card:nth-child(2) {
    background-color: #f8f8f8 !important;
    background: url('../assets/images/amortecedor.jpg') no-repeat center 85%;
    background-size: 65%;
    padding: 35px 25px;
    text-align: start;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.produtos-lista .produto-card:nth-child(3) {
    background-color: white !important;
    background: url('../assets/images/molas.jpg') no-repeat center 100%;
    background-size: 65%;
    padding: 35px 25px;
    text-align: start;
    color: #fff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.produto-card img {
    width: 30px;
    height: auto;
}

/* DEPOIMENTOS */
.depoimentos {
    background-color: #f4f4f4;
    padding: 2.5rem 0 5rem 0;
    font-family: 'Arial', sans-serif;
}

.depoimentos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.depoimentos-icon-center-wrapper {
    display: block;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    white-space: nowrap;
    max-width: 100px;
}

    .depoimentos-icon-center-wrapper .depoimentos-icon-center {
        width: 25px;
        height: auto;
        flex-shrink: 0;
    }

.depoimentos-icon-center {
    width: 24px;
    height: auto;
}

.depoimentos-icon-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem;
    color: #555555;
    margin-left: 5px;
    font-weight: 600;
}

.depoimentos-wrapper {
    position: relative;
    text-align: center;
    display: block;
    max-width: 450px;
    margin: 2rem auto;
}

    .depoimentos-wrapper h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.5;
        color: black;
        max-width: 450px;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .depoimentos-wrapper .highlight {
        background: linear-gradient(to right, #00BFFF, #00c2a8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.depoimentos-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-left: -25px;
    transform: translateY(25%);
}

    .depoimentos-icon:first-child {
        margin-left: 0; /* evita que a primeira imagem fique deslocada */
    }

.depoimentos-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.depoimento-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    width: 400px;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .depoimento-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.quote-icon {
    font-size: 4rem;
    height: 4rem;
    color: #007bff;
}

.depoimento-text {
    font-family: 'Montserrat', sans-serif !important;
    color: black;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.depoimento-author {
    display: flex;
    font-family: 'Montserrat', sans-serif !important;
    color: black;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
}

    .depoimento-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        /*border: 2px solid #007bff;*/
    }

    .depoimento-author strong {
        display: block;
    }

    .depoimento-author span {
        font-size: 0.7rem;
        color: #666;
    }

/* FOOTER */
.footer {
    background-color: #f4f4f4;
    position: relative;
    /*padding-bottom: 30px;*/
}

/* container preto arredondado */
.footer-container {
    background-color: #121216;
    border-radius: 50px;
    margin: 0 1.5rem;
    padding: 1rem;
    position: relative;
    height: 200px;
    overflow: visible;
}

.footer-copy {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    z-index: 0;
}

/* CURVA branca (mesma cor do fundo da página) */
.voltar-topo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: clamp(200px, 28vw, 350px);
    height: 50px;
    background-color: #f4f4f4;
    border-top-left-radius: 500px 500px;
    border-top-right-radius: 500px 500px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Botão branco, posicionado SUBINDO levemente sobre a curva */
.voltar-topo {
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    background-color: #f4f4f4;
    padding: 0.3rem 1.4rem;
    border-radius: 28px;
    margin-top: 10px;
    /*box-shadow: 0 10px 24px rgba(0,0,0,0.20);*/
    transition: transform .18s ease, background-color .18s, color .18s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8rem;
}

    .voltar-topo:hover {
        transform: translateY(-4px);
        color: #00bfff;
        background-color: #f3f3f3;
    }

/* Mensagem de convite */
.footer-invite {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* Redes sociais centralizadas */
.footer-socials {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    gap: 5rem;
}

    .footer-socials a img {
        width: 50px;
        height: 50px;
        filter: brightness(0) invert(1);
        transition: filter .25s, transform .2s;
        object-fit: contain;
        transform: scale(3); /* aumenta o desenho dentro do SVG */
        transform-origin: center;
    }

    .footer-socials a svg {
    }

    .footer-socials a img:hover {
        filter: none;
        /*transform: translateY(-4px);*/
    }

/* Telefone centralizado */
.footer-phone {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

    .footer-phone a {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        font-weight: 600;
    }

        .footer-phone a:hover {
            color: #00bfff;
        }


/* RESPONSIVO */
@media(max-width:1150px) {
    .diagram-side.left .diagram-node:nth-child(1) {
        position: relative;
        right: 0rem;
        transition: left 0.8s ease;
    }

    .diagram-side.left .diagram-node:nth-child(2) {
        position: relative;
        transition: left 0.8s ease;
    }

    .diagram-side.left .diagram-node:nth-child(3) {
        position: relative;
        right: 0rem;
        transition: left 0.8s ease;
    }

    .diagram-side.right .diagram-node:nth-child(1) {
        position: relative;
        left: 0rem;
        transition: right 0.3s ease;
    }

    .diagram-side.right .diagram-node:nth-child(2) {
        position: relative;
        transition: right 0.3s ease;
    }

    .diagram-side.right .diagram-node:nth-child(3) {
        position: relative;
        left: 0rem;
        transition: right 0.3s ease;
    }

    .produtos-header {
        text-align: center;
        margin: 0 auto;
    }

    .produtos-icon-center-wrapper {
        position: relative;
        top: auto;
        transform: none;
        margin: 1rem auto; /* centraliza */
    }

    .produtos-content {
        flex-direction: column;
        align-items: center;
    }

    .produtos-categorias {
        width: 100%;
        max-width: 500px;
    }

    .produtos-lista {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 500px;
    }

    .produto-card {
        width: 100%;
        min-height: 350px;
    }

    .produtos-lista .produto-card:nth-child(2) {
        background-size: 45%;
    }

    .produtos-lista .produto-card:nth-child(3) {
        background-size: 45%;
    }

    .produtos-icon-center-wrapper {
        display: block;
    }
}

@media(max-width:768px) {
    .hero-container, .sobre-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-icon-center-wrapper {
        position: relative;
        top: auto;
        transform: none;
        margin: 1rem auto;
    }

    .hero {
        min-height: 1000px;
        margin-top: 5px;
    }

    .hero-text {
        margin: 0rem auto 0 auto;
        max-width: 98%;
    }

    .btn-primary, .btn-secondary {
        gap: 1px;
        margin: 1px;
    }

    .sobre {
        /*height: 1200px !important;*/
        min-height: 400px;
    }

    .sobre-icon-center-wrapper {
        margin: 0 auto;
        justify-self: center;
    }

    .sobre-text {
        margin: 3rem 0;
        max-width: 98%;
    }

    .sobre-image img {
        max-width: 75%;
        border-radius: 25px;
    }

    .sobre-image-logo {
        bottom: 5%;
        right: 20%;
        width: 15% !important;
    }

    .sobre-image-textbox {
        bottom: 1.5rem;
        left: 7rem;
        padding: 1.2rem 1.5rem;
        width: clamp(180px, 50%, 280px);
    }

        .sobre-image-textbox h4 {
            font-size: 0.7rem;
        }

    .carros-text {
        margin: auto;
    }

    .diagram-side.right {
        display: none;
    }

    .diagram-side.left {
        display: none;
    }

    .diagram-middle-left {
        display: none;
    }

    .diagram-middle-right {
        display: none;
    }

    .marcas-header h2 {
        font-size: 2rem;
    }

    .marcas .description {
        font-size: 0.8rem;
    }

    .diagram-wrapper {
        width: 80%;
    }

    .btn-contato {
        width: 60%;
    }

    .footer-copy {
        bottom: 0px;
        font-size: 0.75rem !important;
        max-width: 100% !important;
        margin-left: auto;
        white-space: nowrap;
    }
}

@media (max-width: 500px) {

    .sobre-image-textbox {
        left: 1rem;
        width: clamp(230px, 50%, 280px);
    }

    .sobre-image img {
        max-width: 98%;
        border-radius: 25px;
    }

    .sobre-image-logo {
        max-width: 20% !important;
        right: 1rem;
    }

    .produtos {
        padding: 1.5rem 0;
    }

    .produtos {
        padding: 1.5rem 0;
    }

    .produtos-header h2 {
        font-size: 1.85rem;
    }

    .produtos-lista {
        width: 85%;
    }

    .depoimentos-icon-center-wrapper {
        margin: 0.5rem auto;
        max-width: 150px;
    }

    .depoimentos-wrapper {
        margin: 0.5rem auto 2rem auto;
    }

        .depoimentos-wrapper h2 {
            font-size: 2rem;
        }

    .highlight {
        margin-right: 17px !important;
    }

    .footer-container{
        height:230px;
    }

    .footer-invite,
    .footer-phone {
        font-size: 0.75rem;
    }

    .footer-socials {
        margin: 2rem 0rem 1rem 5rem;
    }

    .footer-copy {
        font-size: 0.6rem !important;
    }

    .voltar-topo {
        font-size: 0.6rem;
        top: 1px;
    }
}

@media (max-width: 430px) {
    .hero {
        min-height: 850px;
        margin-top: 5px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-icon-left {
        left: 10px;
    }

    .sobre {
        background: linear-gradient(to bottom, #f0f0f0 0%, #e5e5e5 43%, whitesmoke 43%, whitesmoke 100%);
    }

    .sobre-image-logo {
        max-width: 20% !important;
        margin-bottom: 1rem;
    }

    .sobre-image img {
        max-width: 98%;
        border-radius: 25px;
    }

    .marcas h2 {
        max-width: 98%;
        font-size: 1.9rem;
    }

    .footer-container {
        height: 240px;
        padding-bottom: 4.5rem;
    }

    .voltar-topo-wrapper {
        height: 40px;
        bottom: -1px;
    }

    .voltar-topo {
        padding: 0.5rem 1rem;
        top: 1px;
    }

    .footer-copy {
    }
}
