﻿:root {
    --azul-foton: #002d72;
    --azul-hover: #001233; 
    --azul-glow: rgba(0, 45, 114, 0.4);
    --glass-bg: rgba(0, 45, 114, 0.85); 
    --azul-destaque: #66b3ff; 
    --transition-speed: 0.45s;
    --bezier: cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: Arial, Helvetica, sans-serif; color: white; overflow-x: clip; background-color: #000; }

.navbar-container { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 30px 60px; 
    z-index: 9999; 
    transition: transform 0.4s var(--bezier), padding 0.4s var(--bezier); 
}


.navbar-hidden {
    transform: translateY(-150%) !important; 
}

.navbar { display: flex; justify-content: space-between; align-items: center; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 60px; padding: 10px 45px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); transition: border var(--transition-speed) var(--bezier); }
.navbar:hover { border: 1px solid rgba(255, 255, 255, 0.4); }
.logo img { height: 34px; transition: transform 0.5s var(--bezier); }
.logo img:hover { transform: scale(1.1); }
.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links a { text-decoration: none; color: white; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; position: relative; padding: 8px 0; transition: color var(--transition-speed) var(--bezier); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: white; transition: width var(--transition-speed) var(--bezier); }
.nav-links a:hover { color: var(--azul-destaque); }
.nav-links a:hover::after { width: 100%; }
.btn-nav { background: white; color: var(--azul-foton); text-decoration: none; padding: 12px 28px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; transition: all var(--transition-speed) var(--bezier); }
.btn-nav:hover { background: var(--azul-destaque); color: white; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); }


.hero { position: fixed; top: 0; left: 0; z-index: 1; height: 100vh; width: 100%; display: flex; flex-direction: column; overflow: hidden; transform-origin: center center; will-change: transform, filter; }
#bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)); z-index: -1; }

.hero-content { flex: 1; display: flex; align-items: center; padding: 0 100px; position: relative; }
.main-title { font-family: Arial, Helvetica, sans-serif; font-size: 5.5rem; line-height: 1.1; margin-bottom: 25px; }
.typing-text { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; border: none; }
.line-1 { animation: typing 1.8s steps(25, end) forwards; animation-delay: 0.8s; }
.line-2 { animation: typing 1.8s steps(25, end) forwards; animation-delay: 2.6s; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
.sub-title { font-size: 1.2rem; max-width: 550px; line-height: 1.7; opacity: 0; transform: translateY(20px); animation: fadeInText 1s var(--bezier) forwards; animation-delay: 1.2s; }
@keyframes fadeInText { to { opacity: 0.8; transform: translateY(0); } }

.bottom-action-area { position: absolute; bottom: 80px; right: 100px; text-align: right; }
.action-buttons { display: flex; gap: 20px; justify-content: flex-end; margin-bottom: 25px; }
.btn-pill { padding: 18px 45px; border-radius: 50px; font-weight: 700; text-transform: uppercase; font-size: 13px; cursor: pointer; transition: all var(--transition-speed) var(--bezier); }
.btn-pill.blue { background: var(--azul-foton); color: white; border: 1px solid var(--azul-foton); }
.btn-pill.blue:hover { background: white; color: var(--azul-foton); border-color: white; transform: translateY(-5px); box-shadow: 0 12px 30px rgba(255,255,255,0.2); }
.btn-pill.outline { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: white; }
.btn-pill.outline:hover { background: var(--azul-foton); color: white; border-color: var(--azul-foton); transform: translateY(-5px); box-shadow: 0 12px 30px var(--azul-glow); }
.action-description { font-size: 0.95rem; max-width: 420px; line-height: 1.6; opacity: 0.6; margin-left: auto; }


.models-section { 
    margin-top: 100vh; 
    position: relative; 
    z-index: 2; 
    min-height: 100vh; 
    background-color: var(--azul-hover); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    padding: 0 110px; 
    box-shadow: 0 -20px 50px rgba(0,0,0,0.5); 
    
}
.models-container { width: 100%; max-width: 1600px; margin: 0 auto; }
.models-header { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; margin-bottom: 40px; padding-top: 40px; }
.section-title { font-size: 3.5rem; font-weight: 800; color: white; }

.typing-models { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; border-right: 3px solid transparent; }
.models-section.is-visible .typing-models { animation: typing 2s steps(30, end) forwards, blink-caret 0.75s step-end infinite; animation-delay: 0.2s; }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: white } }

.slider-wrapper { position: relative; width: 100%; }
.control-btn { position: absolute; top: 35%; transform: translateY(-50%); z-index: 10; background: transparent; border: 2px solid rgba(255, 255, 255, 0.4); color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-speed) var(--bezier); }
.control-btn:hover:not(:disabled) { background: white; color: var(--azul-hover); transform: translateY(-50%) scale(1.1); box-shadow: 0 10px 25px rgba(255,255,255,0.2); }
.control-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.prev-btn { left: -95px; }
.next-btn { right: -95px; }
.slider-viewport { width: 100%; overflow: hidden; padding-top: 30px; padding-bottom: 50px; }
.slider-track { display: flex; gap: 30px; transition: transform 0.6s var(--bezier); }


.model-card { flex: 0 0 calc(25% - 22.5px); display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 25px; background: transparent; transition: all 0.4s var(--bezier); }
.model-card:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.03); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.model-card:nth-child(1) { --card-delay: 0.3s; }
.model-card:nth-child(2) { --card-delay: 0.7s; }
.model-card:nth-child(3) { --card-delay: 1.1s; }
.model-card:nth-child(4) { --card-delay: 1.5s; }
.model-card:nth-child(5) { --card-delay: 1.9s; }

.card-img, .card-number, .card-title, .card-desc, .card-actions { opacity: 0; transform: translateY(50px); transition: opacity 1.2s var(--bezier), transform 1.2s var(--bezier); }
.models-section.is-visible .card-img, .models-section.is-visible .card-number, .models-section.is-visible .card-title, .models-section.is-visible .card-desc, .models-section.is-visible .card-actions { opacity: 1; transform: translateY(0); }
.models-section.is-visible .card-img { transition-delay: calc(var(--card-delay) + 0s); }
.models-section.is-visible .card-number { transition-delay: calc(var(--card-delay) + 0.3s); }
.models-section.is-visible .card-title { transition-delay: calc(var(--card-delay) + 0.5s); }
.models-section.is-visible .card-desc { transition-delay: calc(var(--card-delay) + 0.7s); }
.models-section.is-visible .card-actions { transition-delay: calc(var(--card-delay) + 0.9s); }

.card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; margin-bottom: 15px; background: transparent; }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--bezier);-webkit-user-drag: none; }
.model-card:hover .card-img img { transform: scale(1.08); }
.card-number { font-size: 2.2rem; font-weight: 300; color: white; margin-bottom: 5px; font-family: Arial, Helvetica, sans-serif; }
.card-title { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; color: white;}
.card-desc { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 25px; flex-grow: 1; }

.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.action-btn { padding: 12px 5px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: none; width: 100%; }
.btn-detalhes { grid-column: 1 / -1; background: white; border: 2px solid white; color: var(--azul-hover); }
.btn-detalhes:hover { background: transparent; color: white; transform: translateY(-3px); }
.btn-cotacao { background: #FF6B00; color: white; }
.btn-cotacao:hover { background: #E65C00; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4); }
.btn-test { background: #00E676; color: #00331A; }
.btn-test:hover { background: #00C853; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4); }


@media (max-width: 1024px) {
    .navbar-container { padding: 20px; }
    .main-title { font-size: 3.5rem; }
  
    .model-card { flex: 0 0 calc(33.333% - 20px); padding: 15px; } 
    .section-title { font-size: 2.5rem; }
    .models-section { padding: 0 60px; }
    .prev-btn { left: -45px; }
    .next-btn { right: -45px; }
    
    .typing-text { 
        white-space: normal; 
        width: auto; 
        border: none;
        opacity: 0; 
        transform: translateY(30px); 
        animation: mobileFadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    .line-1 { animation-delay: 0.3s; }
    .line-2 { animation-delay: 0.7s; }

    
    .typing-models { 
        white-space: normal; 
        width: auto; 
        border: none; 
        opacity: 0;
        transform: translateY(30px);
    }
    .models-section.is-visible .typing-models {
        animation: mobileFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: 0.2s;
    }

    
    @keyframes mobileFadeUp {
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
}



html {
    overflow-y: scroll;
}

.contato-section {
    position: relative;
    z-index: 3;
    background-color: #ffffff; 
    padding-top: 100px;
}

.contato-header {
    text-align: center;
    margin-bottom: 60px;
}

.contato-main-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--azul-foton); 
    text-transform: uppercase;
}

.contato-subtitle {
    font-size: 1.8rem;
    color: #334155;
    margin-bottom: 40px;
}

.contato-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    gap: 60px;
    position: relative;
    z-index: 10;
    margin-bottom: -120px; 
}


.contato-info {
    flex: 1;
    padding-top: 40px;
}

.unidade-card {
    margin-bottom: 45px;
}

.unidade-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.unidade-header svg {
    stroke: var(--azul-destaque); 
}

.unidade-header h4 {
    font-size: 1.3rem;
    color: var(--azul-foton); 
    font-weight: 800;
}


.unidade-card p {
    font-size: 1rem;
    color: #000000; 
    line-height: 1.6;
    margin-left: 34px;
    font-weight: 600; 
}


.unidade-card .horario {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #000000; 
    font-weight: 500;
}


.contato-form-wrapper {
    flex: 1.2;
    background-color: var(--azul-hover); 
 padding: 30px 20px;
    border-radius: 20px;
    
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 45, 114, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.form-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contato-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contato-form .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contato-form .full-width {
    margin-bottom: 30px;
}

.contato-form label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 600;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    border-bottom-color: var(--azul-destaque);
}

.contato-form select option {
    background-color: var(--azul-hover);
    color: #ffffff;
}


.btn-submit {
    background-color: #ffffff;
    color: var(--azul-foton);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--azul-destaque);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 179, 255, 0.4);
}


.maps-container {
    display: flex;
    max-width: 1400px;
    margin: 180px auto 0;
    padding: 0 80px 80px 80px; 
    gap: 40px;
    height: 500px;
    position: relative;
    z-index: 1;
}

.map-box {
    flex: 1;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 100, 0.1);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.footer-section {
    background-color: #000a1a; 
    padding: 80px 110px 30px;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-brand .footer-logo {
    height: 35px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 250px;
}

.footer-links h4,
.footer-quote h4,
.footer-social h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--azul-destaque); }


.footer-quote p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 250px;
}

.btn-footer-quote {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--azul-destaque);
    color: var(--azul-destaque);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-footer-quote:hover {
    background: var(--azul-destaque);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(102, 179, 255, 0.3);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--azul-destaque);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.watermark { font-weight: 500; }
.dev-name { color: var(--azul-destaque); font-weight: 800; letter-spacing: 0.5px; text-decoration: none; }


@media (max-width: 1024px) {
    .contato-container { flex-direction: column; padding: 0 40px; gap: 40px; margin-bottom: 0; }
    .contato-form .form-row { flex-direction: column; gap: 0; }
    .maps-container { flex-direction: column; height: 800px; padding: 0 40px 60px; margin-top: 50px; }
    .footer-section { padding: 60px 40px 30px; }
    .footer-content { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

.telefone-unidade {
    margin-left: 34px;
    margin-top: 5px;
    color: #000 !important;
}
.telefone-unidade a {
    color: var(--azul-foton);
    text-decoration: none;
    font-weight: 700;
}


.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%; max-width: 450px;
    position: relative;
    color: var(--azul-hover);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 30px; cursor: pointer;
    color: #999;
}

.modal-content h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--azul-foton);
}

.modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.modal-item-info {
    display: flex;
    flex-direction: column;
}

.modal-item-info strong { font-size: 1.1rem; }

.btn-call {
    background: var(--azul-foton);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-call:hover { background: var(--azul-destaque); transform: scale(1.05); }
.modal-divider { height: 1px; background: #eee; margin: 10px 0; 
}


.product-showcase {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff; 
    overflow: hidden;
}

.showcase-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh; 
    background: linear-gradient(180deg, var(--azul-hover) 0%, var(--azul-foton) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


.showcase-watermark {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 20vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4); 
    white-space: nowrap;
    user-select: none;
    margin-top: 40px;
}

.showcase-image-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 900px; 
    margin: 28vh auto 0; 
    display: flex;
    justify-content: center;
}


.showcase-truck {
    width: 90%; 
    height: auto;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3));
    animation: truckEnter 1.5s var(--bezier) forwards;
}

@keyframes truckEnter {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.showcase-bottom {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    text-align: center;
    padding: 60px 20px 100px 20px;
}

.showcase-main-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--azul-hover);
    margin-bottom: 20px;
}


.aumark-page .navbar-container {
    padding: 30px 60px;
}

.aumark-specs-section {
    background-color: #ffffff;
    padding: 100px 110px;
    position: relative;
    z-index: 10;
}

.specs-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 80px;
}

.specs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-number {
    font-size: 5.5rem;
    font-weight: 300;
    color: var(--azul-hover); 
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -2px;
}

.spec-unit {
    font-size: 2rem;
    font-weight: 500;
}

.spec-desc {
    font-size: 1rem;
    color: #475569;
    margin-top: 10px;
    max-width: 400px;
    line-height: 1.6;
}




.specs-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.specs-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}


@media (max-width: 1024px) {
    .aumark-specs-section { padding: 60px 40px; }
    .specs-container { flex-direction: column; text-align: center; gap: 50px; }
    .spec-desc { margin: 10px auto 0; }
    .specs-buttons { justify-content: center; flex-direction: column; }
}

.showcase-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -5px; 
    margin-bottom: 35px; 
}

.btn-showcase {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--azul-foton);
}

.btn-showcase.solid {
    background-color: var(--azul-foton);
    color: #ffffff;
}

.btn-showcase.solid:hover {
    background-color: var(--azul-destaque);
    border-color: var(--azul-destaque);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 179, 255, 0.4);
}

.btn-showcase.outline {
    background-color: transparent;
    color: var(--azul-foton);
}

.btn-showcase.outline:hover {
    background-color: var(--azul-foton);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 45, 114, 0.2);
}


@media (max-width: 1024px) {
    .showcase-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }
    .btn-showcase {
        width: 100%;
        max-width: 300px;
    }
}

.gallery-section {
    background-color: #ffffff;
    padding: 80px 60px 120px 60px;
    color: #000;
}

.gallery-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.gallery-layout {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    gap: 40px;
}


.gallery-viewer {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.gallery-main-img {
    width: 100%;
    aspect-ratio: 16/9; 
    background-color: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.thumb {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb:hover {
    opacity: 0.8;
}

.thumb.active {
    opacity: 1;
    border-color: var(--azul-foton); 
}


.gallery-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.sidebar-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
}

.sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.icon-minus {
    width: 15px;
    height: 2px;
    background-color: #9ca3af;
}

.sidebar-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    background-color: transparent;
    border: 1px solid #d1d5db;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
}

.sidebar-btn.active {
    border-color: var(--azul-foton);
    background-color: var(--azul-foton);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 45, 114, 0.2);
}


@media (max-width: 1024px) {
    .gallery-layout { flex-direction: column; }
    .gallery-sidebar { width: 100%; }
    .gallery-main-title { font-size: 2.2rem; }
    .gallery-section { padding: 50px 20px; }
}


.versions-section {
    background-color: #f8fafc; 
    padding: 80px 60px 100px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.versions-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-hover);
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}


.versions-tabs {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
}

.version-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.4s var(--bezier);
    position: relative;
}

.version-tab img {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s var(--bezier);
}

.version-tab span {
    font-size: 1rem;
    color: #475569;
    text-align: center;
    font-weight: 500;
}

.version-tab span strong {
    font-size: 1.2rem;
    color: var(--azul-foton);
}

.version-tab:hover {
    opacity: 0.8;
}

.version-tab.active {
    opacity: 1;
}

.version-tab.active img {
    transform: scale(1.05);
}


.version-tab.active::after {
    content: '';
    position: absolute;
    bottom: -22px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--azul-foton);
}


.specs-accordion {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s var(--bezier);
    transform-origin: center;
}



.accordion-item {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s var(--bezier), margin 0.4s var(--bezier);
    margin: 0; 
}



.accordion-item.active {
    box-shadow: 0 20px 45px rgba(0, 45, 114, 0.12);
    border-color: var(--azul-foton);
    
    margin: 15px -30px; 
    transform: scale(1.01); 
    border-radius: 14px;
    z-index: 2;
    position: relative;
}


.accordion-item.active .spec-details-list li {
    font-size: 1.15rem; 
    padding-bottom: 15px;
    line-height: 1.5;
    padding-left: 10px;
    padding-right: 10px;
}

.accordion-item.active .spec-details-list li span {
    font-weight: 500;
}

.accordion-item.active .spec-details-list li strong {
    font-size: 1.2rem; 
    color: var(--azul-foton);
}


.accordion-item.active .accordion-header {
    font-size: 1.4rem; 
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header {
    color: var(--azul-foton);
}


.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #64748b;
    transition: all 0.3s ease;
}

.accordion-icon::before {
    top: 7px; left: 0; width: 16px; height: 2px;
}

.accordion-icon::after {
    top: 0; left: 7px; width: 2px; height: 16px;
}


.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-item.active .accordion-icon::before {
    background-color: var(--azul-foton);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--bezier);
}

.accordion-inner {
    padding: 0 30px 25px 30px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .versions-section { padding: 60px 20px; }
    .versions-tabs { gap: 20px; flex-direction: column; border-bottom: none; }
    .version-tab.active::after { display: none; }
    .version-tab img { width: 180px; }
}


.spec-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 10px;
    font-size: 0.95rem;
    color: #475569;
}

.spec-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-details-list li span {
    font-weight: 500;
}

.spec-details-list li strong {
    color: var(--azul-hover);
    font-weight: 800;
    text-align: right;
    max-width: 55%;
}

@media (max-width: 768px) {
    .spec-details-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .spec-details-list li strong {
        text-align: left;
        max-width: 100%;
        color: var(--azul-foton);
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: Arial, Helvetica, sans-serif; color: white; overflow-x: hidden; background-color: #000; }


.navbar-container { position: fixed; top: 0; left: 0; width: 100%; padding: 30px 60px; z-index: 9999; transition: transform 0.4s var(--bezier), padding 0.4s var(--bezier); }
.navbar-hidden { transform: translateY(-150%) !important; }
.navbar { display: flex; justify-content: space-between; align-items: center; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 60px; padding: 10px 45px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); transition: border var(--transition-speed) var(--bezier); }
.navbar:hover { border: 1px solid rgba(255, 255, 255, 0.4); }
.logo img { height: 32px; transition: transform 0.5s var(--bezier); }
.logo img:hover { transform: scale(1.1); }
.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links a { text-decoration: none; color: white; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; position: relative; padding: 8px 0; transition: color var(--transition-speed) var(--bezier); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: white; transition: width var(--transition-speed) var(--bezier); }
.nav-links a:hover { color: var(--azul-destaque); }
.nav-links a:hover::after { width: 100%; }
.btn-nav { background: white; color: var(--azul-foton); text-decoration: none; padding: 12px 28px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; transition: all var(--transition-speed) var(--bezier); }
.btn-nav:hover { background: var(--azul-destaque); color: white; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); }


.menu-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; z-index: 10001; padding: 5px; }
.menu-toggle span { width: 25px; height: 3px; background-color: white; border-radius: 5px; transition: all 0.3s; }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 10, 26, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.4s var(--bezier); }
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.sidebar { position: fixed; top: 0; right: 0; width: 320px; max-width: 100%; height: 100vh; background: var(--azul-foton); z-index: 10000; padding: 80px 30px 30px; display: none; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
.sidebar.active { display: flex; }
.close-sidebar { position: absolute; top: 20px; right: 30px; font-size: 45px; color: white; background: none; border: none; cursor: pointer; transition: color 0.3s; }
.close-sidebar:hover { color: var(--azul-destaque); }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 25px; margin-bottom: 40px; }
.sidebar-links a { color: white; text-decoration: none; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; transition: color 0.3s; }
.sidebar-links a:hover { color: var(--azul-destaque); }
.sidebar-buttons { display: flex; flex-direction: column; gap: 15px; }
.sidebar-buttons .btn-nav { text-align: center; padding: 15px; font-size: 1rem; width: 100%; }
.sidebar-buttons .btn-nav.outline { background: transparent; border: 2px solid white; color: white; }


.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); display: none; justify-content: center; align-items: center; z-index: 10000; }
.modal-overlay.active { display: flex; }
.modal-content { background: #fff; padding: 40px; border-radius: 20px; width: 90%; max-width: 450px; position: relative; color: var(--azul-hover); box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 30px; cursor: pointer; color: #999; }
.modal-content h3 { margin-bottom: 30px; font-size: 1.5rem; color: var(--azul-foton); }
.modal-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.modal-item-info { display: flex; flex-direction: column; }
.modal-item-info strong { font-size: 1.1rem; }
.btn-call { background: var(--azul-foton); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; transition: 0.3s; }
.btn-call:hover { background: var(--azul-destaque); transform: scale(1.05); }
.modal-divider { height: 1px; background: #eee; margin: 10px 0; }




.hero { position: fixed; top: 0; left: 0; z-index: 1; height: 100vh; width: 100%; display: flex; flex-direction: column; overflow: hidden; transform-origin: center center; will-change: transform, filter; }
#bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)); z-index: -1; }
.hero-content { flex: 1; display: flex; align-items: center; padding: 0 100px; position: relative; }
.main-title { font-family: Arial, Helvetica, sans-serif; font-size: 5.5rem; line-height: 1.1; margin-bottom: 25px; }
.typing-text { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; border: none; }
.line-1 { animation: typing 1.8s steps(25, end) forwards; animation-delay: 0.8s; }
.line-2 { animation: typing 1.8s steps(25, end) forwards; animation-delay: 2.6s; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
.sub-title { font-size: 1.2rem; max-width: 550px; line-height: 1.7; opacity: 0; transform: translateY(20px); animation: fadeInText 1s var(--bezier) forwards; animation-delay: 1.2s; }
@keyframes fadeInText { to { opacity: 0.8; transform: translateY(0); } }
.bottom-action-area { position: absolute; bottom: 80px; right: 100px; text-align: right; }
.action-buttons { display: flex; gap: 20px; justify-content: flex-end; margin-bottom: 25px; }
.btn-pill { padding: 18px 45px; border-radius: 50px; font-weight: 700; text-transform: uppercase; font-size: 13px; cursor: pointer; transition: all var(--transition-speed) var(--bezier); }
.btn-pill.blue { background: var(--azul-foton); color: white; border: 1px solid var(--azul-foton); }
.btn-pill.blue:hover { background: white; color: var(--azul-foton); border-color: white; transform: translateY(-5px); box-shadow: 0 12px 30px rgba(255,255,255,0.2); }
.btn-pill.outline { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: white; }
.btn-pill.outline:hover { background: var(--azul-foton); color: white; border-color: var(--azul-foton); transform: translateY(-5px); box-shadow: 0 12px 30px var(--azul-glow); }
.action-description { font-size: 0.95rem; max-width: 420px; line-height: 1.6; opacity: 0.6; margin-left: auto; }


.models-section { margin-top: 100vh; position: relative; z-index: 2; min-height: 100vh; background-color: var(--azul-hover); display: flex; flex-direction: column; justify-content: center; padding: 0 110px; box-shadow: 0 -20px 50px rgba(0,0,0,0.5); }
.models-container { width: 100%; max-width: 1600px; margin: 0 auto; }
.models-header { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; margin-bottom: 40px; padding-top: 40px; }
.section-title { font-size: 3.5rem; font-weight: 800; color: white; }
.typing-models { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; border-right: 3px solid transparent; }
.models-section.is-visible .typing-models { animation: typing 2s steps(30, end) forwards, blink-caret 0.75s step-end infinite; animation-delay: 0.2s; }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: white } }
.slider-wrapper { position: relative; width: 100%; }
.control-btn { position: absolute; top: 35%; transform: translateY(-50%); z-index: 10; background: transparent; border: 2px solid rgba(255, 255, 255, 0.4); color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-speed) var(--bezier); }
.control-btn:hover:not(:disabled) { background: white; color: var(--azul-hover); transform: translateY(-50%) scale(1.1); box-shadow: 0 10px 25px rgba(255,255,255,0.2); }
.control-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.prev-btn { left: -95px; }
.next-btn { right: -95px; }
.slider-viewport { width: 100%; overflow: hidden; padding-top: 30px; padding-bottom: 50px; }
.slider-track { display: flex; gap: 30px; transition: transform 0.6s var(--bezier); }
.model-card { flex: 0 0 calc(25% - 22.5px); display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 25px; background: transparent; transition: all 0.4s var(--bezier); cursor: pointer; }
.model-card:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.03); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.model-card:nth-child(1) { --card-delay: 0.3s; }
.model-card:nth-child(2) { --card-delay: 0.7s; }
.model-card:nth-child(3) { --card-delay: 1.1s; }
.model-card:nth-child(4) { --card-delay: 1.5s; }
.model-card:nth-child(5) { --card-delay: 1.9s; }
.card-img, .card-number, .card-title, .card-desc, .card-actions { opacity: 0; transform: translateY(50px); transition: opacity 1.2s var(--bezier), transform 1.2s var(--bezier); }
.models-section.is-visible .card-img, .models-section.is-visible .card-number, .models-section.is-visible .card-title, .models-section.is-visible .card-desc, .models-section.is-visible .card-actions { opacity: 1; transform: translateY(0); }
.models-section.is-visible .card-img { transition-delay: calc(var(--card-delay) + 0s); }
.models-section.is-visible .card-number { transition-delay: calc(var(--card-delay) + 0.3s); }
.models-section.is-visible .card-title { transition-delay: calc(var(--card-delay) + 0.5s); }
.models-section.is-visible .card-desc { transition-delay: calc(var(--card-delay) + 0.7s); }
.models-section.is-visible .card-actions { transition-delay: calc(var(--card-delay) + 0.9s); }
.card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; margin-bottom: 15px; background: transparent; }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--bezier); -webkit-user-drag: none; }
.model-card:hover .card-img img { transform: scale(1.08); }
.card-number { font-size: 2.2rem; font-weight: 300; color: white; margin-bottom: 5px; font-family: Arial, Helvetica, sans-serif; }
.card-title { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; color: white;}
.card-desc { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 25px; flex-grow: 1; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.action-btn { padding: 12px 5px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: none; width: 100%; }
.btn-detalhes { grid-column: 1 / -1; background: white; border: 2px solid white; color: var(--azul-hover); }
.btn-detalhes:hover { background: transparent; color: white; transform: translateY(-3px); }
.btn-cotacao { background: #FF6B00; color: white; }
.btn-cotacao:hover { background: #E65C00; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4); }
.btn-test { background: #00E676; color: #00331A; }
.btn-test:hover { background: #00C853; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4); }


.contato-section { position: relative; z-index: 3; background-color: #ffffff; padding-top: 100px; }
.contato-header { text-align: center; margin-bottom: 60px; }
.contato-main-title { font-family: Arial, Helvetica, sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--azul-foton); text-transform: uppercase; }
.contato-subtitle { font-size: 1.8rem; color: #334155; margin-bottom: 40px; }
.contato-container { display: flex; max-width: 1400px; margin: 0 auto; padding: 0 80px; gap: 60px; position: relative; z-index: 10; margin-bottom: -120px; }
.contato-info { flex: 1; padding-top: 40px; }
.unidade-card { margin-bottom: 45px; }
.unidade-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.unidade-header svg { stroke: var(--azul-destaque); }
.unidade-header h4 { font-size: 1.3rem; color: var(--azul-foton); font-weight: 800; }
.unidade-card p { font-size: 1rem; color: #000000; line-height: 1.6; margin-left: 34px; font-weight: 600; }
.unidade-card .horario { margin-top: 10px; font-size: 0.95rem; color: #000000; font-weight: 500; }
.telefone-unidade { margin-left: 34px; margin-top: 5px; color: #000 !important; }
.telefone-unidade a { color: var(--azul-foton); text-decoration: none; font-weight: 700; }

#formCotacao { scroll-margin-top: 120px; }
.contato-form-wrapper { flex: 1.2; background-color: var(--azul-hover); padding: 30px 20px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 45, 114, 0.4); border: 1px solid rgba(255,255,255,0.1); width: 100%; max-width: 100vw; box-sizing: border-box; }
.form-title { color: #ffffff; font-size: 1.5rem; margin-bottom: 30px; font-weight: 600; }
.contato-form .form-row { display: flex; gap: 20px; margin-bottom: 25px; }
.contato-form .input-group { flex: 1; display: flex; flex-direction: column; }
.contato-form .full-width { margin-bottom: 30px; }
.contato-form label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 8px; font-weight: 600; }
.contato-form input, .contato-form select, .contato-form textarea { background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); color: #ffffff; padding: 10px 0; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.contato-form input::placeholder, .contato-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.contato-form input:focus, .contato-form select:focus, .contato-form textarea:focus { border-bottom-color: var(--azul-destaque); }
.contato-form select option { background-color: var(--azul-hover); color: #ffffff; }
.btn-submit { background-color: #ffffff; color: var(--azul-foton); border: none; padding: 18px 40px; border-radius: 50px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: all 0.3s; width: 100%; }
.btn-submit:hover { background-color: var(--azul-destaque); color: #ffffff; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(102, 179, 255, 0.4); }

.maps-container { display: flex; max-width: 1400px; margin: 180px auto 0; padding: 0 80px 80px 80px; gap: 40px; height: 500px; position: relative; z-index: 1; }
.map-box { flex: 1; height: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 100, 0.1); }
.map-box iframe { width: 100%; height: 100%; border: none; }


.footer-section { background-color: #000a1a; padding: 80px 110px 30px; color: rgba(255,255,255,0.7); position: relative; z-index: 10; }
.footer-content { display: flex; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 50px; margin-bottom: 30px; }
.footer-brand .footer-logo { height: 35px; margin-bottom: 15px; }
.footer-brand p { font-size: 0.95rem; max-width: 250px; }
.footer-links h4, .footer-quote h4, .footer-social h4 { font-size: 1.2rem; color: #ffffff; margin-bottom: 20px; font-weight: 700; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--azul-destaque); }
.footer-quote p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; max-width: 250px; }
.btn-footer-quote { display: inline-block; background: transparent; border: 2px solid var(--azul-destaque); color: var(--azul-destaque); padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; transition: all 0.3s ease; }
.btn-footer-quote:hover { background: var(--azul-destaque); color: #ffffff; box-shadow: 0 10px 20px rgba(102, 179, 255, 0.3); }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: #ffffff; background: rgba(255, 255, 255, 0.1); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-icons a:hover { background: var(--azul-destaque); transform: translateY(-5px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.watermark { font-weight: 500; }
.dev-name { color: var(--azul-destaque); font-weight: 800; letter-spacing: 0.5px; text-decoration: none; }


.product-showcase { position: relative; width: 100%; min-height: 100vh; background-color: #ffffff; overflow: hidden; }
.showcase-top { position: absolute; top: 0; left: 0; width: 100%; height: 60vh; background: linear-gradient(180deg, var(--azul-hover) 0%, var(--azul-foton) 100%); display: flex; align-items: center; justify-content: center; z-index: 1; }
.showcase-watermark { font-family: Arial, Helvetica, sans-serif; font-style: italic; font-size: 20vw; font-weight: 700; color: rgba(255, 255, 255, 0.4); white-space: nowrap; user-select: none; margin-top: 40px; }
.showcase-image-container { position: relative; z-index: 5; width: 100%; max-width: 900px; margin: 28vh auto 0; display: flex; justify-content: center; }
.showcase-truck { width: 90%; height: auto; filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3)); animation: truckEnter 1.5s var(--bezier) forwards; }
@keyframes truckEnter { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.showcase-bottom { position: relative; z-index: 2; background-color: #ffffff; text-align: center; padding: 60px 20px 100px 20px; }
.showcase-main-title { font-size: 4rem; font-weight: 600; color: var(--azul-hover); margin-bottom: 20px; }
.showcase-actions { display: flex; justify-content: center; gap: 20px; margin-top: -5px; margin-bottom: 35px; }
.btn-showcase { padding: 15px 40px; border-radius: 50px; font-weight: 800; text-transform: uppercase; font-size: 0.9rem; text-decoration: none; transition: all 0.3s ease; border: 2px solid var(--azul-foton); }
.btn-showcase.solid { background-color: var(--azul-foton); color: #ffffff; }
.btn-showcase.solid:hover { background-color: var(--azul-destaque); border-color: var(--azul-destaque); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(102, 179, 255, 0.4); }
.btn-showcase.outline { background-color: transparent; color: var(--azul-foton); }
.btn-showcase.outline:hover { background-color: var(--azul-foton); color: #ffffff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 45, 114, 0.2); }
.aumark-page .navbar-container { padding: 30px 60px; }


.aumark-specs-section { background-color: #ffffff; padding: 100px 110px; position: relative; z-index: 10; }
.specs-container { display: flex; max-width: 1400px; margin: 0 auto; align-items: center; gap: 80px; }
.specs-content { flex: 1; display: flex; flex-direction: column; gap: 50px; }
.spec-item { display: flex; flex-direction: column; }
.spec-number { font-size: 5.5rem; font-weight: 300; color: var(--azul-hover); line-height: 1; font-family: Arial, Helvetica, sans-serif; letter-spacing: -2px; }
.spec-unit { font-size: 2rem; font-weight: 500; }
.spec-desc { font-size: 1rem; color: #475569; margin-top: 10px; max-width: 400px; line-height: 1.6; }
.specs-image { flex: 1.5; display: flex; justify-content: center; align-items: center; }
.specs-image img { width: 100%; max-width: 800px; height: auto; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); }


.gallery-section { background-color: #ffffff; padding: 80px 60px 120px 60px; color: #000; }
.gallery-main-title { text-align: center; font-size: 3rem; font-weight: 700; color: #000; margin-bottom: 50px; letter-spacing: -1px; }
.gallery-layout { display: flex; max-width: 1500px; margin: 0 auto; gap: 40px; }
.gallery-viewer { flex: 1; display: flex; flex-direction: column; }
.gallery-main-img { width: 100%; aspect-ratio: 16/9; background-color: #f4f4f4; border-radius: 8px; overflow: hidden; margin-bottom: 15px; }
.gallery-main-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.gallery-thumbnails { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; }
.gallery-thumbnails::-webkit-scrollbar { height: 6px; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
.thumb { width: 120px; height: 70px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.5; border: 2px solid transparent; transition: all 0.3s ease; }
.thumb:hover { opacity: 0.8; }
.thumb.active { opacity: 1; border-color: var(--azul-foton); }
.gallery-sidebar { width: 350px; flex-shrink: 0; }
.sidebar-card { background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #f3f4f6; padding-bottom: 15px; }
.sidebar-header h3 { font-size: 1.1rem; font-weight: 700; color: #111827; }
.icon-minus { width: 15px; height: 2px; background-color: #9ca3af; }
.sidebar-options { display: flex; flex-direction: column; gap: 10px; }
.sidebar-btn { background-color: transparent; border: 1px solid #d1d5db; padding: 15px 20px; border-radius: 8px; text-align: left; font-size: 1rem; font-weight: 600; color: #374151; cursor: pointer; transition: all 0.3s ease; }
.sidebar-btn:hover { border-color: #9ca3af; background-color: #f9fafb; }
.sidebar-btn.active { border-color: var(--azul-foton); background-color: var(--azul-foton); color: #ffffff; box-shadow: 0 4px 15px rgba(0, 45, 114, 0.2); }


.versions-section { background-color: #f8fafc; padding: 80px 60px 100px 60px; display: flex; flex-direction: column; align-items: center; }
.versions-main-title { font-size: 2.5rem; font-weight: 700; color: var(--azul-hover); margin-bottom: 50px; text-align: center; text-transform: uppercase; }
.versions-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(18px, 4vw, 60px); margin-bottom: 60px; border-bottom: 2px solid #e2e8f0; padding-bottom: 20px; }
.version-tab { display: flex; flex-direction: column; align-items: center; cursor: pointer; opacity: 0.5; transition: all 0.4s var(--bezier); position: relative; }
.version-tab img { width: clamp(130px, 15vw, 220px); height: auto; object-fit: contain; margin-bottom: 15px; transition: transform 0.4s var(--bezier); }
.version-tab span { font-size: 1rem; color: #475569; text-align: center; font-weight: 500; }
.version-tab span strong { font-size: 1.2rem; color: var(--azul-foton); }
.version-tab:hover { opacity: 0.8; }
.version-tab.active { opacity: 1; }
.version-tab.active img { transform: scale(1.05); }
.version-tab.active::after { content: ''; position: absolute; bottom: -22px; left: 0; width: 100%; height: 3px; background-color: var(--azul-foton); }

.specs-accordion { width: 100%; max-width: 900px; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background-color: #ffffff; border-radius: 10px; border: 1px solid #e2e8f0; overflow: hidden; transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s var(--bezier), margin 0.4s var(--bezier); margin: 0; }
.accordion-item.active { box-shadow: 0 20px 45px rgba(0, 45, 114, 0.12); border-color: var(--azul-foton); margin: 15px -30px; transform: scale(1.01); border-radius: 14px; z-index: 2; position: relative; }
.accordion-item.active .spec-details-list li { font-size: 1.15rem; padding-bottom: 15px; line-height: 1.5; padding-left: 10px; padding-right: 10px; }
.accordion-item.active .spec-details-list li span { font-weight: 500; }
.accordion-item.active .spec-details-list li strong { font-size: 1.2rem; color: var(--azul-foton); }
.accordion-item.active .accordion-header { font-size: 1.4rem; color: var(--azul-foton); }
.accordion-header { width: 100%; text-align: left; padding: 22px 30px; background: transparent; border: none; font-size: 1.1rem; font-weight: 700; color: #1e293b; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; transition: color 0.3s ease; }
.accordion-icon { position: relative; width: 16px; height: 16px; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background-color: #64748b; transition: all 0.3s ease; }
.accordion-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.accordion-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.accordion-item.active .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-item.active .accordion-icon::before { background-color: var(--azul-foton); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--bezier); }
.accordion-inner { padding: 0 30px 25px 30px; color: #475569; font-size: 0.95rem; line-height: 1.6; }
.spec-details-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.spec-details-list li { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed #e2e8f0; padding-bottom: 10px; font-size: 0.95rem; color: #475569; }
.spec-details-list li:last-child { border-bottom: none; padding-bottom: 0; }

.technical-download-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 42px;
}

/* =======================================================
   SHOWCASE TECNICO CUMMINS
   ======================================================= */
.cummins-section:has(.tech-showcase) {
    padding: clamp(76px, 9vw, 120px) clamp(18px, 4vw, 64px) clamp(82px, 9vw, 118px) !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 82% 16%, rgba(15, 121, 255, 0.11), transparent 30%),
        linear-gradient(180deg, #f7faff 0%, #eef4fb 100%) !important;
}

.cummins-section:has(.tech-showcase) .cummins-experience {
    width: min(1240px, 100%) !important;
    margin: 0 auto !important;
}

.cummins-section:has(.tech-showcase) .cummins-header {
    max-width: 760px !important;
    margin: 0 auto clamp(34px, 5vw, 58px) !important;
    padding: 8px 0 0 !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    overflow: visible !important;
}

.cummins-section:has(.tech-showcase) .cummins-eyebrow {
    display: block !important;
    margin-bottom: 12px !important;
    color: #075fc4 !important;
    font-size: 0.75rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

.cummins-section:has(.tech-showcase) .cummins-title {
    margin: 0 !important;
    color: #061635 !important;
    font-size: clamp(2.6rem, 5.2vw, 4.8rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
}

.cummins-section:has(.tech-showcase) .cummins-lead {
    max-width: 680px !important;
    margin: 20px auto 0 !important;
    color: #4c5d73 !important;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem) !important;
    line-height: 1.7 !important;
}

.tech-showcase {
    --tech-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    width: 100%;
    color: #fff;
    outline: none;
    touch-action: pan-y;
}

.tech-showcase__panel {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    grid-template-rows: minmax(500px, auto) 60px;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
    background: #061b42;
    box-shadow: 0 32px 80px rgba(4, 24, 61, 0.2), 0 3px 10px rgba(4, 24, 61, 0.12);
    isolation: isolate;
}

.tech-showcase__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 10%, rgba(28, 119, 241, 0.3), transparent 33%),
        linear-gradient(135deg, #08265a 0%, #041631 51%, #092451 100%);
}

.tech-showcase__copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(42px, 5vw, 70px) clamp(34px, 4.5vw, 64px) 42px;
    overflow: hidden;
}

.tech-showcase__copy::after {
    content: '';
    position: absolute;
    top: 9%;
    right: 0;
    width: 1px;
    height: 82%;
    background: linear-gradient(transparent, rgba(161, 204, 255, 0.25), transparent);
}

.tech-showcase__watermark {
    position: absolute;
    right: -0.06em;
    bottom: -0.13em;
    z-index: -1;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(12rem, 19vw, 18rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.1em;
    pointer-events: none;
}

.tech-showcase__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: clamp(36px, 5vw, 58px);
    color: #8eb8ed;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tech-showcase__meta span:last-child {
    text-align: right;
}

.tech-showcase__eyebrow {
    margin-bottom: 15px;
    color: #66b7ff;
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tech-showcase__copy h3 {
    max-width: 470px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.25rem, 3.6vw, 3.65rem);
    font-weight: 780;
    line-height: 1.03;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

.tech-showcase__copy > p {
    max-width: 440px;
    margin: 22px 0 0;
    color: #b9c8dc;
    font-size: clamp(0.96rem, 1.15vw, 1.05rem);
    line-height: 1.7;
}

.tech-showcase__highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: fit-content;
    max-width: 430px;
    margin-top: 28px;
    padding: 14px 18px;
    border: 1px solid rgba(105, 181, 255, 0.25);
    border-radius: 14px;
    background: rgba(70, 146, 237, 0.1);
    color: #e7f3ff;
    font-size: 0.87rem;
    line-height: 1.45;
    backdrop-filter: blur(12px);
}

.tech-showcase__highlight svg {
    width: 19px;
    min-width: 19px;
    fill: none;
    stroke: #70c6ff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tech-showcase__visual {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 0;
    overflow: hidden;
    cursor: grab;
    perspective: 1100px;
    background: linear-gradient(135deg, rgba(20, 69, 133, 0.22), rgba(2, 12, 29, 0.16));
}

.tech-showcase.is-dragging .tech-showcase__visual { cursor: grabbing; }

.tech-showcase__grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(129, 188, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 188, 255, 0.2) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 54% 46%, #000 0%, transparent 70%);
}

.tech-showcase__glow {
    position: absolute;
    width: min(68vw, 580px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 159, 255, 0.31) 0%, rgba(21, 85, 177, 0.13) 43%, transparent 69%);
    filter: blur(8px);
    transition: transform 0.7s var(--tech-ease);
    pointer-events: none;
}

.tech-showcase__product {
    position: relative;
    z-index: 2;
    width: min(86%, 620px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    transition: transform 0.72s var(--tech-ease), opacity 0.55s ease;
    will-change: transform;
}

.tech-showcase__product::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 10%;
    height: 8%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    filter: blur(18px);
    transform: rotateX(70deg);
}

.tech-showcase__product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.34));
    user-select: none;
    -webkit-user-drag: none;
}

.tech-showcase__controls {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    transform: translateY(-50%);
    pointer-events: none;
}

.tech-showcase__arrow {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(5, 31, 70, 0.72);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 10, 30, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

.tech-showcase__arrow span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    font-size: 0;
    line-height: 1;
    transition: transform 0.25s ease;
}
.tech-showcase__arrow span::before {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 0.72;
}
.tech-showcase__arrow:first-child span::before { content: '‹'; }
.tech-showcase__arrow:last-child span::before { content: '›'; }
.tech-showcase__arrow:hover,
.tech-showcase__arrow:focus-visible {
    border-color: #0b69ca;
    background: #063b79;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 24, 64, 0.28), 0 0 0 4px rgba(85, 171, 255, 0.1);
}
.tech-showcase__arrow:first-child:hover span { transform: translateX(-3px); }
.tech-showcase__arrow:last-child:hover span { transform: translateX(3px); }

.tech-showcase__footer {
    grid-column: 1 / -1;
    position: relative;
    z-index: 7;
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(1, 11, 29, 0.32);
}

.tech-showcase__count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #8ea7c7;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.tech-showcase__count span:first-child {
    color: #fff;
    font-size: 1.03rem;
}

.tech-showcase__progress {
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.tech-showcase__progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #49b2ff, #b8e4ff);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.tech-hotspot {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 6;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translate(-50%, -50%) translateZ(40px);
    cursor: pointer;
}

.tech-hotspot__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #147ee8;
    box-shadow: 0 0 0 6px rgba(59, 159, 255, 0.18);
    transform: translate(-50%, -50%);
}

.tech-hotspot__dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(119, 196, 255, 0.72);
    border-radius: 50%;
    animation: techPulse 2.4s ease-out infinite;
}

.tech-hotspot__tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    width: 190px;
    padding: 12px 14px;
    border: 1px solid rgba(142, 205, 255, 0.25);
    border-radius: 12px;
    background: rgba(2, 17, 42, 0.94);
    color: #fff;
    text-align: left;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
}

.tech-hotspot__tooltip strong,
.tech-hotspot__tooltip small { display: block; }
.tech-hotspot__tooltip strong { color: #8dccff; font-size: 0.78rem; }
.tech-hotspot__tooltip small { margin-top: 4px; color: #c4d2e2; font-size: 0.7rem; line-height: 1.4; }
.tech-hotspot:hover .tech-hotspot__tooltip,
.tech-hotspot:focus-visible .tech-hotspot__tooltip,
.tech-hotspot[aria-expanded="true"] .tech-hotspot__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.tech-hotspot:focus-visible { outline: 2px solid #8dccff; outline-offset: 1px; border-radius: 50%; }

.tech-showcase__eyebrow,
.tech-showcase__copy h3,
.tech-showcase__copy > p,
.tech-showcase__highlight,
.tech-showcase__product img,
.tech-hotspot {
    opacity: 0;
}
.tech-showcase__eyebrow { transform: translateY(12px); }
.tech-showcase__copy h3,
.tech-showcase__copy > p,
.tech-showcase__highlight { transform: translateY(24px); }
.tech-showcase__product img { transform: translateX(24px) scale(0.94); }
.tech-showcase[data-direction="prev"] .tech-showcase__product img { transform: translateX(-24px) scale(0.94); }
.tech-showcase.is-entering .tech-showcase__eyebrow,
.tech-showcase.is-entering .tech-showcase__copy h3,
.tech-showcase.is-entering .tech-showcase__copy > p,
.tech-showcase.is-entering .tech-showcase__highlight,
.tech-showcase.is-entering .tech-showcase__product img {
    opacity: 1;
    transform: translate(0) scale(1);
    transition: opacity 0.62s var(--tech-ease), transform 0.68s var(--tech-ease);
}
.tech-showcase.is-entering .tech-hotspot {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(40px);
    transition: opacity 0.62s var(--tech-ease), transform 0.68s var(--tech-ease);
}
.tech-showcase.is-entering .tech-showcase__eyebrow { transition-delay: 0.04s; }
.tech-showcase.is-entering .tech-showcase__copy h3 { transition-delay: 0.11s; }
.tech-showcase.is-entering .tech-showcase__copy > p { transition-delay: 0.18s; }
.tech-showcase.is-entering .tech-showcase__highlight { transition-delay: 0.25s; }
.tech-showcase.is-entering .tech-hotspot { transition-delay: 0.35s; }

@keyframes techPulse {
    0% { opacity: 0.8; transform: scale(0.6); }
    70%, 100% { opacity: 0; transform: scale(1.45); }
}

.tech-showcase .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .tech-showcase__panel {
        grid-template-columns: 45% 55%;
        grid-template-rows: minmax(470px, auto) 60px;
    }
    .tech-showcase__copy { padding: 38px 30px 34px; }
    .tech-showcase__copy h3 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
    .tech-showcase__meta { margin-bottom: 34px; }
    .tech-showcase__product { width: min(94%, 510px); }
}

@media (max-width: 720px) {
    .cummins-section:has(.tech-showcase) { padding: 68px 14px 78px !important; }
    .cummins-section:has(.tech-showcase) .cummins-header { margin-bottom: 28px !important; padding-inline: 12px !important; }
    .tech-showcase__panel {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(310px, auto) 68px;
        min-height: 0;
        border-radius: 24px;
    }
    .tech-showcase__copy { min-height: 410px; padding: 34px 24px 30px; }
    .tech-showcase__copy::after { display: none; }
    .tech-showcase__meta { margin-bottom: 32px; }
    .tech-showcase__copy h3 { font-size: clamp(2rem, 9vw, 2.8rem); }
    .tech-showcase__copy > p { margin-top: 18px; font-size: 0.94rem; line-height: 1.62; }
    .tech-showcase__highlight { margin-top: 22px; font-size: 0.81rem; }
    .tech-showcase__visual { min-height: 310px; }
    .tech-showcase__product { width: min(94%, 390px); }
    .tech-showcase__controls { left: 12px; right: 12px; top: 14%; }
    .tech-showcase__arrow { width: 44px; height: 44px; }
    .tech-showcase__footer { grid-column: 1; padding: 0 20px; grid-template-columns: 92px 1fr; gap: 14px; }
    .tech-hotspot__tooltip { width: 165px; }
}

@media (max-width: 420px) {
    .tech-showcase__copy { min-height: 430px; padding-inline: 20px; }
    .tech-showcase__copy h3 { font-size: clamp(1.82rem, 9vw, 2.3rem); }
    .tech-showcase__meta { font-size: 0.62rem; letter-spacing: 0.12em; }
    .tech-showcase__visual { min-height: 270px; }
}

@media (prefers-reduced-motion: reduce) {
    .tech-showcase *,
    .tech-showcase *::before,
    .tech-showcase *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
    .tech-showcase__product { transform: none !important; }
}

.technical-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 34px;
    border-radius: 999px;
    background: #041954;
    color: #ffffff;
    border: 1px solid rgba(4, 25, 84, 0.18);
    box-shadow: 0 18px 42px rgba(4, 25, 84, 0.18);
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s var(--bezier), box-shadow 0.3s ease, background 0.3s ease;
}

.technical-download-button::before {
    content: '';
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M12 15V3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M12 15V3'/%3E%3C/svg%3E") center / contain no-repeat;
    flex: 0 0 auto;
}

.technical-download-button:hover {
    transform: translateY(-3px);
    background: var(--azul-dawn);
    box-shadow: 0 22px 54px rgba(4, 25, 84, 0.24);
}
.spec-details-list li span { font-weight: 500; }
.spec-details-list li strong { color: var(--azul-hover); font-weight: 800; text-align: right; max-width: 55%; }


.test-drive-section { width: 100%; min-height: 100vh; background-color: #ffffff; display: flex; }
.td-layout { display: flex; width: 100%; min-height: 100vh; }
.td-visual { flex: 1.2; background: radial-gradient(circle at 50% 50%, #004abf 0%, #002159 60%, #000a1a 100%); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 150px 40px 60px; position: relative; }
.td-main-title { font-size: 3.5rem; font-weight: 800; color: #ffffff; margin-bottom: 40px; text-align: center; }
.td-car-display { width: 100%; max-width: 450px; display: flex; justify-content: center; z-index: 2; }
.td-car-display img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5)); transition: opacity 0.3s ease, transform 0.4s var(--bezier); }
.td-car-name { margin-top: 30px; font-size: 1.8rem; color: #ffffff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }


.td-left-selector { margin-top: 40px; width: 100%; max-width: 450px; text-align: left; z-index: 2; }
.td-left-selector label { color: #ffffff; font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; display: block; }
.td-left-selector select { width: 100%; padding: 16px; border: none; border-radius: 8px; font-size: 1.05rem; font-family: inherit; color: #111827; background-color: #ffffff; box-shadow: 0 10px 30px rgba(0,0,0,0.4); cursor: pointer; outline: none; font-weight: 600; }


.td-form-area { flex: 1; background-color: #ffffff; padding: 120px 80px 60px; display: flex; flex-direction: column; overflow-y: auto; }
.td-form { width: 100%; max-width: 550px; margin: 0 auto; }
.td-form-section { margin-bottom: 30px; }
.td-form-section h4 { font-size: 1.6rem; color: #111827; margin-bottom: 20px; font-weight: 800; }
.td-form label { font-size: 0.85rem; font-weight: 700; color: #374151; margin-bottom: 8px; display: block; }
.td-form input, .td-form select { width: 100%; padding: 15px; border: 1px solid #d1d5db; border-radius: 6px; font-family: inherit; font-size: 1rem; color: #111827; background-color: #ffffff; transition: all 0.3s; }
.td-form input:focus, .td-form select:focus { outline: none; border-color: var(--azul-foton); box-shadow: 0 0 0 3px rgba(0, 45, 114, 0.1); }
.td-form input[type="date"], .td-form input[type="time"] { cursor: pointer; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.td-form .form-row { display: flex; gap: 20px; }
.td-form .input-group { flex: 1; margin-bottom: 20px; }
.td-btn { background-color: var(--azul-foton) !important; color: #ffffff !important; border: none !important; border-radius: 50px !important; padding: 18px 40px !important; font-size: 1rem !important; font-weight: 800 !important; width: 100% !important; text-transform: uppercase !important; margin-top: 20px; box-shadow: 0 10px 20px rgba(0, 45, 114, 0.2) !important; }
.td-btn:hover { background-color: var(--azul-hover) !important; transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(0, 45, 114, 0.4) !important; }




@media (max-width: 1400px) {
    .nav-links, .nav-buttons { display: none; } 
    .menu-toggle { display: flex; } 
    .navbar { padding: 15px 30px; }
}

@media (max-width: 1024px) {
    
    .navbar-container { padding: 20px; }
    .main-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .models-section { padding: 0 60px; }
    .prev-btn { left: -45px; }
    .next-btn { right: -45px; }
    
    .semi-container { grid-template-columns: 1fr; text-align: center; height: auto; }
    .semi-title { font-size: 3rem; white-space: normal; width: auto; animation: none; opacity: 1; }
    .semi-divider { margin: 20px auto; }
    .semi-btn { align-self: center; }
    .semi-image-wrapper { height: auto; transform: none; padding: 40px 0; }
    .semi-image-wrapper img { width: 90%; max-height: 350px; object-fit: cover; }
    
    .contato-container { flex-direction: column; padding: 0 40px; gap: 40px; margin-bottom: 0; }
    .contato-form .form-row { flex-direction: column; gap: 0; }
    .maps-container { flex-direction: column; height: 800px; padding: 0 40px 60px; margin-top: 50px; }
    
    .footer-section { padding: 60px 40px 30px; }
    .footer-content { flex-direction: column; text-align: center; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    
    .aumark-specs-section { padding: 60px 40px; }
    .specs-container { flex-direction: column; text-align: center; gap: 50px; }
    .gallery-layout { flex-direction: column; }
    .gallery-sidebar { width: 100%; }
    .gallery-section { padding: 50px 20px; }
    .showcase-actions { flex-direction: column; align-items: center; margin-bottom: 25px; }
    .btn-showcase { width: 100%; max-width: 300px; }
    
    
    .test-drive-section { height: auto; min-height: 100vh; }
    .td-layout { flex-direction: column; height: auto; }
    .td-visual { padding: 120px 20px 40px; min-height: auto; }
    .td-form-area { padding: 40px 20px; overflow-y: visible; height: auto; }
    .td-form .form-row { flex-direction: column; gap: 0; }
}


@media (max-width: 768px) {
    .navbar-container { padding: 15px; }
    .hero-content { padding: 0 20px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
    .hero-text-wrapper { margin-top: -80px; }
    .main-title { font-family: Arial, Helvetica, sans-serif; font-size: 2.5rem; font-weight: 800; line-height: 1.2; }
    .sub-title { font-size: 1.1rem; font-weight: 500; margin: 15px auto 0; }
    .bottom-action-area { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 100%; display: flex; flex-direction: column; align-items: center; }
    .action-description { display: none; }
    .action-buttons { flex-direction: column; width: 90%; max-width: 350px; gap: 15px; margin: 0; }
    .btn-pill, .btn-showcase, .btn-nav { width: 100%; text-align: center; padding: 16px; }
    
    .models-section { padding: 40px 15px; }
    .slider-viewport { overflow: hidden; width: 100%; padding: 10px 0; }
    .slider-track { gap: 10px; }
    .model-card { min-width: 100%; flex: 0 0 100%; margin: 0; padding: 15px 20px; } 
    .card-img { margin-bottom: 10px; }
    .card-img img { max-height: 160px; object-fit: contain; }
    .card-number { font-size: 1.8rem; margin-bottom: 0px; }
    .card-title { font-size: 1rem; margin-bottom: 5px; }
    .card-desc { font-size: 0.8rem; line-height: 1.4; margin-bottom: 15px; }
    .card-actions { gap: 8px; }
    .action-btn { padding: 10px 5px; }
    .control-btn { width: 40px; height: 40px; }
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    
    .semi-content { padding: 40px 20px; align-items: center; text-align: center; }
    .contato-container, .maps-container, .footer-content { flex-direction: column; padding: 0 15px; gap: 30px; }
    .map-box { height: 300px; width: 100%; }
    
    .showcase-watermark { font-size: 25vw; margin-top: 60px;}
    .showcase-image-container { margin-top: 25vh; }
    
    .aumark-specs-section, .gallery-section, .versions-section { padding: 40px 15px; }
    .versions-tabs { gap: 20px; flex-direction: column; border-bottom: none; }
    .version-tab.active::after { display: none; }
    .version-tab img { width: 180px; }
    
    .specs-accordion { width: 100%; max-width: 100%; }
    .accordion-item { width: 100%; margin: 0; }
    .accordion-item.active { margin: 10px 0; }
    .spec-details-list li { flex-direction: column; align-items: flex-start; gap: 5px; }
    .spec-details-list li span, .spec-details-list li strong { text-align: left; width: 100%; }
    
    .sidebar { width: 85%; right: 0; }
    
    .contato-form-wrapper { padding: 20px 15px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow: visible !important; margin: 0 !important; }
    .contato-form .form-row { flex-direction: row !important; gap: 12px !important; margin-bottom: 12px !important; }
    .contato-form input, .contato-form select, .contato-form textarea { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; padding: 5px 0 !important; font-size: 0.85rem !important; }
    .contato-form .full-width { margin-bottom: 12px !important; }
    .contato-form textarea { height: 50px !important; }
    .btn-submit { padding: 12px 20px !important; margin-top: 0 !important; font-size: 0.9rem !important; }

    
    .typing-text { white-space: normal; width: auto; border: none; opacity: 0; transform: translateY(30px); animation: mobileFadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
    .line-1 { animation-delay: 0.3s; }
    .line-2 { animation-delay: 0.7s; }
    .typing-models { white-space: normal; width: auto; border: none; opacity: 0; transform: translateY(30px); }
    .models-section.is-visible .typing-models { animation: mobileFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; animation-delay: 0.2s; }
    @keyframes mobileFadeUp { to { opacity: 1; transform: translateY(0); } }
}

.showroom-page {
    background-color: #f4f5f7; 
    color: #000;
    padding-top: 130px; 
    min-height: 100vh;
}

.showroom-header {
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.showroom-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.showroom-container {
    max-width: 1600px; 
    margin: 40px auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 100px; 
    align-items: flex-start;
}


.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: -webkit-sticky; 
    position: sticky;
    top: 150px; 
    height: max-content; 
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.filter-group h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #4b5563;
}

.filter-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #000;
    cursor: pointer;
}

.btn-reset-filter {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-reset-filter:hover {
    background: #e5e7eb;
}


.showroom-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    row-gap: 80px; 
}

.porsche-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--bezier), box-shadow 0.4s var(--bezier);
    cursor: pointer; 
}


.porsche-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.porsche-card img {
    width: 100%;
    margin-top: -80px; 
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}


.porsche-card:hover img {
    transform: scale(1.01);
}


.porsche-card img {
    width: 100%;
    margin-top: -80px; 
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.porsche-card:hover img {
    transform: scale(1.05);
}

.porsche-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.porsche-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: #f3f4f6;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.tag.novo {
    background: #e0f2fe; 
    color: var(--azul-foton);
}

.porsche-specs {
    margin-bottom: 25px;
    flex-grow: 1;
}

.spec-line {
    margin-bottom: 15px;
}

.spec-line strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
}

.spec-line span {
    font-size: 0.85rem;
    color: #6b7280;
}

.tech-link {
    font-size: 0.9rem;
    color: #000;
    text-decoration: underline;
    margin-bottom: 25px;
    font-weight: 600;
}

.card-actions-porsche {
    display: flex;
    gap: 15px;
}

.card-actions-porsche button {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-black {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-black:hover {
    background: #333;
}

.btn-outline-black {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-outline-black:hover {
    background: #f9fafb;
}


@media (max-width: 1024px) {
    .showroom-container {
        flex-direction: column;
        padding: 0 20px;
    }
    .filters-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 40px;
    }
    .showroom-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1025px) {
    
    html, body {
        overflow: visible !important;
        overflow-x: visible !important;
    }
    
    
    .showroom-container {
        align-items: flex-start !important;
    }

    
    .filters-sidebar {
        position: sticky !important;
        top: 150px !important;
        height: max-content !important;
        align-self: flex-start !important;
        z-index: 10 !important;
    }
}


:root {
    --branco-crystal: #ffffff;
    --cinza-cloud: #DBDFE2;
    --cinza-technology: #B4BCBF;
    --ciano-skyline: #3A4759;
    --preto-premium: #000000;
    --azul-dawn: #041954;
    --azul-pristine: #10DCFF;
    --azul-star-ocean: #1789FF;
    --azul-serenity: #005BEF;
    --laranja-daybreak: #FFAA00;
    --amarelo-bright: #FCE22B;
    --azul-foton: #002d72;
    --azul-hover: var(--azul-dawn);
    --azul-destaque: var(--azul-pristine);
    --azul-glow: rgba(16, 220, 255, 0.28);
    --glass-bg: rgba(4, 25, 84, 0.82);
    --transition-speed: 0.42s;
    --bezier: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif !important;
}

body {
    background-color: var(--preto-premium);
}

.section-anchor {
    position: relative;
    top: -130px;
    height: 0;
    pointer-events: none;
}

.navbar-container {
    padding: 26px 56px;
}

.navbar {
    min-height: 82px;
    padding: 15px 42px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(4, 25, 84, 0.92), rgba(0, 91, 239, 0.72)),
        rgba(4, 25, 84, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.navbar:hover {
    border-color: rgba(16, 220, 255, 0.55);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(16, 220, 255, 0.12);
}

.logo img,
.footer-logo {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.logo img {
    height: 48px;
}

.logo img:hover {
    transform: scale(1.06);
}

.nav-links {
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 12px;
    font-weight: 700;
    padding: 12px 0;
    color: var(--branco-crystal);
}

.nav-links a::after {
    height: 3px;
    bottom: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--azul-pristine), var(--laranja-daybreak));
}

.nav-links a:hover {
    color: var(--azul-pristine);
    text-shadow: 0 0 18px rgba(16, 220, 255, 0.35);
}

.btn-nav {
    padding: 15px 26px;
    border-radius: 999px;
    color: var(--azul-dawn);
    background: var(--branco-crystal);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.btn-nav:hover {
    background: var(--azul-pristine);
    color: var(--azul-dawn);
    box-shadow: 0 14px 34px rgba(16, 220, 255, 0.34);
}

.menu-toggle span {
    height: 3px;
    background-color: var(--branco-crystal);
}

.sidebar {
    background:
        radial-gradient(circle at 20% 0%, rgba(16, 220, 255, 0.18), transparent 34%),
        linear-gradient(180deg, var(--azul-dawn), var(--preto-premium));
    border-left: 1px solid rgba(16, 220, 255, 0.28);
}

.sidebar-links a {
    font-weight: 800;
}

.sidebar-links a:hover {
    color: var(--azul-pristine);
    transform: translateX(4px);
}

.sidebar-buttons .btn-nav {
    width: 100%;
}

.main-title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(3.1rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.02;
    max-width: 960px;
    text-transform: none;
}

.sub-title {
    max-width: 610px;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(4, 25, 84, 0.44) 44%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.btn-pill.blue {
    background: var(--azul-serenity);
    border-color: var(--azul-star-ocean);
}

.btn-pill.blue:hover,
.btn-pill.outline:hover {
    background: var(--azul-pristine);
    color: var(--azul-dawn);
    border-color: var(--azul-pristine);
    box-shadow: 0 16px 34px rgba(16, 220, 255, 0.32);
}

.models-section {
    background:
        radial-gradient(circle at top left, rgba(23, 137, 255, 0.22), transparent 34%),
        linear-gradient(180deg, var(--preto-premium) 0%, var(--azul-dawn) 56%, #020816 100%);
    min-height: auto;
    padding: 110px 0 120px;
}

.models-container {
    max-width: none;
}

.models-header {
    max-width: 1480px;
    margin: 0 auto 28px;
    padding: 0 72px;
}

.section-title {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(2.3rem, 4.6vw, 4.4rem);
    font-weight: 900;
}

.models-kicker {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 620px;
    margin-top: 14px;
}

.premium-carousel {
    position: relative;
    overflow: hidden;
}

.premium-carousel::before,
.premium-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: min(14vw, 190px);
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.premium-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--preto-premium), transparent);
}

.premium-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #020816, transparent);
}

.slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 56px 72px 48px;
    cursor: grab;
    scroll-behavior: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    user-select: none;
}

.slider-viewport::-webkit-scrollbar {
    display: none;
}

.slider-viewport.is-dragging {
    cursor: grabbing;
}

.slider-track {
    width: max-content;
    gap: 26px;
    transition: none;
}

.model-card {
    flex: 0 0 clamp(280px, 28vw, 390px);
    min-height: 470px;
    padding: 28px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(219, 223, 226, 0.9)),
        var(--branco-crystal);
    color: var(--preto-premium);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 220, 255, 0.2), transparent 44%, rgba(255, 170, 0, 0.16));
    opacity: 0;
    transition: opacity 0.45s var(--bezier);
}

.model-card:hover {
    border-color: rgba(16, 220, 255, 0.72);
    background: var(--branco-crystal);
    transform: translateY(-14px) scale(1.015);
    box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42), 0 0 34px rgba(16, 220, 255, 0.18);
}

.model-card:hover::before {
    opacity: 1;
}

.card-img,
.card-number,
.card-title,
.card-desc,
.card-actions {
    position: relative;
    z-index: 1;
}

.card-img {
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
}

.card-img img {
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.2));
}

.model-card:hover .card-img img {
    transform: translateY(-6px) scale(1.08);
}

.card-number {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 0.86rem;
    font-weight: 900;
    color: var(--azul-serenity);
    margin-bottom: 12px;
}

.card-title {
    color: var(--azul-dawn);
    font-size: 1.22rem;
    font-weight: 900;
}

.card-desc {
    color: var(--ciano-skyline);
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 28px;
}

.card-actions {
    display: block;
}

.action-btn,
.btn-detalhes {
    border-radius: 999px;
    padding: 14px 20px;
    background: var(--azul-dawn);
    color: var(--branco-crystal);
    border: 1px solid var(--azul-dawn);
    box-shadow: 0 14px 28px rgba(4, 25, 84, 0.18);
}

.action-btn:hover,
.btn-detalhes:hover {
    background: var(--azul-serenity);
    border-color: var(--azul-pristine);
    color: var(--branco-crystal);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 91, 239, 0.28);
}

.control-btn {
    display: none;
}

.contato-section {
    background:
        linear-gradient(180deg, var(--branco-crystal) 0%, #f7f9fb 100%);
}

.contato-main-title {
    font-family: Arial, Helvetica, sans-serif !important;
    color: var(--azul-dawn);
    font-weight: 900;
}

.contato-subtitle,
.unidade-card p,
.unidade-card .horario {
    color: var(--ciano-skyline);
}

.unidade-header h4 {
    color: var(--azul-serenity);
}

.contato-form-wrapper {
    background:
        radial-gradient(circle at top right, rgba(16, 220, 255, 0.2), transparent 36%),
        linear-gradient(145deg, var(--azul-dawn), #06113a 62%, var(--preto-premium));
    border: 1px solid rgba(16, 220, 255, 0.28);
    box-shadow: 0 28px 70px rgba(4, 25, 84, 0.34), 0 0 28px rgba(16, 220, 255, 0.12);
}

.form-title {
    font-weight: 900;
}

.contato-form label {
    color: rgba(255, 255, 255, 0.86);
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(219, 223, 226, 0.28);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--branco-crystal);
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    border-color: var(--azul-pristine);
    box-shadow: 0 0 0 4px rgba(16, 220, 255, 0.12);
    background: rgba(255, 255, 255, 0.12);
}

.contato-form select option {
    background-color: var(--azul-dawn);
}

.btn-submit {
    background: linear-gradient(135deg, var(--azul-pristine), var(--azul-star-ocean));
    color: var(--azul-dawn);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(16, 220, 255, 0.22);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--laranja-daybreak), var(--amarelo-bright));
    color: var(--preto-premium);
    box-shadow: 0 18px 42px rgba(255, 170, 0, 0.28);
}

.floating-socials {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--branco-crystal);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s var(--bezier), box-shadow 0.3s var(--bezier), filter 0.3s var(--bezier);
}

.floating-social-btn svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.floating-social-btn:hover {
    transform: translateY(-4px) scale(1.08);
    filter: saturate(1.12);
}

.floating-social-btn.facebook {
    background: #1877F2;
}

.floating-social-btn.instagram {
    background: radial-gradient(circle at 30% 105%, #fdf497 0 12%, #fd5949 38%, #d6249f 62%, #285AEB 100%);
}

.floating-social-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
}

.floating-social-btn.facebook:hover {
    box-shadow: 0 18px 42px rgba(24, 119, 242, 0.42);
}

.floating-social-btn.instagram:hover {
    box-shadow: 0 18px 42px rgba(214, 36, 159, 0.38);
}

.floating-social-btn.whatsapp:hover {
    box-shadow: 0 20px 46px rgba(37, 211, 102, 0.52);
}

.showroom-page {
    background: #f7f9fb;
    color: var(--preto-premium);
}

.showroom-title,
.porsche-card h2,
.td-main-title,
.td-form-section h4 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 900;
}

.porsche-card {
    border-radius: 8px;
    border: 1px solid rgba(180, 188, 191, 0.55);
}

.porsche-card:hover {
    box-shadow: 0 24px 58px rgba(4, 25, 84, 0.14);
}

@media (max-width: 1400px) {
    .navbar {
        min-height: 78px;
    }

    .logo img {
        height: 44px;
    }
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 18px;
    }

    .navbar {
        min-height: 74px;
        padding: 13px 24px;
    }

    .models-header {
        padding: 0 34px;
    }

    .slider-viewport {
        padding: 42px 34px 46px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 12px;
    }

    .navbar {
        min-height: 68px;
        padding: 10px 18px;
    }

    .logo img {
        height: 38px;
    }

    .main-title {
        font-size: clamp(2.35rem, 12vw, 3.2rem);
    }

    .models-section {
        padding: 76px 0 84px;
    }

    .models-header {
        padding: 0 18px;
    }

    .slider-viewport {
        padding: 30px 18px 36px;
    }

    .model-card {
        flex-basis: min(82vw, 330px);
        min-width: min(82vw, 330px);
        min-height: 430px;
        padding: 22px;
    }

    .premium-carousel::before,
    .premium-carousel::after {
        width: 40px;
    }

    .floating-socials {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .floating-social-btn {
        width: 46px;
        height: 46px;
    }

    .floating-social-btn svg {
        width: 22px;
        height: 22px;
    }
}


html,
body,
body *,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif !important;
}

.navbar-container {
    padding: 20px 52px;
}

.navbar {
    min-height: 70px;
    padding: 10px 34px;
    background: var(--azul-foton);
}

.logo img {
    height: 42px;
}

.nav-links {
    gap: 28px;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 800;
    padding: 10px 0;
}

.nav-links a::after {
    bottom: 0;
    height: 2px;
}

.btn-nav {
    padding: 13px 23px;
    font-size: 11.5px;
    font-weight: 900;
}

.models-section {
    background: var(--preto-premium);
    padding: 96px 0 104px;
}

.models-header {
    margin-bottom: 10px;
}

.models-kicker {
    color: var(--cinza-cloud);
}

.premium-carousel::before {
    background: linear-gradient(90deg, var(--preto-premium), transparent);
}

.premium-carousel::after {
    background: linear-gradient(270deg, var(--preto-premium), transparent);
}

.slider-viewport {
    padding-top: 38px;
    padding-bottom: 28px;
}

.model-card {
    flex: 0 0 clamp(250px, 24vw, 340px);
    min-height: 292px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    overflow: visible;
}

.model-card::before {
    display: none;
}

.model-card:hover {
    background: transparent;
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: none;
}

.card-img {
    width: 100%;
    aspect-ratio: 1.58 / 1;
    margin: 0;
    padding: 28px 24px;
    border-radius: 8px;
    background: var(--azul-dawn);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 46px rgba(0, 0, 0, 0.28);
    transition: transform 0.38s var(--bezier), box-shadow 0.38s var(--bezier), background 0.38s var(--bezier);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.36));
}

.model-card:hover .card-img {
    background: #061f68;
    transform: scale(1.025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 26px 58px rgba(16, 220, 255, 0.16);
}

.model-card:hover .card-img img {
    transform: scale(1.06);
}

.card-title {
    color: var(--branco-crystal);
    font-size: 0.92rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    letter-spacing: 0;
}

.card-number,
.card-desc,
.model-card .action-btn {
    display: none !important;
}

.product-showcase {
    background: var(--azul-dawn);
}

.showcase-top {
    background:
        radial-gradient(circle at 50% 30%, rgba(16, 220, 255, 0.16), transparent 42%),
        linear-gradient(180deg, var(--azul-dawn) 0%, #02091f 100%);
}

.showcase-watermark {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 900;
    font-style: normal;
    color: rgba(255, 255, 255, 0.16);
}

.showcase-bottom {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.showcase-main-title {
    color: var(--azul-dawn);
    font-weight: 900;
}

.btn-showcase {
    border-color: var(--azul-dawn);
}

.btn-showcase.solid {
    background-color: var(--azul-dawn);
    border-color: var(--azul-dawn);
}

.btn-showcase.solid:hover {
    background-color: #061f68;
    border-color: var(--azul-pristine);
    box-shadow: 0 14px 32px rgba(4, 25, 84, 0.28);
}

.btn-showcase.outline {
    color: var(--azul-dawn);
    border-color: var(--azul-dawn);
}

.btn-showcase.outline:hover {
    background-color: var(--azul-dawn);
    border-color: var(--azul-dawn);
}

.badge-novo,
.badge-tech,
.sidebar-btn.active,
.td-btn {
    background-color: var(--azul-dawn) !important;
    border-color: var(--azul-dawn) !important;
}

.spec-number,
.versions-main-title,
.accordion-item.active .accordion-header,
.accordion-item.active .spec-details-list li strong,
.version-tab span strong {
    color: var(--azul-dawn) !important;
}

.td-visual {
    background:
        radial-gradient(circle at 50% 34%, rgba(16, 220, 255, 0.18), transparent 42%),
        linear-gradient(180deg, var(--azul-dawn) 0%, #02091f 100%);
}

@media (max-width: 1400px) {
    .navbar-container {
        padding: 18px 28px;
    }

    .navbar {
        min-height: 66px;
        padding: 10px 24px;
    }

    .logo img {
        height: 39px;
    }
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 14px 18px;
    }

    .navbar {
        min-height: 64px;
    }

    .models-section {
        padding: 78px 0 86px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 10px 12px;
    }

    .navbar {
        min-height: 60px;
        padding: 9px 16px;
    }

    .logo img {
        height: 34px;
    }

    .btn-nav {
        padding: 13px 16px;
    }

    .model-card {
        flex-basis: min(76vw, 300px);
        min-width: min(76vw, 300px);
        min-height: 245px;
    }

    .card-img {
        padding: 22px 18px;
    }

    .card-title {
        font-size: 0.86rem;
    }
}


.models-section {
    margin-top: 100vh;
    min-height: 100vh;
    padding: 0;
    background:
        radial-gradient(circle at 50% 28%, rgba(16, 220, 255, 0.13), transparent 38%),
        linear-gradient(180deg, #041954 0%, #020b2a 58%, #041954 100%);
    box-shadow: none;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.models-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.26)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%, rgba(0, 0, 0, 0.18));
    z-index: 0;
}

.models-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.models-header {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 104px 56px 0;
    text-align: center;
    align-items: center;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 4.1rem);
    color: var(--branco-crystal);
    text-transform: uppercase;
}

.typing-models {
    width: auto;
    animation: none !important;
    border-right: 0;
}

.models-kicker {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.72);
}

.premium-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

.premium-carousel::before,
.premium-carousel::after {
    width: min(12vw, 170px);
    z-index: 4;
}

.premium-carousel::before {
    background: linear-gradient(90deg, #041954 0%, rgba(4, 25, 84, 0) 100%);
}

.premium-carousel::after {
    background: linear-gradient(270deg, #041954 0%, rgba(4, 25, 84, 0) 100%);
}

.slider-viewport {
    width: 100%;
    padding: clamp(42px, 8vh, 88px) 0 24px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.slider-viewport::-webkit-scrollbar {
    display: none;
}

.slider-viewport.is-dragging {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    align-items: flex-end;
    gap: clamp(46px, 6vw, 112px);
    width: max-content;
    padding: 0 clamp(36px, 6vw, 110px);
    will-change: transform;
}

.model-card {
    flex: 0 0 clamp(245px, 20vw, 390px);
    min-width: clamp(245px, 20vw, 390px);
    min-height: auto;
    padding: 0;
    gap: 6px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    outline: none;
    transform: translateZ(0);
    transition: transform 0.5s var(--bezier), filter 0.5s var(--bezier), opacity 0.5s var(--bezier);
}

.model-card::before {
    display: none !important;
}

.model-card:hover,
.model-card:focus-visible {
    transform: translateY(-16px) scale(1.045);
    filter: drop-shadow(0 0 28px rgba(16, 220, 255, 0.32));
}

.card-img {
    width: 100%;
    height: clamp(210px, 31vh, 365px);
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.model-card .card-img,
.model-card .card-title,
.model-card .card-category {
    opacity: 1;
    transform: none;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.52));
    transition: transform 0.55s var(--bezier), filter 0.55s var(--bezier);
    pointer-events: none;
}

.model-card:hover .card-img {
    background: transparent !important;
    transform: none;
}

.model-card:hover .card-img img,
.model-card:focus-visible .card-img img {
    transform: scale(1.07);
    filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 24px rgba(16, 220, 255, 0.24));
}

.model-card:focus-visible .card-title {
    color: var(--azul-pristine);
}

.card-title {
    color: var(--branco-crystal);
    font-size: clamp(1rem, 1.28vw, 1.35rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: none;
    margin-top: 16px;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.card-category {
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.78rem, 0.9vw, 0.95rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.carousel-hint {
    align-self: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.82rem, 1vw, 0.96rem);
    font-weight: 700;
    margin: 18px 20px clamp(34px, 6vh, 58px);
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: hintPulse 2.8s var(--bezier) infinite;
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.68;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@media (max-width: 1024px) {
    .models-header {
        padding: 88px 28px 0;
    }

    .slider-track {
        gap: 54px;
        padding: 0 48px;
    }

    .model-card {
        flex-basis: clamp(230px, 32vw, 330px);
        min-width: clamp(230px, 32vw, 330px);
    }

    .card-img {
        height: clamp(190px, 28vh, 310px);
    }
}

@media (max-width: 768px) {
    .models-section {
        min-height: 92vh;
    }

    .models-container {
        min-height: 92vh;
    }

    .models-header {
        padding: 76px 18px 0;
    }

    .models-kicker {
        font-size: 0.94rem;
    }

    .premium-carousel::before,
    .premium-carousel::after {
        width: 42px;
    }

    .slider-viewport {
        padding-top: 42px;
        padding-bottom: 10px;
    }

    .slider-track {
        gap: 38px;
        padding: 0 34px;
    }

    .model-card {
        flex-basis: min(72vw, 285px);
        min-width: min(72vw, 285px);
    }

    .card-img {
        height: clamp(172px, 30vh, 250px);
    }

    .carousel-hint {
        margin-bottom: 34px;
    }
}


.models-section {
    min-height: 86vh;
}

.models-container {
    min-height: 86vh;
}

.models-header {
    padding-top: 72px;
}

.premium-carousel {
    justify-content: flex-start;
}

.slider-viewport {
    overflow: hidden;
    padding-top: clamp(24px, 5vh, 54px);
    padding-bottom: 8px;
    user-select: none;
}

.slider-track {
    transition: none !important;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.card-img {
    height: clamp(230px, 34vh, 385px);
}

.carousel-hint {
    margin-top: 8px;
    margin-bottom: clamp(22px, 4vh, 36px);
}

@media (max-width: 1024px) {
    .models-section,
    .models-container {
        min-height: 82vh;
    }

    .models-header {
        padding-top: 64px;
    }

    .slider-viewport {
        padding-top: 28px;
    }

    .card-img {
        height: clamp(205px, 30vh, 320px);
    }
}

@media (max-width: 768px) {
    .models-section,
    .models-container {
        min-height: 80vh;
    }

    .models-header {
        padding-top: 56px;
    }

    .slider-viewport {
        padding-top: 26px;
    }

    .card-img {
        height: clamp(178px, 29vh, 260px);
    }

    .carousel-hint {
        margin-bottom: 24px;
    }
}


.hero-content {
    align-items: center;
    padding: 0 clamp(32px, 7vw, 100px);
}

.hero-text-wrapper {
    padding-top: 28px;
}

.premium-carousel .model-card-auman-heavy .card-img img {
    width: 82% !important;
    height: 82% !important;
}

.premium-carousel .model-card-auman-extra .card-img img {
    width: 78% !important;
    height: 78% !important;
}

@media (max-width: 768px) {
    .premium-carousel .model-card-auman-heavy .card-img img {
        width: 82% !important;
        height: 82% !important;
    }

    .premium-carousel .model-card-auman-extra .card-img img {
        width: 78% !important;
        height: 78% !important;
    }
}

.main-title {
    font-size: clamp(2.75rem, 5.4vw, 4.35rem);
    line-height: 1.12;
    margin-bottom: 0;
    max-width: 900px;
    overflow: visible;
}

.typing-text {
    padding-bottom: 0.08em;
}

.product-showcase {
    min-height: 100vh;
    background:
        radial-gradient(circle at 52% 34%, rgba(16, 220, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #041954 0%, #02113a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.showcase-top {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.showcase-watermark {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.09);
}

.showcase-image-container {
    position: relative;
    z-index: 3;
    max-width: 960px;
    margin: 18vh auto 0;
}

.showcase-truck {
    filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42));
}

.showcase-bottom {
    position: relative;
    z-index: 4;
    background: transparent;
    color: var(--branco-crystal);
    padding: 28px 20px 76px;
}

.showcase-main-title {
    color: var(--branco-crystal);
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    font-weight: 900;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.btn-showcase.outline {
    color: var(--branco-crystal);
    border-color: rgba(255, 255, 255, 0.72);
}

.btn-showcase.outline:hover {
    background-color: var(--branco-crystal);
    color: var(--azul-dawn);
    border-color: var(--branco-crystal);
}

.showcase-badges span {
    border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 22px;
    }

    .hero-text-wrapper {
        margin-top: -44px;
        padding-top: 0;
    }

    .main-title {
        font-size: clamp(2.15rem, 10vw, 2.85rem);
        line-height: 1.14;
    }

    .showcase-image-container {
        margin-top: 20vh;
    }

    .showcase-bottom {
        padding-bottom: 58px;
    }
}


.vehicle-page {
    background: #041954 !important;
}

.vehicle-page .product-showcase {
    min-height: 100svh;
    padding: clamp(108px, 13vh, 138px) 24px 58px;
    background:
        radial-gradient(circle at 50% 42%, rgba(16, 220, 255, 0.24), transparent 28%),
        radial-gradient(circle at 50% 72%, rgba(0, 91, 239, 0.22), transparent 34%),
        linear-gradient(135deg, #041954 0%, #02113a 54%, #000712 100%);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    isolation: isolate;
}

.vehicle-page .product-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%, rgba(0, 0, 0, 0.18)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.34));
}

.vehicle-page .showcase-top {
    position: absolute;
    inset: clamp(86px, 11vh, 120px) 0 auto;
    height: clamp(210px, 34vw, 410px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    overflow: visible;
    z-index: 1;
}

.vehicle-page .showcase-watermark {
    margin: 0;
    font-size: clamp(5.4rem, 18vw, 18rem);
    line-height: 0.86;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.075);
    letter-spacing: 0;
    text-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.vehicle-page .showcase-image-container {
    width: min(92vw, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    align-self: end;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.vehicle-page .showcase-image-container::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4%;
    width: min(72vw, 860px);
    height: 52px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.46), transparent 72%);
    filter: blur(10px);
    z-index: -1;
}

.vehicle-page .showcase-truck {
    width: min(88vw, 980px);
    max-height: min(52vh, 520px);
    object-fit: contain;
    filter: drop-shadow(0 38px 44px rgba(0, 0, 0, 0.5));
    animation: truckEnter 1.15s var(--bezier) both;
}

.vehicle-page .showcase-bottom {
    width: min(100%, 1120px);
    margin: -8px auto 0;
    padding: 0;
    position: relative;
    z-index: 4;
    background: transparent !important;
    text-align: center;
}

.vehicle-page .showcase-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.vehicle-page .showcase-categories span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.82rem;
    font-weight: 800;
}

.vehicle-page .showcase-main-title {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4.2vw, 4.35rem);
    line-height: 1;
    font-weight: 900;
    text-shadow: 0 22px 54px rgba(0, 0, 0, 0.48);
}

.vehicle-page .showcase-actions {
    margin: 0 0 22px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vehicle-page .btn-showcase {
    min-width: 210px;
    border-radius: 999px;
    padding: 15px 28px;
    border-width: 1px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.vehicle-page .btn-showcase.solid {
    background: #ffffff;
    border-color: #ffffff;
    color: #041954;
}

.vehicle-page .btn-showcase.solid:hover {
    background: var(--azul-pristine);
    border-color: var(--azul-pristine);
    color: #041954;
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(16, 220, 255, 0.22);
}

.vehicle-page .btn-showcase.outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.vehicle-page .btn-showcase.outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-4px);
}

.vehicle-page .showcase-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vehicle-page .showcase-badges span {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.88);
}

.vehicle-page .aumark-specs-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
    border-radius: 28px 28px 0 0;
    margin-top: -22px;
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1024px) {
    .vehicle-page .product-showcase {
        padding-top: 104px;
        min-height: 92svh;
    }

    .vehicle-page .showcase-truck {
        width: min(94vw, 820px);
        max-height: 44vh;
    }

    .vehicle-page .showcase-bottom {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .product-showcase {
        padding: 92px 16px 46px;
        min-height: 88svh;
    }

    .vehicle-page .showcase-top {
        inset: 88px 0 auto;
        height: 170px;
    }

    .vehicle-page .showcase-watermark {
        font-size: clamp(4.2rem, 22vw, 7rem);
    }

    .vehicle-page .showcase-image-container {
        width: 100%;
        align-self: center;
    }

    .vehicle-page .showcase-truck {
        width: min(104vw, 560px);
        max-height: 34vh;
    }

    .vehicle-page .showcase-main-title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        margin-bottom: 18px;
    }

    .vehicle-page .showcase-actions {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-page .btn-showcase {
        width: min(100%, 330px);
    }

    .vehicle-page .aumark-specs-section {
        border-radius: 20px 20px 0 0;
    }
}


.vehicle-page {
    background: #ffffff !important;
}

.vehicle-page .product-showcase {
    min-height: 100svh;
    padding: clamp(108px, 13vh, 138px) 24px 0;
    background:
        radial-gradient(circle at 50% 36%, rgba(16, 220, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #041954 0%, #02113a 100%) top / 100% 58% no-repeat,
        #ffffff;
    grid-template-rows: minmax(420px, 58vh) auto;
    align-items: end;
}

.vehicle-page .product-showcase::before {
    height: 58%;
    bottom: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(0, 0, 0, 0.2)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.3));
}

.vehicle-page .showcase-top {
    inset: clamp(86px, 11vh, 120px) 0 auto;
    height: min(38vh, 360px);
}

.vehicle-page .showcase-watermark {
    color: rgba(255, 255, 255, 0.1);
}

.vehicle-page .showcase-image-container {
    align-self: end;
    margin: 0 auto -54px;
}

.vehicle-page .showcase-image-container::after {
    bottom: -3%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28), transparent 72%);
}

.vehicle-page .showcase-truck {
    width: min(88vw, 980px);
    max-height: min(50vh, 510px);
    filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.36));
}

.vehicle-page .showcase-bottom {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 70px 20px 76px;
    color: #000000;
}

.vehicle-page .showcase-main-title {
    color: #000000;
    text-shadow: none;
}

.vehicle-page .showcase-categories span {
    color: #000000;
    background: #f3f5f7;
    border-color: rgba(4, 25, 84, 0.08);
}

.vehicle-page .btn-showcase.solid {
    background: #041954;
    border-color: #041954;
    color: #ffffff;
}

.vehicle-page .btn-showcase.solid:hover {
    color: #041954;
}

.vehicle-page .btn-showcase.outline {
    color: #041954;
    border-color: rgba(4, 25, 84, 0.45);
    background: transparent;
}

.vehicle-page .btn-showcase.outline:hover {
    background: #041954;
    border-color: #041954;
    color: #ffffff;
}

.vehicle-page .showcase-badges span {
    background: #f3f5f7 !important;
    color: #3A4759;
    border-color: rgba(4, 25, 84, 0.08);
}

.vehicle-page .aumark-specs-section {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .vehicle-page .product-showcase {
        min-height: 92svh;
        grid-template-rows: minmax(360px, 56vh) auto;
        background:
            radial-gradient(circle at 50% 34%, rgba(16, 220, 255, 0.2), transparent 30%),
            linear-gradient(135deg, #041954 0%, #02113a 100%) top / 100% 56% no-repeat,
            #ffffff;
    }

    .vehicle-page .product-showcase::before {
        height: 56%;
    }

    .vehicle-page .showcase-image-container {
        margin-bottom: -42px;
    }

    .vehicle-page .showcase-bottom {
        padding-top: 58px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .product-showcase {
        min-height: 88svh;
        padding: 92px 16px 0;
        grid-template-rows: minmax(300px, 52vh) auto;
        background:
            radial-gradient(circle at 50% 34%, rgba(16, 220, 255, 0.18), transparent 32%),
            linear-gradient(135deg, #041954 0%, #02113a 100%) top / 100% 54% no-repeat,
            #ffffff;
    }

    .vehicle-page .product-showcase::before {
        height: 54%;
    }

    .vehicle-page .showcase-top {
        height: 150px;
    }

    .vehicle-page .showcase-image-container {
        margin-bottom: -26px;
    }

    .vehicle-page .showcase-truck {
        width: min(104vw, 560px);
        max-height: 32vh;
    }

    .vehicle-page .showcase-bottom {
        padding: 44px 0 58px;
    }
}


.vehicle-page .spec-number {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(3.85rem, 6.6vw, 5.9rem);
    font-weight: 800 !important;
    line-height: 0.95;
    letter-spacing: 0;
    color: #000000 !important;
    text-transform: uppercase;
    text-rendering: geometricPrecision;
}

.vehicle-page .counter {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 800 !important;
    color: #000000 !important;
}

.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.28rem, 1.95vw, 1.82rem);
    font-weight: 800 !important;
    color: #000000 !important;
    letter-spacing: 0;
    margin-left: 8px;
}

.vehicle-page .spec-desc {
    color: #3A4759;
    font-weight: 700;
}

.dealers-page {
    background: #f7f9fc;
    color: #000000;
}

.dealers-page .navbar {
    background: var(--azul-foton);
}

.dealers-hero {
    display: none !important;
}

.dealers-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: clamp(132px, 15vh, 170px) 24px 118px;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 45, 114, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 0;
}

.dealers-container {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.dealers-intro {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
    opacity: 1;
    transform: none;
}

.dealers-section.is-visible .dealers-intro {
    opacity: 1;
    transform: none;
}

.dealers-intro span {
    display: block;
    margin-bottom: 14px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dealers-intro h2 {
    margin: 0;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.dealers-intro p {
    max-width: 560px;
    margin: 18px auto 0;
    color: #536070;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
}

.dealers-grid {
    display: grid;
    gap: 30px;
}

.dealer-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    min-height: 370px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(4, 25, 84, 0.08);
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(4, 25, 84, 0.08);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--bezier), transform 0.75s var(--bezier), box-shadow 0.42s var(--bezier), border-color 0.42s var(--bezier);
}

.dealers-section.is-visible .dealer-card {
    opacity: 1;
    transform: translateY(0);
}

.dealer-card:hover {
    border-color: rgba(0, 45, 114, 0.18);
    box-shadow: 0 28px 66px rgba(4, 25, 84, 0.13);
    transform: translateY(-5px);
}

.dealer-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 46px);
}

.dealer-city span,
.dealer-info-item strong {
    color: var(--azul-foton);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dealer-city h3 {
    margin: 8px 0 0;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.72rem, 2.7vw, 2.65rem);
    line-height: 1.05;
    font-weight: 800;
    text-transform: none;
}

.dealer-info-list {
    display: grid;
    gap: 17px;
    margin: 30px 0 28px;
}

.dealer-info-item p,
.dealer-info-item a {
    color: #293241;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.58;
    text-decoration: none;
}

.dealer-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    padding: 14px 24px;
    color: #ffffff;
    background: var(--azul-foton);
    border: 1px solid var(--azul-foton);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.35s var(--bezier), box-shadow 0.35s var(--bezier), background 0.35s var(--bezier);
}

.dealer-map-button:hover {
    background: #041954;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 45, 114, 0.22);
}

.dealer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 370px;
    border: 0;
    filter: saturate(0.86) contrast(1.03);
}

.cummins-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(90px, 11vw, 140px) clamp(22px, 6vw, 110px);
    background:
        radial-gradient(circle at 76% 48%, rgba(16, 220, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fb 52%, #eef3f8 100%);
    color: #000000;
}

.cummins-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 45, 114, 0.06), transparent 28%, rgba(0, 0, 0, 0.03));
}

.cummins-container {
    position: relative;
    width: min(100%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.cummins-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--bezier), transform 0.8s var(--bezier);
}

.cummins-section.is-visible .cummins-content {
    opacity: 1;
    transform: translateY(0);
}

.cummins-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cummins-title {
    margin: 0 0 26px;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 5.2vw, 5.1rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.cummins-text {
    max-width: 650px;
    margin: 0 0 18px;
    color: #3A4759;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    font-weight: 600;
    line-height: 1.75;
}

.cummins-points {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.cummins-point {
    padding: 18px 20px;
    border: 1px solid rgba(0, 45, 114, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 34px rgba(4, 25, 84, 0.06);
    transition: transform 0.35s var(--bezier), border-color 0.35s var(--bezier), box-shadow 0.35s var(--bezier);
}

.cummins-point:hover {
    transform: translateX(6px);
    border-color: rgba(0, 45, 114, 0.22);
    box-shadow: 0 18px 42px rgba(4, 25, 84, 0.1);
}

.cummins-point strong {
    display: block;
    margin-bottom: 6px;
    color: #050505;
    font-size: 1rem;
    font-weight: 800;
}

.cummins-point span {
    display: block;
    color: #566171;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
}

.cummins-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(34px) scale(0.98);
    transition: opacity 0.9s var(--bezier) 0.12s, transform 0.9s var(--bezier) 0.12s;
}

.cummins-section.is-visible .cummins-visual {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cummins-glow {
    position: absolute;
    width: min(72vw, 620px);
    height: min(72vw, 620px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 220, 255, 0.22), rgba(0, 45, 114, 0.08) 42%, transparent 68%);
    filter: blur(8px);
    pointer-events: none;
}

.cummins-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.24));
    transition: transform 0.55s var(--bezier), filter 0.55s var(--bezier);
}

.cummins-visual:hover img {
    transform: translateY(-8px) scale(1.018);
    filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.28));
}

@media (max-width: 1024px) {
    .dealers-section {
        padding-top: 118px;
    }

    .dealer-card,
    .cummins-container {
        grid-template-columns: 1fr;
    }

    .cummins-content {
        text-align: center;
    }

    .cummins-text {
        margin-left: auto;
        margin-right: auto;
    }

    .cummins-visual {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3.15rem, 14vw, 4.35rem);
    }

    .vehicle-page .spec-unit {
        display: inline-block;
        font-size: clamp(1.05rem, 5vw, 1.42rem);
        margin-left: 4px;
    }

    .dealers-section {
        padding: 104px 16px 78px;
    }

    .dealers-intro {
        margin-bottom: 36px;
    }

    .dealer-card-content {
        padding: 26px 20px;
    }

    .dealer-map-button {
        width: 100%;
    }

    .dealer-map iframe {
        min-height: 280px;
    }

    .cummins-section {
        padding: 74px 18px 82px;
    }

    .cummins-content {
        text-align: left;
    }

    .cummins-title {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .cummins-visual {
        min-height: 280px;
    }
}


.vehicle-page .spec-number,
.vehicle-page .counter,
.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

.vehicle-page .spec-number {
    font-size: clamp(3.35rem, 5.35vw, 4.8rem) !important;
    line-height: 1 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1rem, 1.45vw, 1.38rem) !important;
}

.cummins-slide.is-active {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr) !important;
    align-items: center !important;
}

.cummins-card-copy {
    min-width: 0;
}

.cummins-card-media {
    position: sticky !important;
    top: 130px !important;
}

.contato-form-wrapper {
    height: auto !important;
    min-height: 0 !important;
}

.maps-container {
    display: none !important;
}

@media (max-width: 1024px) {
    .cummins-slide.is-active {
        grid-template-columns: 1fr !important;
    }

    .cummins-card-media {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(2.75rem, 11vw, 3.7rem) !important;
    }
}

.vehicle-page .spec-number {
    font-size: clamp(3.7rem, 6.25vw, 5.55rem) !important;
    line-height: 0.98 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1.18rem, 1.75vw, 1.68rem) !important;
}


.vehicle-page .spec-number,
.vehicle-page .counter,
.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

.vehicle-page .spec-number {
    font-size: clamp(3.45rem, 5.8vw, 5.05rem) !important;
    line-height: 1 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1.08rem, 1.55vw, 1.5rem) !important;
}

.cummins-section {
    padding: clamp(96px, 10vw, 140px) clamp(20px, 6vw, 110px) !important;
    background:
        radial-gradient(circle at 78% 50%, rgba(16, 220, 255, 0.13), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fc 54%, #eef3f8 100%) !important;
}

.cummins-experience {
    width: min(100%, 1360px);
    margin: 0 auto;
}

.cummins-header {
    max-width: 760px;
    margin: 0 0 42px;
    text-align: left;
    opacity: 1;
    transform: none;
}

.cummins-lead {
    max-width: 640px;
    margin: 18px 0 0;
}

.cummins-slider {
    display: block !important;
}

.cummins-arrow,
.cummins-dots {
    display: none !important;
}

.cummins-stage {
    position: relative;
    min-height: auto !important;
    perspective: none;
}

.cummins-slide {
    position: relative !important;
    inset: auto !important;
    display: none !important;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    align-items: center;
    gap: clamp(42px, 6vw, 96px);
    min-height: 520px;
    padding: clamp(34px, 5vw, 64px);
    border-radius: 14px;
    border: 1px solid rgba(4, 25, 84, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.92)),
        #ffffff;
    box-shadow: 0 30px 86px rgba(4, 25, 84, 0.12);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
}

.cummins-slide.is-active {
    display: grid !important;
}

.cummins-card-copy {
    max-width: 560px;
    padding: clamp(6px, 1vw, 10px);
}

.cummins-card-copy h3 {
    font-size: clamp(2rem, 3.4vw, 3.55rem);
    font-weight: 700;
    letter-spacing: 0;
}

.cummins-card-copy p {
    color: #3A4759;
    font-weight: 500;
}

.cummins-card-copy strong {
    border-radius: 10px;
    font-weight: 700;
}

.cummins-card-media {
    position: sticky;
    top: 130px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cummins-card-media img {
    width: min(100%, 620px);
}

.contato-section {
    padding-bottom: 96px !important;
}

.contato-container {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    align-items: start !important;
    gap: clamp(44px, 6vw, 76px) !important;
    margin-bottom: 0 !important;
}

.contato-info {
    padding-top: 0 !important;
}

.contato-form-wrapper {
    position: sticky;
    top: 118px;
    align-self: start;
    min-height: auto !important;
    padding: 34px 22px !important;
    overflow: visible !important;
}

.contato-form .form-row {
    align-items: flex-start;
}

.contato-form textarea {
    min-height: 98px;
    resize: vertical;
}

.unidade-card {
    margin-bottom: 0 !important;
    padding: 28px 0 !important;
}

.unidade-card:first-of-type {
    padding-top: 0 !important;
}

.contato-address-action {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 80px;
    display: flex;
    justify-content: flex-start;
}

.btn-address-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 28px;
    border-radius: 999px;
    background: var(--azul-foton);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(0, 45, 114, 0.2);
    transition: transform 0.35s var(--bezier), box-shadow 0.35s var(--bezier), background 0.35s var(--bezier);
}

.btn-address-full:hover {
    background: #041954;
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(0, 45, 114, 0.24);
}

.maps-container {
    display: none !important;
}

@media (max-width: 1024px) {
    .cummins-slide.is-active {
        grid-template-columns: 1fr !important;
    }

    .cummins-card-media {
        position: relative;
        top: auto;
        min-height: 320px;
    }

    .contato-container {
        grid-template-columns: 1fr;
        padding: 0 40px !important;
    }

    .contato-form-wrapper {
        position: relative;
        top: auto;
    }

    .contato-address-action {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(2.85rem, 12vw, 3.85rem) !important;
    }

    .vehicle-page .spec-unit {
        font-size: clamp(0.95rem, 4.5vw, 1.22rem) !important;
    }

    .cummins-section {
        padding: 74px 16px 82px !important;
    }

    .cummins-header {
        margin-bottom: 28px;
    }

    .cummins-slide {
        padding: 26px 18px 32px;
        min-height: auto;
    }

    .cummins-card-media {
        min-height: 260px;
    }

    .contato-container {
        padding: 0 18px !important;
    }

    .contato-address-action {
        padding: 0 18px;
    }

    .btn-address-full {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3rem, 13vw, 4.1rem) !important;
    }

    .vehicle-page .spec-unit {
        font-size: clamp(1rem, 4.8vw, 1.32rem) !important;
    }
}


.vehicle-page .spec-number,
.vehicle-page .counter,
.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 600 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

.vehicle-page .spec-number {
    font-size: clamp(3.35rem, 5.35vw, 4.8rem) !important;
    line-height: 1 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1rem, 1.45vw, 1.38rem) !important;
}

.cummins-slide.is-active {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr) !important;
    align-items: center !important;
}

.cummins-card-copy {
    min-width: 0;
}

.cummins-card-media {
    position: sticky !important;
    top: 130px !important;
}

.contato-form-wrapper {
    height: auto !important;
    min-height: 0 !important;
}

.maps-container {
    display: none !important;
}

@media (max-width: 1024px) {
    .cummins-slide.is-active {
        grid-template-columns: 1fr !important;
    }

    .cummins-card-media {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(2.75rem, 11vw, 3.7rem) !important;
    }
}

.vehicle-page .spec-number {
    font-size: clamp(3.7rem, 6.25vw, 5.55rem) !important;
    line-height: 0.98 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1.18rem, 1.75vw, 1.68rem) !important;
}

.cummins-slider {
    position: relative;
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) 54px !important;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
}

.cummins-stage {
    position: relative;
    min-height: clamp(520px, 50vw, 610px) !important;
    perspective: 1400px;
}

.cummins-slide {
    position: absolute !important;
    inset: 0;
    display: grid !important;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 78px);
    padding: clamp(32px, 4vw, 58px);
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(4, 25, 84, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.88)), #ffffff;
    box-shadow: 0 30px 86px rgba(4, 25, 84, 0.12);
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate3d(0, 26px, 0) scale(0.965) !important;
    filter: blur(10px);
    pointer-events: none;
    transition: opacity 0.72s var(--bezier), visibility 0.72s var(--bezier), transform 0.72s var(--bezier), filter 0.72s var(--bezier);
}

.cummins-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    filter: blur(0);
    pointer-events: auto;
}

.cummins-card-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
}

.cummins-card-media::before {
    content: '';
    position: absolute;
    width: min(74vw, 560px);
    height: min(74vw, 560px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 220, 255, 0.22), rgba(0, 45, 114, 0.08) 43%, transparent 70%);
    filter: blur(8px);
}

.cummins-card-media img {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.24));
    transition: transform 0.6s var(--bezier), filter 0.6s var(--bezier);
}

.cummins-arrow {
    position: relative;
    z-index: 4;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(4, 25, 84, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
    color: #041954;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(4, 25, 84, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.32s var(--bezier), box-shadow 0.32s var(--bezier), background 0.32s var(--bezier), color 0.32s var(--bezier);
}

.cummins-arrow:hover,
.cummins-arrow:focus-visible {
    background: var(--azul-foton);
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 46px rgba(0, 45, 114, 0.22);
    outline: none;
}

.cummins-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.cummins-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 25, 84, 0.18);
    cursor: pointer;
    transition: width 0.32s var(--bezier), background 0.32s var(--bezier), transform 0.32s var(--bezier);
}

.cummins-dots button.is-active {
    width: 58px;
    background: var(--azul-foton);
}

.maps-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    height: auto !important;
    align-items: stretch;
}

.map-box,
.map-box iframe {
    min-height: 380px;
}

.dealer-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px !important;
}

.dealer-info-item:first-child,
.dealer-info-item:last-child {
    grid-column: 1 / -1;
}

@media (max-width: 1180px) {
    .maps-container {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 1024px) {
    .cummins-slider {
        grid-template-columns: 1fr !important;
    }

    .cummins-stage {
        min-height: 760px !important;
    }

    .cummins-slide {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .cummins-arrow {
        position: absolute;
        top: calc(50% - 27px);
    }

    .cummins-arrow-prev {
        left: -4px;
    }

    .cummins-arrow-next {
        right: -4px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3rem, 13vw, 4.1rem) !important;
    }

    .vehicle-page .spec-unit {
        font-size: clamp(1rem, 4.8vw, 1.32rem) !important;
    }

    .cummins-stage {
        min-height: 790px !important;
    }

    .cummins-slide {
        padding: 26px 18px 34px;
    }

    .cummins-card-media {
        min-height: 300px;
    }

    .cummins-arrow {
        width: 46px;
        height: 46px;
        top: auto;
        bottom: -64px;
    }

    .cummins-arrow-prev {
        left: calc(50% - 58px);
    }

    .cummins-arrow-next {
        right: calc(50% - 58px);
    }

    .cummins-dots {
        margin-top: 82px;
    }

    .dealer-info-list {
        grid-template-columns: 1fr;
    }

    .dealer-info-item:first-child,
    .dealer-info-item:last-child {
        grid-column: auto;
    }
}


.vehicle-page .spec-number,
.vehicle-page .counter,
.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 700 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

.vehicle-page .spec-number {
    font-size: clamp(3.7rem, 6.25vw, 5.55rem) !important;
    line-height: 0.98 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1.18rem, 1.75vw, 1.68rem) !important;
}

.cummins-experience {
    position: relative;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.cummins-container,
.cummins-content,
.cummins-visual {
    display: initial;
}

.cummins-header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--bezier), transform 0.8s var(--bezier);
}

.cummins-section.is-visible .cummins-header {
    opacity: 1;
    transform: translateY(0);
}

.cummins-lead {
    max-width: 640px;
    margin: 18px auto 0;
    color: #536070;
    font-size: clamp(1rem, 1.22vw, 1.14rem);
    font-weight: 600;
    line-height: 1.7;
}

.cummins-slider {
    position: relative;
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
}

.cummins-stage {
    position: relative;
    min-height: clamp(520px, 50vw, 610px);
    perspective: 1400px;
}

.cummins-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 78px);
    padding: clamp(32px, 4vw, 58px);
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(4, 25, 84, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.88)), #ffffff;
    box-shadow: 0 30px 86px rgba(4, 25, 84, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 26px, 0) scale(0.965);
    filter: blur(10px);
    pointer-events: none;
    transition: opacity 0.72s var(--bezier), visibility 0.72s var(--bezier), transform 0.72s var(--bezier), filter 0.72s var(--bezier);
}

.cummins-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.cummins-card-copy {
    position: relative;
    z-index: 2;
}

.cummins-card-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cummins-card-copy h3 {
    margin: 0 0 20px;
    color: #050505;
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: 1.02;
    font-weight: 800;
}

.cummins-card-copy p {
    max-width: 560px;
    margin: 0 0 24px;
    color: #3A4759;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    font-weight: 600;
    line-height: 1.72;
}

.cummins-card-copy strong {
    display: inline-flex;
    max-width: 540px;
    padding: 14px 18px;
    color: #041954;
    background: rgba(0, 45, 114, 0.065);
    border: 1px solid rgba(0, 45, 114, 0.1);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.cummins-card-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
}

.cummins-card-media::before {
    content: '';
    position: absolute;
    width: min(74vw, 560px);
    height: min(74vw, 560px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 220, 255, 0.22), rgba(0, 45, 114, 0.08) 43%, transparent 70%);
    filter: blur(8px);
}

.cummins-card-media img {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.24));
    transition: transform 0.6s var(--bezier), filter 0.6s var(--bezier);
}

.cummins-slide.is-active:hover .cummins-card-media img {
    transform: translateY(-8px) scale(1.018);
    filter: drop-shadow(0 44px 58px rgba(0, 0, 0, 0.28));
}

.cummins-arrow {
    position: relative;
    z-index: 4;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(4, 25, 84, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
    color: #041954;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(4, 25, 84, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.32s var(--bezier), box-shadow 0.32s var(--bezier), background 0.32s var(--bezier), color 0.32s var(--bezier);
}

.cummins-arrow span {
    display: block;
    margin-top: -3px;
    font-size: 2rem;
    line-height: 1;
}

.cummins-arrow:hover,
.cummins-arrow:focus-visible {
    background: var(--azul-foton);
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 46px rgba(0, 45, 114, 0.22);
    outline: none;
}

.cummins-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.cummins-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 25, 84, 0.18);
    cursor: pointer;
    transition: width 0.32s var(--bezier), background 0.32s var(--bezier), transform 0.32s var(--bezier);
}

.cummins-dots button.is-active {
    width: 58px;
    background: var(--azul-foton);
}

.maps-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto !important;
    align-items: stretch;
}

.map-box,
.map-box iframe {
    min-height: 380px;
}

.dealer-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px !important;
}

.dealer-info-item:first-child,
.dealer-info-item:last-child {
    grid-column: 1 / -1;
}

@media (max-width: 1180px) {
    .maps-container {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 1024px) {
    .cummins-slider {
        grid-template-columns: 1fr;
    }

    .cummins-stage {
        min-height: 760px;
    }

    .cummins-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cummins-card-copy p,
    .cummins-card-copy strong {
        margin-left: auto;
        margin-right: auto;
    }

    .cummins-arrow {
        position: absolute;
        top: calc(50% - 27px);
    }

    .cummins-arrow-prev {
        left: -4px;
    }

    .cummins-arrow-next {
        right: -4px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3rem, 13vw, 4.1rem) !important;
    }

    .vehicle-page .spec-unit {
        font-size: clamp(1rem, 4.8vw, 1.32rem) !important;
    }

    .cummins-stage {
        min-height: 790px;
    }

    .cummins-slide {
        padding: 26px 18px 34px;
    }

    .cummins-card-copy {
        text-align: left;
    }

    .cummins-card-copy p,
    .cummins-card-copy strong {
        margin-left: 0;
        margin-right: 0;
    }

    .cummins-card-media {
        min-height: 300px;
    }

    .cummins-arrow {
        width: 46px;
        height: 46px;
        top: auto;
        bottom: -64px;
    }

    .cummins-arrow-prev {
        left: calc(50% - 58px);
    }

    .cummins-arrow-next {
        right: calc(50% - 58px);
    }

    .cummins-dots {
        margin-top: 82px;
    }

    .dealer-info-list {
        grid-template-columns: 1fr;
    }

    .dealer-info-item:first-child,
    .dealer-info-item:last-child {
        grid-column: auto;
    }
}


.vehicle-page .spec-number,
.vehicle-page .counter,
.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 700 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

.vehicle-page .spec-number {
    font-size: clamp(3.7rem, 6.25vw, 5.55rem) !important;
    line-height: 0.98 !important;
}

.vehicle-page .spec-unit {
    font-size: clamp(1.18rem, 1.75vw, 1.68rem) !important;
    margin-left: 8px;
}

.cummins-section {
    padding: clamp(88px, 10vw, 132px) clamp(18px, 5.2vw, 92px) !important;
    background:
        radial-gradient(circle at 74% 42%, rgba(16, 220, 255, 0.13), transparent 28%),
        radial-gradient(circle at 14% 8%, rgba(0, 45, 114, 0.07), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fc 52%, #eef3f8 100%) !important;
}

.cummins-experience {
    position: relative;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.cummins-header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--bezier), transform 0.8s var(--bezier);
}

.cummins-section.is-visible .cummins-header {
    opacity: 1;
    transform: translateY(0);
}

.cummins-lead {
    max-width: 640px;
    margin: 18px auto 0;
    color: #536070;
    font-size: clamp(1rem, 1.22vw, 1.14rem);
    font-weight: 600;
    line-height: 1.7;
}

.cummins-slider {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
}

.cummins-stage {
    position: relative;
    min-height: clamp(520px, 50vw, 610px);
    perspective: 1400px;
}

.cummins-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 78px);
    padding: clamp(32px, 4vw, 58px);
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(4, 25, 84, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.88)),
        #ffffff;
    box-shadow: 0 30px 86px rgba(4, 25, 84, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 26px, 0) scale(0.965);
    filter: blur(10px);
    pointer-events: none;
    transition:
        opacity 0.72s var(--bezier),
        visibility 0.72s var(--bezier),
        transform 0.72s var(--bezier),
        filter 0.72s var(--bezier);
}

.cummins-slide::before {
    content: '';
    position: absolute;
    inset: auto -8% -28% 42%;
    height: 58%;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(16, 220, 255, 0.18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.cummins-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.cummins-card-copy {
    position: relative;
    z-index: 2;
}

.cummins-card-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cummins-card-copy h3 {
    margin: 0 0 20px;
    color: #050505;
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: 1.02;
    font-weight: 800;
}

.cummins-card-copy p {
    max-width: 560px;
    margin: 0 0 24px;
    color: #3A4759;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    font-weight: 600;
    line-height: 1.72;
}

.cummins-card-copy strong {
    display: inline-flex;
    max-width: 540px;
    padding: 14px 18px;
    color: #041954;
    background: rgba(0, 45, 114, 0.065);
    border: 1px solid rgba(0, 45, 114, 0.1);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.cummins-card-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
}

.cummins-card-media::before {
    content: '';
    position: absolute;
    width: min(74vw, 560px);
    height: min(74vw, 560px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 220, 255, 0.22), rgba(0, 45, 114, 0.08) 43%, transparent 70%);
    filter: blur(8px);
}

.cummins-card-media img {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.24));
    transform: translateZ(0);
    transition: transform 0.6s var(--bezier), filter 0.6s var(--bezier);
}

.cummins-slide.is-active:hover .cummins-card-media img {
    transform: translateY(-8px) scale(1.018);
    filter: drop-shadow(0 44px 58px rgba(0, 0, 0, 0.28));
}

.cummins-arrow {
    position: relative;
    z-index: 4;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(4, 25, 84, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
    color: #041954;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(4, 25, 84, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.32s var(--bezier), box-shadow 0.32s var(--bezier), background 0.32s var(--bezier), color 0.32s var(--bezier);
}

.cummins-arrow span {
    display: block;
    margin-top: -3px;
    font-size: 2rem;
    line-height: 1;
}

.cummins-arrow:hover,
.cummins-arrow:focus-visible {
    background: var(--azul-foton);
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 46px rgba(0, 45, 114, 0.22);
    outline: none;
}

.cummins-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.cummins-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 25, 84, 0.18);
    cursor: pointer;
    transition: width 0.32s var(--bezier), background 0.32s var(--bezier), transform 0.32s var(--bezier);
}

.cummins-dots button.is-active {
    width: 58px;
    background: var(--azul-foton);
}

.cummins-dots button:hover {
    transform: translateY(-2px);
}

.contato-info {
    display: grid;
    align-content: start;
}

.unidade-card {
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 45, 114, 0.08);
}

.unidade-card:last-child {
    border-bottom: 0;
}

.telefone-unidade {
    margin-top: 8px !important;
}

.telefone-unidade strong {
    color: #041954;
}

.maps-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto !important;
    align-items: stretch;
}

.map-box {
    min-height: 380px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.dealer-card {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 54px rgba(4, 25, 84, 0.09) !important;
}

.dealer-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px !important;
}

.dealer-info-item:first-child,
.dealer-info-item:last-child {
    grid-column: 1 / -1;
}

.dealer-map iframe {
    min-height: 410px !important;
}

@media (max-width: 1180px) {
    .maps-container {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 1024px) {
    .cummins-slider {
        grid-template-columns: 1fr;
    }

    .cummins-stage {
        min-height: 760px;
    }

    .cummins-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cummins-card-copy p,
    .cummins-card-copy strong {
        margin-left: auto;
        margin-right: auto;
    }

    .cummins-arrow {
        position: absolute;
        top: calc(50% - 27px);
    }

    .cummins-arrow-prev {
        left: -4px;
    }

    .cummins-arrow-next {
        right: -4px;
    }

    .dealer-card {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3rem, 13vw, 4.1rem) !important;
    }

    .vehicle-page .spec-unit {
        font-size: clamp(1rem, 4.8vw, 1.32rem) !important;
    }

    .cummins-section {
        padding: 74px 14px 84px !important;
    }

    .cummins-header {
        margin-bottom: 30px;
    }

    .cummins-stage {
        min-height: 790px;
    }

    .cummins-slide {
        padding: 26px 18px 34px;
        border-radius: 12px;
    }

    .cummins-card-copy {
        text-align: left;
    }

    .cummins-card-copy p,
    .cummins-card-copy strong {
        margin-left: 0;
        margin-right: 0;
    }

    .cummins-card-copy strong {
        border-radius: 10px;
    }

    .cummins-card-media {
        min-height: 300px;
    }

    .cummins-arrow {
        width: 46px;
        height: 46px;
        top: auto;
        bottom: -64px;
    }

    .cummins-arrow-prev {
        left: calc(50% - 58px);
    }

    .cummins-arrow-next {
        right: calc(50% - 58px);
    }

    .cummins-dots {
        margin-top: 82px;
    }

    .dealer-info-list {
        grid-template-columns: 1fr;
    }

    .dealer-info-item:first-child,
    .dealer-info-item:last-child {
        grid-column: auto;
    }
}


.vehicle-page .spec-number {
    font-family: "Arial Black", Arial, Helvetica, sans-serif !important;
    font-size: clamp(4rem, 7vw, 6.4rem);
    font-weight: 900 !important;
    line-height: 0.92;
    letter-spacing: 0;
    color: #000000 !important;
    text-transform: uppercase;
    text-rendering: geometricPrecision;
}

.vehicle-page .counter {
    font-family: "Arial Black", Arial, Helvetica, sans-serif !important;
    font-weight: 900 !important;
    color: #000000 !important;
}

.vehicle-page .spec-unit {
    font-family: "Arial Black", Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-weight: 900 !important;
    color: #000000 !important;
    letter-spacing: 0;
    margin-left: 8px;
}

.vehicle-page .spec-desc {
    color: #3A4759;
    font-weight: 700;
}

.dealers-page {
    background: #ffffff;
    color: #000000;
}

.dealers-page .navbar {
    background: var(--azul-foton);
}

.dealers-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 24px 96px;
    background:
        radial-gradient(circle at 50% 34%, rgba(16, 220, 255, 0.18), transparent 32%),
        radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #002d72 0%, #041954 56%, #000712 100%);
    isolation: isolate;
}

.dealers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.34)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(0, 0, 0, 0.16));
}

.dealers-hero-inner {
    width: min(100%, 1120px);
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--bezier), transform 0.9s var(--bezier);
    animation: dealersHeroEnter 0.9s var(--bezier) 0.18s forwards;
}

.dealers-hero.is-visible .dealers-hero-inner {
    opacity: 1;
    transform: translateY(0);
}

@keyframes dealersHeroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dealers-eyebrow {
    margin-bottom: 18px;
    color: var(--azul-pristine);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dealers-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Arial Black", Arial, Helvetica, sans-serif;
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.dealers-subtitle {
    max-width: 760px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 700;
    line-height: 1.65;
}

.dealers-section {
    position: relative;
    z-index: 2;
    margin-top: -36px;
    padding: 86px 24px 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    border-radius: 28px 28px 0 0;
}

.dealers-container {
    width: min(100%, 1240px);
    margin: 0 auto;
}

.dealers-intro {
    max-width: 760px;
    margin-bottom: 42px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--bezier), transform 0.75s var(--bezier);
}

.dealers-section.is-visible .dealers-intro {
    opacity: 1;
    transform: translateY(0);
}

.dealers-intro span {
    display: block;
    margin-bottom: 10px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dealers-intro h2 {
    margin: 0;
    color: #000000;
    font-family: "Arial Black", Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.dealers-intro p {
    margin-top: 16px;
    color: #3A4759;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.65;
}

.dealers-grid {
    display: grid;
    gap: 26px;
}

.dealer-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: 0;
    min-height: 390px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(4, 25, 84, 0.08);
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(4, 25, 84, 0.11);
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s var(--bezier), transform 0.75s var(--bezier), box-shadow 0.42s var(--bezier), border-color 0.42s var(--bezier);
}

.dealers-section.is-visible .dealer-card {
    opacity: 1;
    transform: translateY(0);
}

.dealers-section.is-visible .dealer-card:nth-child(2) {
    transition-delay: 0.12s;
}

.dealers-section.is-visible .dealer-card:nth-child(3) {
    transition-delay: 0.24s;
}

.dealer-card:hover {
    border-color: rgba(0, 45, 114, 0.22);
    box-shadow: 0 30px 72px rgba(4, 25, 84, 0.17);
    transform: translateY(-6px);
}

.dealer-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 4vw, 46px);
}

.dealer-city span {
    display: block;
    margin-bottom: 8px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dealer-city h3 {
    margin: 0;
    color: #000000;
    font-family: "Arial Black", Arial, Helvetica, sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.dealer-info-list {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.dealer-info-item strong {
    display: block;
    margin-bottom: 6px;
    color: #041954;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dealer-info-item p,
.dealer-info-item a {
    color: #293241;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
    text-decoration: none;
}

.dealer-info-item a:hover {
    color: var(--azul-foton);
}

.dealer-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    padding: 14px 24px;
    color: #ffffff;
    background: var(--azul-foton);
    border: 1px solid var(--azul-foton);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.35s var(--bezier), box-shadow 0.35s var(--bezier), background 0.35s var(--bezier);
}

.dealer-map-button:hover {
    background: #041954;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 45, 114, 0.24);
}

.dealer-map {
    position: relative;
    min-height: 100%;
    background: #e9eef5;
}

.dealer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
    filter: saturate(0.9) contrast(1.02);
}

@media (max-width: 1024px) {
    .dealers-hero {
        min-height: 58vh;
        padding-top: 128px;
    }

    .dealer-card {
        grid-template-columns: 1fr;
    }

    .dealer-map iframe {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3.3rem, 16vw, 4.7rem);
    }

    .vehicle-page .spec-unit {
        display: inline-block;
        font-size: clamp(1.15rem, 6vw, 1.55rem);
        margin-left: 4px;
    }

    .dealers-hero {
        min-height: 62vh;
        padding: 118px 18px 76px;
    }

    .dealers-section {
        margin-top: -24px;
        padding: 58px 16px 82px;
        border-radius: 18px 18px 0 0;
    }

    .dealer-card-content {
        padding: 26px 20px;
    }

    .dealer-map-button {
        width: 100%;
    }

    .dealer-map iframe {
        min-height: 280px;
    }
}


.vehicle-page .spec-number {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(3.85rem, 6.6vw, 5.9rem) !important;
    font-weight: 800 !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    color: #000000 !important;
}

.vehicle-page .counter {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 800 !important;
    color: #000000 !important;
}

.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.28rem, 1.95vw, 1.82rem) !important;
    font-weight: 800 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

.dealers-page {
    background: #f7f9fc !important;
}

.dealers-page .navbar {
    background: var(--azul-foton) !important;
}

.dealers-hero {
    display: none !important;
}

.dealers-section {
    margin-top: 0 !important;
    padding: clamp(132px, 15vh, 170px) 24px 118px !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 45, 114, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%) !important;
    border-radius: 0 !important;
}

.dealers-container {
    width: min(100%, 1180px) !important;
}

.dealers-intro {
    max-width: 720px !important;
    margin: 0 auto 58px !important;
    text-align: center !important;
    opacity: 1 !important;
    transform: none !important;
}

.dealers-intro span {
    margin-bottom: 14px !important;
    color: var(--azul-foton) !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.dealers-intro h2 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(2.15rem, 4.2vw, 4rem) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.dealers-intro p {
    max-width: 560px !important;
    margin: 18px auto 0 !important;
    color: #536070 !important;
    font-weight: 600 !important;
}

.dealer-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr) !important;
    min-height: 370px !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 48px rgba(4, 25, 84, 0.08) !important;
}

.dealer-card:hover {
    box-shadow: 0 28px 66px rgba(4, 25, 84, 0.13) !important;
}

.dealer-city h3 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

.dealer-map-button {
    font-weight: 800 !important;
}

.cummins-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(90px, 11vw, 140px) clamp(22px, 6vw, 110px);
    background:
        radial-gradient(circle at 76% 48%, rgba(16, 220, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fb 52%, #eef3f8 100%);
    color: #000000;
}

.cummins-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 45, 114, 0.06), transparent 28%, rgba(0, 0, 0, 0.03));
}

.cummins-container {
    position: relative;
    width: min(100%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.cummins-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--bezier), transform 0.8s var(--bezier);
}

.cummins-section.is-visible .cummins-content {
    opacity: 1;
    transform: translateY(0);
}

.cummins-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--azul-foton);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cummins-title {
    margin: 0 0 26px;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.45rem, 5.2vw, 5.1rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
}

.cummins-text {
    max-width: 650px;
    margin: 0 0 18px;
    color: #3A4759;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    font-weight: 600;
    line-height: 1.75;
}

.cummins-points {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.cummins-point {
    padding: 18px 20px;
    border: 1px solid rgba(0, 45, 114, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 34px rgba(4, 25, 84, 0.06);
    transition: transform 0.35s var(--bezier), border-color 0.35s var(--bezier), box-shadow 0.35s var(--bezier);
}

.cummins-point:hover {
    transform: translateX(6px);
    border-color: rgba(0, 45, 114, 0.22);
    box-shadow: 0 18px 42px rgba(4, 25, 84, 0.1);
}

.cummins-point strong {
    display: block;
    margin-bottom: 6px;
    color: #050505;
    font-size: 1rem;
    font-weight: 800;
}

.cummins-point span {
    display: block;
    color: #566171;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
}

.cummins-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(34px) scale(0.98);
    transition: opacity 0.9s var(--bezier) 0.12s, transform 0.9s var(--bezier) 0.12s;
}

.cummins-section.is-visible .cummins-visual {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cummins-glow {
    position: absolute;
    width: min(72vw, 620px);
    height: min(72vw, 620px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 220, 255, 0.22), rgba(0, 45, 114, 0.08) 42%, transparent 68%);
    filter: blur(8px);
    pointer-events: none;
}

.cummins-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.24));
    transition: transform 0.55s var(--bezier), filter 0.55s var(--bezier);
}

.cummins-visual:hover img {
    transform: translateY(-8px) scale(1.018);
    filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.28));
}

@media (max-width: 1024px) {
    .dealers-section {
        padding-top: 118px !important;
    }

    .dealer-card,
    .cummins-container {
        grid-template-columns: 1fr !important;
    }

    .cummins-content {
        text-align: center;
    }

    .cummins-text {
        margin-left: auto;
        margin-right: auto;
    }

    .cummins-visual {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .vehicle-page .spec-number {
        font-size: clamp(3.15rem, 14vw, 4.35rem) !important;
    }

    .vehicle-page .spec-unit {
        display: inline-block;
        font-size: clamp(1.05rem, 5vw, 1.42rem) !important;
        margin-left: 4px;
    }

    .dealers-section {
        padding: 104px 16px 78px !important;
    }

    .dealers-intro {
        margin-bottom: 36px !important;
    }

    .dealer-card-content {
        padding: 26px 20px !important;
    }

    .dealer-map-button {
        width: 100% !important;
    }

    .dealer-map iframe {
        min-height: 280px !important;
    }

    .cummins-section {
        padding: 74px 18px 82px;
    }

    .cummins-content {
        text-align: left;
    }

    .cummins-title {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .cummins-visual {
        min-height: 280px;
    }
}


.vehicle-page .spec-number,
.vehicle-page .counter,
.vehicle-page .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
    color: #000000 !important;
    letter-spacing: 0 !important;
}

body.vehicle-page .aumark-specs-section .spec-number,
body.vehicle-page .specs-content .spec-number,
body.vehicle-page .counter {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(3.05rem, 5.15vw, 4.65rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    color: #000000 !important;
}

body.vehicle-page .aumark-specs-section .spec-unit,
body.vehicle-page .specs-content .spec-unit {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 600 !important;
    font-size: clamp(0.95rem, 1.35vw, 1.28rem) !important;
    letter-spacing: 0.02em !important;
    color: #000000 !important;
}

/* Consentimento obrigatorio de cookies */
.lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 16px;
    color: #46536a;
    font-size: 0.82rem;
    line-height: 1.45;
    cursor: pointer;
}

.lead-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--azul-foton);
}

.lead-consent input:focus-visible {
    outline: 3px solid rgba(0, 94, 255, 0.24);
    outline-offset: 2px;
}

form[data-lead-form] .lead-consent {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    align-items: start !important;
    justify-content: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 4px 0 16px !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow: visible !important;
}

form[data-lead-form] .lead-consent input[type="checkbox"] {
    appearance: auto !important;
    display: block !important;
    position: static !important;
    flex: none !important;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;
    transform: none !important;
}

form[data-lead-form] .lead-consent span {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
}

.contato-form .lead-consent {
    color: #ffffff !important;
}

.td-form .lead-consent {
    color: #374151 !important;
}

@media (max-width: 640px) {
    form[data-lead-form] .lead-consent {
        grid-template-columns: 22px minmax(0, 1fr) !important;
        gap: 10px !important;
        margin: 6px 0 14px !important;
    }

    form[data-lead-form] .lead-consent input[type="checkbox"] {
        width: 22px !important;
        min-width: 22px !important;
        max-width: 22px !important;
        height: 22px !important;
        min-height: 22px !important;
        max-height: 22px !important;
    }

    form[data-lead-form] .lead-consent span {
        font-size: 0.8rem !important;
        line-height: 1.42 !important;
    }
}

body.cookie-lock {
    overflow: hidden !important;
}

.cookie-gate {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(14px, 2vw, 22px);
    font-family: Arial, Helvetica, sans-serif;
    transition: opacity 0.26s ease;
}

.cookie-gate.is-closing {
    opacity: 0;
    pointer-events: none;
}

.cookie-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 13, 35, 0.52);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.cookie-gate-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(26px, 5vw, 52px);
    width: min(1180px, 100%);
    padding: clamp(20px, 2.5vw, 26px) clamp(22px, 3vw, 34px);
    text-align: left;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(0, 45, 114, 0.12);
    border-radius: 8px;
    box-shadow: 0 28px 78px rgba(0, 15, 45, 0.32);
    animation: cookieDialogEnter 0.38s var(--bezier) both;
}

@keyframes cookieDialogEnter {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-gate-copy {
    max-width: 760px;
}

.cookie-gate-copy > span {
    display: block;
    margin-bottom: 7px;
    color: var(--azul-destaque);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-gate-dialog h2 {
    margin: 0;
    color: #061638;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0;
}

.cookie-gate-dialog p {
    margin: 7px 0 0;
    color: #4a576d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.cookie-gate-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-gate-accept,
.cookie-gate-reject {
    flex: 0 0 auto;
    width: auto;
    min-width: 132px;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid var(--azul-foton);
    border-radius: 999px;
    background: var(--azul-foton);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.26s var(--bezier), background 0.26s ease, box-shadow 0.26s ease;
}

.cookie-gate-accept {
    min-width: 194px;
}

.cookie-gate-reject {
    background: #ffffff;
    color: var(--azul-foton);
}

.cookie-gate-accept:hover,
.cookie-gate-reject:hover {
    transform: translateY(-2px);
}

.cookie-gate-accept:hover {
    background: var(--azul-destaque);
    box-shadow: 0 16px 30px rgba(0, 94, 255, 0.22);
}

.cookie-gate-reject:hover {
    background: #eef4ff;
}

.cookie-gate-accept:focus-visible,
.cookie-gate-reject:focus-visible {
    outline: 3px solid rgba(0, 94, 255, 0.26);
    outline-offset: 3px;
}

@media (max-width: 520px) {
    .cookie-gate {
        padding: 10px;
    }

    .cookie-gate-dialog {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: calc(100vw - 20px);
        padding: 20px 16px 14px;
        overflow: hidden;
    }

    .cookie-gate-copy,
    .cookie-gate-actions {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .cookie-gate-dialog p {
        margin-bottom: 16px;
        font-size: 0.88rem;
        overflow-wrap: anywhere;
    }

    .cookie-gate-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cookie-gate-accept,
    .cookie-gate-reject {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0 14px;
        white-space: normal;
    }
}


.cummins-section {
    padding: clamp(84px, 9vw, 132px) 24px !important;
    background:
        radial-gradient(circle at 82% 24%, rgba(13, 101, 255, 0.13), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 52%, #ffffff 100%) !important;
}

.cummins-experience {
    max-width: 1260px !important;
    margin: 0 auto !important;
}

.cummins-header {
    max-width: 700px !important;
    margin-bottom: clamp(34px, 5vw, 58px) !important;
}

.cummins-title {
    font-weight: 760 !important;
    letter-spacing: 0 !important;
}

.cummins-slider {
    display: block !important;
    position: relative !important;
}

.cummins-arrow,
.cummins-dots {
    display: none !important;
}

.cummins-stage {
    position: relative !important;
    min-height: 0 !important;
}

.cummins-slide {
    display: none !important;
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-height: auto !important;
    padding: clamp(24px, 3.6vw, 48px) !important;
    border: 1px solid rgba(0, 45, 114, 0.1) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92)),
        radial-gradient(circle at 88% 18%, rgba(0, 102, 255, 0.12), transparent 30%) !important;
    box-shadow: 0 30px 78px rgba(4, 20, 55, 0.11) !important;
    overflow: hidden !important;
}

.cummins-slide.is-active {
    display: grid !important;
    grid-template-columns: minmax(340px, 0.82fr) minmax(470px, 1.18fr) !important;
    gap: clamp(34px, 5vw, 76px) !important;
    align-items: center !important;
}

.cummins-slide::before {
    content: '' !important;
    position: absolute !important;
    inset: 12% -18% -18% 58% !important;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.2), transparent 64%) !important;
    filter: blur(16px) !important;
    pointer-events: none !important;
}

.cummins-card-copy {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
    padding: clamp(22px, 3vw, 34px) !important;
    border: 1px solid rgba(0, 45, 114, 0.08) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 18px 42px rgba(5, 20, 50, 0.08) !important;
    backdrop-filter: blur(16px) !important;
}

.cummins-card-kicker {
    color: var(--azul-foton) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
}

.cummins-card-copy h3 {
    color: #050505 !important;
    font-size: clamp(2rem, 3.2vw, 3.35rem) !important;
    line-height: 1.02 !important;
    font-weight: 760 !important;
    letter-spacing: 0 !important;
    margin: 18px 0 18px !important;
}

.cummins-card-copy p {
    color: #3c4655 !important;
    font-size: clamp(1rem, 1.1vw, 1.1rem) !important;
    line-height: 1.72 !important;
    font-weight: 500 !important;
}

.cummins-card-copy strong {
    display: inline-flex !important;
    margin-top: 24px !important;
    padding: 12px 16px !important;
    border-radius: 999px !important;
    background: rgba(0, 45, 114, 0.07) !important;
    color: var(--azul-foton) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.cummins-card-media {
    position: sticky !important;
    top: 118px !important;
    z-index: 2 !important;
    align-self: start !important;
    min-height: 420px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cummins-card-media img {
    width: min(100%, 660px) !important;
    max-height: 520px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 36px 46px rgba(0, 0, 0, 0.24)) !important;
    transform: translateZ(0) !important;
    transition: transform 0.45s var(--bezier), filter 0.45s var(--bezier) !important;
}

.cummins-slide.is-active:hover .cummins-card-media img {
    transform: translateY(-8px) scale(1.015) !important;
    filter: drop-shadow(0 44px 58px rgba(0, 0, 0, 0.28)) !important;
}

.contato-section {
    padding-bottom: clamp(78px, 8vw, 118px) !important;
}

.contato-container {
    align-items: flex-start !important;
    gap: clamp(36px, 5vw, 62px) !important;
}

.contato-form-wrapper {
    position: relative !important;
    top: auto !important;
    align-self: flex-start !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 30px 22px !important;
    border-radius: 16px !important;
}

.contato-form .form-row {
    margin-bottom: 16px !important;
}

.contato-form textarea {
    min-height: 96px !important;
}

.form-title {
    margin-bottom: 22px !important;
}

.contato-address-action {
    display: flex !important;
    justify-content: center !important;
    margin-top: 34px !important;
}

.btn-address-full {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: var(--azul-foton) !important;
    color: #ffffff !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 16px 34px rgba(0, 45, 114, 0.24) !important;
    transition: transform 0.28s var(--bezier), box-shadow 0.28s var(--bezier), background 0.28s var(--bezier) !important;
}

.btn-address-full:hover {
    transform: translateY(-2px) !important;
    background: var(--azul-destaque) !important;
    box-shadow: 0 22px 42px rgba(0, 94, 255, 0.24) !important;
}

.maps-container {
    display: none !important;
}

@media (max-width: 1024px) {
    .cummins-slide.is-active {
        grid-template-columns: 1fr !important;
    }

    .cummins-card-media {
        position: relative !important;
        top: auto !important;
        min-height: 320px !important;
        order: 2 !important;
    }

    .cummins-card-copy {
        order: 1 !important;
    }
}

@media (max-width: 768px) {
    body.vehicle-page .aumark-specs-section .spec-number,
    body.vehicle-page .specs-content .spec-number,
    body.vehicle-page .counter {
        font-size: clamp(2.55rem, 10.5vw, 3.55rem) !important;
        font-weight: 500 !important;
    }

    .cummins-section {
        padding: 72px 16px 82px !important;
    }

    .cummins-slide {
        padding: 20px 16px 26px !important;
        border-radius: 8px !important;
    }

    .cummins-card-copy {
        padding: 22px 18px !important;
    }

    .cummins-card-media {
        min-height: 260px !important;
    }

    .contato-form-wrapper {
        padding: 22px 16px !important;
    }

    .contato-form textarea {
        min-height: 88px !important;
    }
}


.cummins-static .cummins-stage {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(18px, 2vw, 26px) !important;
    min-height: 0 !important;
}

.cummins-static .cummins-slide,
.cummins-static .cummins-slide.is-active {
    display: block !important;
    position: relative !important;
    min-height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.cummins-static .cummins-slide.is-active {
    display: grid !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: minmax(340px, 0.84fr) minmax(480px, 1.16fr) !important;
    gap: clamp(34px, 5vw, 76px) !important;
    align-items: center !important;
}

/* ==============================
   PAGINA DE SERVICOS
   ============================== */
.services-page {
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f5f8fc 100%);
    color: #071633;
}

.services-page main {
    overflow: hidden;
}

.services-form-intro > span,
.services-review-copy > span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--azul-destaque);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-form-section {
    padding: 154px 24px 84px;
    position: relative;
}

.services-form-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.services-form-intro {
    padding-top: 10px;
    position: sticky;
    top: 126px;
}

.services-form-intro h1,
.services-review-copy h2 {
    color: var(--azul-foton);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: 0;
}

.services-form-intro p {
    max-width: 490px;
    margin-top: 18px;
    color: #40506a;
    font-size: 1.04rem;
    line-height: 1.75;
}

.services-proof-list {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.services-proof-list div {
    padding: 20px 22px;
    border: 1px solid rgba(0, 45, 114, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(10, 31, 68, 0.055);
    transition: transform 0.28s var(--bezier), border-color 0.28s var(--bezier), box-shadow 0.28s var(--bezier);
}

.services-proof-list div:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 94, 255, 0.2);
    box-shadow: 0 24px 50px rgba(10, 31, 68, 0.09);
}

.services-proof-list strong,
.services-proof-list small {
    display: block;
}

.services-proof-list strong {
    color: #061638;
    font-size: 0.98rem;
    font-weight: 800;
}

.services-proof-list small {
    margin-top: 6px;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.services-page .services-form-wrapper {
    max-width: none;
    margin: 0;
    padding: clamp(28px, 3vw, 42px);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(0, 45, 114, 0.96), rgba(0, 15, 42, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 72px rgba(0, 19, 48, 0.24);
}

.services-page .contato-form textarea {
    min-height: 112px;
}

.services-page .services-form-wrapper {
    align-self: start;
}

.services-page .services-form-wrapper .contato-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 16px;
}

.services-page .services-form-wrapper .form-title,
.services-page .services-form-wrapper .full-width,
.services-page .services-form-wrapper .btn-submit {
    grid-column: 1 / -1;
}

.services-page .services-form-wrapper .form-title {
    margin-bottom: 2px;
}

.services-page .services-form-wrapper .form-row {
    display: contents;
    margin: 0;
}

.services-page .services-form-wrapper .input-group {
    min-width: 0;
    margin: 0;
}

.services-page .services-form-wrapper label {
    margin-bottom: 6px;
    font-size: 0.78rem;
}

.services-page .services-form-wrapper input,
.services-page .services-form-wrapper select,
.services-page .services-form-wrapper textarea {
    min-height: 40px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 0.92rem;
}

.services-page .services-form-wrapper textarea {
    min-height: 86px;
    height: 86px;
    resize: vertical;
}

.services-page .services-form-wrapper .btn-submit {
    margin-top: 4px;
    min-height: 52px;
}

.parts-page .services-form-wrapper .contato-form {
    row-gap: 17px;
}

.parts-page .services-form-wrapper textarea {
    min-height: 100px;
    height: 100px;
}

.services-review-section {
    padding: 48px 24px 110px;
}

.services-review-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
}

.services-review-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #e8eef7;
    box-shadow: 0 30px 70px rgba(0, 45, 114, 0.16);
}

.services-review-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 24, 59, 0.16));
    pointer-events: none;
}

.services-review-media img {
    display: block;
    width: 100%;
    height: clamp(360px, 44vw, 540px);
    object-fit: cover;
    transition: transform 0.7s var(--bezier);
}

.services-review-grid:hover .services-review-media img {
    transform: scale(1.025);
}

.services-review-copy {
    padding: clamp(22px, 3vw, 36px) 0;
}

.services-review-copy p {
    margin-top: 20px;
    color: #34445d;
    font-size: 1.02rem;
    line-height: 1.82;
}

.btn-service-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 34px;
    border: none;
    border-radius: 999px;
    background: var(--azul-foton);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(0, 45, 114, 0.24);
    transition: transform 0.28s var(--bezier), box-shadow 0.28s var(--bezier), background 0.28s var(--bezier);
}

.btn-service-review:hover {
    text-decoration: none;
    transform: translateY(-2px);
    background: var(--azul-destaque);
    box-shadow: 0 24px 46px rgba(0, 94, 255, 0.22);
}

@media (max-width: 980px) {
    .services-form-grid,
    .services-review-grid {
        grid-template-columns: 1fr;
    }

    .services-form-section {
        padding-top: 126px;
    }

    .services-form-intro {
        position: static;
    }

    .services-review-media {
        order: 2;
    }

    .services-review-copy {
        order: 1;
        padding-bottom: 0;
    }

    .services-page .services-form-wrapper .contato-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-form-section {
        padding-top: 112px;
    }

    .services-form-section,
    .services-review-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-page .services-form-wrapper {
        padding: 22px 16px !important;
    }

    .services-page .services-form-wrapper .contato-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 14px;
    }

    .services-page .services-form-wrapper .mobile-pair-field {
        grid-column: auto;
    }

    .services-page .services-form-wrapper .fixed-department-field {
        display: none;
    }

    .services-page .contato-form .form-row {
        display: contents !important;
    }

    .services-page .contato-form .input-group {
        margin-bottom: 0;
    }

    .services-page .services-form-wrapper textarea,
    .parts-page .services-form-wrapper textarea {
        min-height: 92px;
        height: 92px;
    }

    .services-review-media img {
        height: 320px;
    }

    .btn-service-review {
        width: 100%;
    }
}

/* Cummins: garante separação entre card e imagem em todos os breakpoints */
.cummins-section:not(.cummins-static) .cummins-stage {
    isolation: isolate !important;
    overflow: visible !important;
}

.cummins-section:not(.cummins-static) .cummins-copy-stage {
    z-index: 5 !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy {
    position: relative !important;
    z-index: 6 !important;
    max-width: 100% !important;
}

.cummins-fixed-media {
    z-index: 1 !important;
    pointer-events: none !important;
}

.cummins-fixed-media img {
    max-width: 100% !important;
}

@media (min-width: 1101px) {
    .cummins-section:not(.cummins-static) .cummins-stage {
        grid-template-columns: minmax(390px, 0.9fr) minmax(420px, 1.1fr) !important;
        align-items: center !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        margin-right: 0 !important;
    }

    .cummins-fixed-media {
        grid-column: 2 !important;
        justify-self: end !important;
        width: 100% !important;
        max-width: 640px !important;
        overflow: hidden !important;
    }

    .cummins-fixed-media img {
        width: min(100%, 610px) !important;
        max-height: 500px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 1100px) {
    .cummins-section:not(.cummins-static) .cummins-stage {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .cummins-fixed-media {
        grid-column: 1 !important;
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        min-height: 260px !important;
        margin-top: 0 !important;
        overflow: hidden !important;
    }

    .cummins-fixed-media img {
        width: min(92vw, 520px) !important;
        max-height: 310px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 640px) {
    .cummins-fixed-media {
        min-height: 210px !important;
    }

    .cummins-fixed-media img {
        max-height: 230px !important;
    }
}

/* Showroom responsivo: filtros e cards adaptáveis em qualquer viewport */
.showroom-page {
    overflow-x: hidden;
}

.showroom-container {
    width: min(100%, 1600px);
    box-sizing: border-box;
}

.showroom-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 360px)) !important;
    justify-content: start;
    align-items: stretch;
    gap: clamp(28px, 3vw, 44px) !important;
    row-gap: clamp(54px, 6vw, 86px) !important;
}

.showroom-grid.has-few-cards {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 380px)) !important;
}

.porsche-card {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.porsche-card img {
    height: clamp(180px, 16vw, 245px) !important;
    max-height: 245px;
    object-fit: contain;
}

.porsche-card h2,
.spec-line strong,
.spec-line span,
.tech-link,
.card-actions-porsche button {
    overflow-wrap: anywhere;
}

.card-actions-porsche {
    margin-top: auto;
}

.filters-sidebar {
    border-radius: 18px;
}

@media (min-width: 1180px) {
    .showroom-grid.has-few-cards {
        max-width: 820px;
    }
}

@media (max-width: 1180px) {
    .showroom-header {
        padding-inline: clamp(18px, 4vw, 40px);
    }

    .showroom-container {
        gap: 42px !important;
        padding-inline: clamp(18px, 4vw, 32px) !important;
    }

    .showroom-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)) !important;
        justify-content: stretch;
    }
}

@media (max-width: 900px) {
    .showroom-page {
        padding-top: 112px !important;
    }

    .showroom-header {
        display: block;
        padding-bottom: 20px;
    }

    .showroom-title {
        font-size: clamp(1.75rem, 6vw, 2.35rem) !important;
        line-height: 1.08;
    }

    .showroom-container {
        margin-top: 24px !important;
    }

    .filters-sidebar {
        padding: 18px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 18px 42px rgba(4, 25, 84, 0.08);
    }

    .filter-group {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .filter-group h3 {
        margin-bottom: 12px;
    }

    .filter-label {
        display: inline-flex !important;
        width: auto;
        min-height: 42px;
        margin: 0 8px 10px 0 !important;
        padding: 10px 14px;
        border: 1px solid rgba(17, 24, 39, 0.12);
        border-radius: 999px;
        background: #ffffff;
        font-size: 0.92rem !important;
        line-height: 1.1;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .filter-label:has(input:checked) {
        border-color: var(--azul-foton);
        box-shadow: 0 10px 24px rgba(0, 45, 114, 0.14);
        color: var(--azul-foton);
        transform: translateY(-1px);
    }

    .filter-label input[type="radio"] {
        width: 16px !important;
        height: 16px !important;
    }

    .btn-reset-filter {
        max-width: 260px;
        margin-top: 8px !important;
        border-radius: 999px;
    }
}

@media (max-width: 640px) {
    .showroom-page {
        padding-top: 104px !important;
    }

    .showroom-header {
        padding-inline: 16px !important;
    }

    .showroom-container {
        padding-inline: 14px !important;
        margin-bottom: 72px !important;
        gap: 34px !important;
    }

    .filters-sidebar {
        padding: 16px 14px;
        margin-bottom: 0 !important;
    }

    .filter-label {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.86rem !important;
    }

    .showroom-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 58px !important;
    }

    .porsche-card {
        border-radius: 18px !important;
        padding: 24px 20px !important;
    }

    .porsche-card img {
        height: clamp(150px, 45vw, 220px) !important;
        margin-top: -62px !important;
        margin-bottom: 12px !important;
    }

    .porsche-card h2 {
        font-size: clamp(1.28rem, 6vw, 1.58rem) !important;
        line-height: 1.12;
    }

    .porsche-specs {
        margin-bottom: 18px !important;
    }

    .spec-line {
        margin-bottom: 12px !important;
    }

    .spec-line strong {
        font-size: 1.16rem !important;
    }

    .card-actions-porsche {
        flex-direction: column;
        gap: 10px !important;
    }

    .card-actions-porsche button {
        min-height: 48px;
        padding: 13px 14px !important;
    }
}

@media (max-width: 380px) {
    .filter-label {
        width: 100%;
        justify-content: flex-start;
    }

    .porsche-card {
        padding-inline: 16px !important;
    }
}

/* Showroom v2: cards fluidos sem encolher demais ao filtrar */
.showroom-container {
    display: grid !important;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) !important;
    gap: clamp(32px, 5vw, 72px) !important;
    align-items: start !important;
}

.showroom-grid,
.showroom-grid.has-few-cards,
.showroom-grid.is-filtered {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)) !important;
    justify-content: stretch !important;
    align-items: stretch !important;
    gap: clamp(36px, 3.4vw, 54px) !important;
    row-gap: clamp(62px, 6vw, 92px) !important;
}

.porsche-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: clamp(540px, 42vw, 630px) !important;
    padding: clamp(26px, 2.4vw, 34px) !important;
    border-radius: clamp(16px, 1.4vw, 22px) !important;
}

.porsche-card img {
    width: min(100%, 440px) !important;
    height: clamp(210px, 18vw, 285px) !important;
    max-height: none !important;
    margin: clamp(-76px, -5vw, -54px) auto clamp(14px, 1.8vw, 24px) !important;
    display: block !important;
    object-fit: contain !important;
}

.porsche-card-auman-1722 img {
    width: min(112%, 500px) !important;
    height: clamp(232px, 20vw, 318px) !important;
}

.showroom-grid .porsche-card-auman-heavy img {
    width: min(86%, 380px) !important;
    height: clamp(190px, 16vw, 248px) !important;
    margin-top: clamp(-56px, -4vw, -38px) !important;
}

.showroom-grid .porsche-card-auman-2632 img {
    width: min(82%, 365px) !important;
    height: clamp(184px, 15.5vw, 238px) !important;
}

.porsche-card h2 {
    font-size: clamp(1.45rem, 1.7vw, 1.8rem) !important;
    line-height: 1.08 !important;
}

.porsche-specs {
    flex: 1 1 auto !important;
}

.card-actions-porsche {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: auto !important;
}

.card-actions-porsche button {
    width: 100% !important;
    min-height: 50px !important;
}

@media (min-width: 1500px) {
    .showroom-grid,
    .showroom-grid.has-few-cards,
    .showroom-grid.is-filtered {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 370px), 1fr)) !important;
    }
}

@media (max-width: 1280px) {
    .showroom-container {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) !important;
        gap: 34px !important;
    }

    .showroom-grid,
    .showroom-grid.has-few-cards,
    .showroom-grid.is-filtered {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)) !important;
    }

    .porsche-card {
        min-height: clamp(520px, 48vw, 610px) !important;
    }
}

@media (max-width: 1024px) {
    .showroom-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 38px !important;
    }

    .filters-sidebar {
        width: 100% !important;
    }

    .showroom-grid,
    .showroom-grid.has-few-cards,
    .showroom-grid.is-filtered {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)) !important;
    }

    .porsche-card {
        min-height: clamp(500px, 56vw, 590px) !important;
    }
}

@media (max-width: 760px) {
    .showroom-grid,
    .showroom-grid.has-few-cards,
    .showroom-grid.is-filtered {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 62px !important;
    }

    .porsche-card {
        min-height: auto !important;
        padding: clamp(22px, 6vw, 30px) !important;
    }

    .porsche-card img {
        width: min(100%, 360px) !important;
        height: clamp(190px, 52vw, 255px) !important;
        margin-top: -58px !important;
    }

    .card-actions-porsche {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 420px) {
    .showroom-container {
        padding-inline: 12px !important;
    }

    .porsche-card img {
        height: clamp(170px, 50vw, 220px) !important;
    }
}

/* Mantém filtros com 1 ou 2 resultados proporcionais no desktop/tablet */
@media (min-width: 761px) {
    .showroom-grid.has-few-cards,
    .showroom-grid.has-few-cards.is-filtered {
        grid-template-columns: repeat(2, minmax(min(100%, 340px), 1fr)) !important;
        max-width: none !important;
        width: 100% !important;
        justify-content: start !important;
    }
}

.cummins-static .cummins-slide:not(.is-active) {
    padding: clamp(22px, 2.4vw, 30px) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92)),
        radial-gradient(circle at 100% 0%, rgba(0, 174, 239, 0.1), transparent 36%) !important;
    box-shadow: 0 18px 42px rgba(4, 20, 55, 0.08) !important;
    transition: transform 0.32s var(--bezier), box-shadow 0.32s var(--bezier), border-color 0.32s var(--bezier) !important;
}

.cummins-static .cummins-slide:not(.is-active):hover {
    transform: translateY(-6px) !important;
    border-color: rgba(0, 45, 114, 0.2) !important;
    box-shadow: 0 26px 58px rgba(4, 20, 55, 0.13) !important;
}

.cummins-static .cummins-slide:not(.is-active) .cummins-card-copy {
    height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.cummins-static .cummins-slide:not(.is-active) .cummins-card-copy h3 {
    margin: 14px 0 14px !important;
    font-size: clamp(1.32rem, 1.8vw, 1.75rem) !important;
    line-height: 1.08 !important;
    font-weight: 760 !important;
}

.cummins-static .cummins-slide:not(.is-active) .cummins-card-copy p {
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
}

.cummins-static .cummins-slide:not(.is-active) .cummins-card-copy strong {
    margin-top: 18px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--azul-foton) !important;
    line-height: 1.45 !important;
}

.cummins-static .cummins-slide:not(.is-active) .cummins-card-media {
    display: none !important;
}

.btn-address-full {
    min-height: 60px !important;
    min-width: min(100%, 340px) !important;
    padding: 0 42px !important;
    font-size: 0.96rem !important;
    letter-spacing: 0.06em !important;
}

@media (max-width: 1024px) {
    .cummins-static .cummins-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .cummins-static .cummins-slide.is-active {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .cummins-static .cummins-stage {
        grid-template-columns: 1fr !important;
    }

    .btn-address-full {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 58px !important;
        padding: 0 22px !important;
    }
}


.cummins-section:not(.cummins-static) .cummins-slider {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) 58px !important;
    align-items: center !important;
    gap: clamp(14px, 2vw, 24px) !important;
}

.cummins-section:not(.cummins-static) .cummins-arrow {
    display: flex !important;
    position: relative !important;
    z-index: 5 !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0, 45, 114, 0.18) !important;
    background: rgba(255, 255, 255, 0.84) !important;
    color: var(--azul-foton) !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 18px 40px rgba(4, 20, 55, 0.1) !important;
    backdrop-filter: blur(14px) !important;
    transition: transform 0.28s var(--bezier), background 0.28s var(--bezier), color 0.28s var(--bezier), box-shadow 0.28s var(--bezier) !important;
}

.cummins-section:not(.cummins-static) .cummins-arrow:hover,
.cummins-section:not(.cummins-static) .cummins-arrow:focus-visible {
    transform: translateY(-3px) scale(1.04) !important;
    background: var(--azul-foton) !important;
    color: #ffffff !important;
    box-shadow: 0 22px 50px rgba(0, 45, 114, 0.22) !important;
}

.cummins-section:not(.cummins-static) .cummins-arrow span {
    display: block !important;
    margin-top: -3px !important;
    font-size: 2.15rem !important;
    line-height: 1 !important;
}

.cummins-section:not(.cummins-static) .cummins-stage {
    position: relative !important;
    min-height: clamp(560px, 52vw, 650px) !important;
    perspective: 1400px !important;
    overflow: hidden !important;
}

.cummins-section:not(.cummins-static) .cummins-slide {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(330px, 0.82fr) minmax(460px, 1.18fr) !important;
    gap: clamp(32px, 5vw, 72px) !important;
    align-items: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(42px, 0, 0) scale(0.965) !important;
    transition: opacity 0.62s var(--bezier), visibility 0.62s var(--bezier), transform 0.62s var(--bezier) !important;
}

.cummins-section:not(.cummins-static) .cummins-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.cummins-section:not(.cummins-static) .cummins-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 28px !important;
}

.cummins-section:not(.cummins-static) .cummins-dots button {
    width: 32px !important;
    height: 4px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(0, 45, 114, 0.2) !important;
    cursor: pointer !important;
    transition: width 0.28s var(--bezier), background 0.28s var(--bezier), transform 0.28s var(--bezier) !important;
}

.cummins-section:not(.cummins-static) .cummins-dots button.is-active {
    width: 58px !important;
    background: var(--azul-foton) !important;
}

.models-section .typing-models {
    width: auto !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    border-right: 0 !important;
    white-space: normal !important;
}

.models-section .models-kicker {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 1024px) {
    .cummins-section:not(.cummins-static) .cummins-slider {
        grid-template-columns: 1fr !important;
    }

    .cummins-section:not(.cummins-static) .cummins-stage {
        min-height: clamp(720px, 92vw, 820px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-slide,
    .cummins-section:not(.cummins-static) .cummins-slide.is-active {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow {
        position: absolute !important;
        top: calc(50% - 29px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow-prev {
        left: -6px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow-next {
        right: -6px !important;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100% !important;
        overflow-x: clip !important;
    }

    .models-section {
        min-height: auto !important;
        padding-top: 72px !important;
        padding-bottom: 78px !important;
    }

    .models-header {
        padding: 0 18px 18px !important;
        margin-bottom: 18px !important;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3.1rem) !important;
        line-height: 1.04 !important;
    }

    .models-kicker {
        margin-top: 12px !important;
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
    }

    .cummins-section:not(.cummins-static) .cummins-stage {
        min-height: 820px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-slide {
        padding: 24px 18px 32px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-media {
        min-height: 250px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow {
        width: 48px !important;
        height: 48px !important;
        top: auto !important;
        bottom: -62px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow-prev {
        left: calc(50% - 60px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow-next {
        right: calc(50% - 60px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-dots {
        margin-top: 88px !important;
        flex-wrap: wrap !important;
    }
}


.cummins-section:not(.cummins-static) .cummins-stage {
    display: grid !important;
    grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr) !important;
    gap: clamp(34px, 5vw, 76px) !important;
    align-items: center !important;
    min-height: clamp(440px, 44vw, 560px) !important;
    overflow: visible !important;
    perspective: none !important;
}

.cummins-copy-stage {
    position: relative !important;
    min-height: clamp(390px, 35vw, 470px) !important;
    z-index: 2 !important;
}

.cummins-section:not(.cummins-static) .cummins-slide {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    align-items: stretch !important;
    min-height: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
}

.cummins-section:not(.cummins-static) .cummins-slide .cummins-card-media {
    display: none !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy {
    min-height: clamp(390px, 35vw, 470px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: visible !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy h3 {
    font-size: clamp(1.95rem, 2.8vw, 3.05rem) !important;
    line-height: 1.06 !important;
    margin: 18px 0 16px !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy p {
    font-size: clamp(0.98rem, 1.05vw, 1.08rem) !important;
    line-height: 1.68 !important;
    margin: 0 !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy strong {
    align-self: flex-start !important;
    max-width: 100% !important;
    line-height: 1.42 !important;
}

.cummins-fixed-media {
    position: sticky !important;
    top: 118px !important;
    z-index: 2 !important;
    min-height: clamp(390px, 35vw, 520px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}

.cummins-fixed-media img {
    position: relative !important;
    z-index: 2 !important;
    width: min(100%, 660px) !important;
    max-height: 520px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 38px 52px rgba(0, 0, 0, 0.26)) !important;
    transform: translateZ(0) !important;
    transition: transform 0.45s var(--bezier), filter 0.45s var(--bezier) !important;
}

.cummins-fixed-media:hover img {
    transform: translateY(-8px) scale(1.015) !important;
    filter: drop-shadow(0 46px 62px rgba(0, 0, 0, 0.3)) !important;
}

.cummins-fixed-glow {
    position: absolute !important;
    width: min(68vw, 560px) !important;
    height: min(68vw, 560px) !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.22), rgba(0, 45, 114, 0.08) 44%, transparent 68%) !important;
    filter: blur(12px) !important;
    pointer-events: none !important;
}

@media (max-width: 1024px) {
    .cummins-section:not(.cummins-static) .cummins-stage {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .cummins-copy-stage,
    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: 420px !important;
    }

    .cummins-fixed-media {
        position: relative !important;
        top: auto !important;
        min-height: 330px !important;
        margin-top: 24px !important;
    }
}

@media (max-width: 768px) {
    .cummins-copy-stage,
    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: 470px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        padding: 24px 18px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy h3 {
        font-size: clamp(1.68rem, 8vw, 2.35rem) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy p {
        font-size: 0.95rem !important;
        line-height: 1.58 !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy strong {
        margin-top: 18px !important;
        padding: 10px 12px !important;
        font-size: 0.82rem !important;
    }

    .cummins-fixed-media {
        min-height: 250px !important;
        margin-top: 14px !important;
    }

    .cummins-fixed-media img {
        max-height: 270px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow {
        bottom: -56px !important;
    }
}

.dealer-map-deferred {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    background:
        linear-gradient(135deg, rgba(4, 25, 84, 0.08), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at 18% 20%, rgba(0, 119, 255, 0.16), transparent 36%),
        #eef3f8;
}

.dealer-map-deferred::before {
    content: "Carregando mapa...";
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    color: #041954;
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    pointer-events: none;
}

.dealer-map-deferred iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100% !important;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.dealer-map-deferred.is-loaded iframe {
    opacity: 1;
    pointer-events: auto;
}

.dealer-map-deferred.is-loaded::before {
    display: none;
}

@media (max-width: 768px) {
    .dealer-map-deferred {
        min-height: 240px;
    }

    .dealer-map-deferred::before {
        top: 22px;
        left: 18px;
        right: 18px;
        font-size: 0.9rem;
    }
}

.dealers-page .dealers-section,
.dealers-page .dealers-intro,
.dealers-page .dealer-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.dealers-page .dealer-card {
    transition: box-shadow 0.28s ease, border-color 0.28s ease !important;
}

@media (hover: hover) and (pointer: fine) {
    .dealers-page .dealer-card:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 820px), (hover: none) and (pointer: coarse) {
    .dealers-page .dealer-card {
        display: block !important;
        min-height: 0 !important;
    }

    .dealers-page .dealer-map {
        display: none !important;
    }
}

/* Ajuste final da experiencia Cummins para tablets e mobile */
.cummins-section:not(.cummins-static) .cummins-copy-stage {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 1100px) {
    .cummins-section:not(.cummins-static) {
        padding-top: clamp(72px, 10vw, 110px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-stage {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .cummins-section:not(.cummins-static) .cummins-copy-stage,
    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: auto !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        padding: clamp(28px, 5vw, 46px) !important;
        text-align: left !important;
    }

    .cummins-fixed-media {
        position: relative !important;
        top: auto !important;
        min-height: clamp(280px, 44vw, 400px) !important;
        margin-top: 8px !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    .cummins-fixed-media img {
        width: min(92%, 520px) !important;
        max-height: clamp(250px, 42vw, 390px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow {
        bottom: auto !important;
        top: calc(100% + 18px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-dots {
        margin-top: 72px !important;
    }
}

@media (max-width: 640px) {
    .cummins-section:not(.cummins-static) {
        padding: 78px 16px 70px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-header {
        margin-bottom: 28px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-title {
        font-size: clamp(2.15rem, 11vw, 3.2rem) !important;
        line-height: 1.04 !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        padding: 28px 22px !important;
        border-radius: 18px !important;
        align-items: flex-start !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy h3 {
        font-size: clamp(1.75rem, 8vw, 2.28rem) !important;
        line-height: 1.12 !important;
        margin: 16px 0 14px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy p {
        font-size: 0.96rem !important;
        line-height: 1.62 !important;
        text-align: left !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy strong {
        width: 100% !important;
        padding: 12px 14px !important;
        font-size: 0.82rem !important;
        text-align: center !important;
        white-space: normal !important;
    }

    .cummins-fixed-media {
        min-height: 245px !important;
    }

    .cummins-fixed-media img {
        width: min(96%, 390px) !important;
        max-height: 245px !important;
    }
}

/* Cummins final: separacao real entre texto e imagem */
.cummins-section:not(.cummins-static) {
    overflow: hidden !important;
}

.cummins-section:not(.cummins-static) .cummins-slider {
    grid-template-columns: 56px minmax(0, 1fr) 56px !important;
    align-items: center !important;
}

.cummins-section:not(.cummins-static) .cummins-stage {
    display: grid !important;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr) !important;
    gap: clamp(34px, 5vw, 72px) !important;
    align-items: center !important;
    min-height: clamp(430px, 42vw, 560px) !important;
    overflow: visible !important;
}

.cummins-section:not(.cummins-static) .cummins-copy-stage {
    position: relative !important;
    z-index: 4 !important;
    min-width: 0 !important;
    min-height: clamp(400px, 36vw, 480px) !important;
}

.cummins-section:not(.cummins-static) .cummins-slide {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    min-height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(20px, 0, 0) scale(0.985) !important;
}

.cummins-section:not(.cummins-static) .cummins-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.cummins-section:not(.cummins-static) .cummins-slide .cummins-card-media {
    display: none !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    min-height: clamp(400px, 36vw, 480px) !important;
    padding: clamp(34px, 4vw, 58px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy h3,
.cummins-section:not(.cummins-static) .cummins-card-copy p,
.cummins-section:not(.cummins-static) .cummins-card-copy strong,
.cummins-section:not(.cummins-static) .cummins-card-kicker {
    position: relative !important;
    z-index: 2 !important;
}

.cummins-section:not(.cummins-static) .cummins-fixed-media {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
    min-width: 0 !important;
    min-height: clamp(360px, 36vw, 520px) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(232,244,255,0.88)) !important;
}

.cummins-section:not(.cummins-static) .cummins-fixed-media img {
    width: min(92%, 620px) !important;
    max-height: clamp(320px, 35vw, 500px) !important;
    object-fit: contain !important;
    transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 1040px) {
    .cummins-section:not(.cummins-static) .cummins-slider {
        grid-template-columns: 1fr !important;
    }

    .cummins-section:not(.cummins-static) .cummins-stage {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        min-height: auto !important;
    }

    .cummins-section:not(.cummins-static) .cummins-copy-stage,
    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: auto !important;
    }

    .cummins-section:not(.cummins-static) .cummins-copy-stage {
        height: clamp(390px, 48vw, 470px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: clamp(390px, 48vw, 470px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media {
        min-height: clamp(250px, 38vw, 360px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media img {
        width: min(86%, 500px) !important;
        max-height: clamp(230px, 34vw, 330px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow {
        position: absolute !important;
        top: auto !important;
        bottom: -58px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow-prev {
        left: calc(50% - 62px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow-next {
        right: calc(50% - 62px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-dots {
        margin-top: 84px !important;
    }
}

@media (max-width: 560px) {
    .cummins-section:not(.cummins-static) .cummins-copy-stage {
        height: auto !important;
        min-height: 430px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: 430px !important;
        padding: 26px 20px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy h3 {
        font-size: clamp(1.55rem, 7.2vw, 2.1rem) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy p {
        font-size: 0.94rem !important;
        line-height: 1.56 !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media {
        min-height: 220px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media img {
        width: min(96%, 360px) !important;
        max-height: 215px !important;
    }
}

/* Cummins v4: layout final estavel */
.cummins-section:not(.cummins-static) {
    padding-inline: clamp(18px, 4vw, 64px) !important;
}

.cummins-section:not(.cummins-static) .cummins-experience {
    width: min(1240px, 100%) !important;
    margin-inline: auto !important;
}

.cummins-section:not(.cummins-static) .cummins-slider {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) 54px !important;
    gap: clamp(14px, 2vw, 22px) !important;
    align-items: center !important;
}

.cummins-section:not(.cummins-static) .cummins-stage {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr) !important;
    gap: clamp(32px, 5vw, 72px) !important;
    align-items: center !important;
    min-height: clamp(460px, 42vw, 570px) !important;
    overflow: visible !important;
    isolation: isolate !important;
}

.cummins-section:not(.cummins-static) .cummins-copy-stage {
    position: relative !important;
    z-index: 3 !important;
    min-height: clamp(410px, 36vw, 500px) !important;
    height: 100% !important;
    min-width: 0 !important;
}

.cummins-section:not(.cummins-static) .cummins-slide {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(18px, 0, 0) scale(0.985) !important;
    transition: opacity 0.46s ease, visibility 0.46s ease, transform 0.46s ease !important;
}

.cummins-section:not(.cummins-static) .cummins-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.cummins-section:not(.cummins-static) .cummins-slide .cummins-card-media {
    display: none !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy {
    box-sizing: border-box !important;
    width: 100% !important;
    min-height: clamp(410px, 36vw, 500px) !important;
    padding: clamp(34px, 4.2vw, 58px) !important;
    justify-content: center !important;
}

.cummins-section:not(.cummins-static) .cummins-card-copy h3 {
    font-size: clamp(1.85rem, 2.7vw, 2.95rem) !important;
    line-height: 1.08 !important;
}

.cummins-section:not(.cummins-static) .cummins-fixed-media {
    position: relative !important;
    z-index: 1 !important;
    min-height: clamp(360px, 34vw, 520px) !important;
    margin: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}

.cummins-section:not(.cummins-static) .cummins-fixed-media img {
    width: min(94%, 620px) !important;
    max-height: clamp(330px, 34vw, 500px) !important;
    object-fit: contain !important;
}

@media (max-width: 1080px) {
    .cummins-section:not(.cummins-static) .cummins-slider {
        grid-template-columns: 1fr !important;
    }

    .cummins-section:not(.cummins-static) .cummins-stage {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        min-height: auto !important;
    }

    .cummins-section:not(.cummins-static) .cummins-copy-stage,
    .cummins-section:not(.cummins-static) .cummins-card-copy {
        min-height: 0 !important;
    }

    .cummins-section:not(.cummins-static) .cummins-slide {
        position: relative !important;
        inset: auto !important;
        display: none !important;
        transform: none !important;
    }

    .cummins-section:not(.cummins-static) .cummins-slide.is-active {
        display: block !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        padding: clamp(28px, 5vw, 44px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media {
        min-height: clamp(245px, 36vw, 360px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media img {
        max-height: clamp(225px, 34vw, 330px) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-arrow {
        top: auto !important;
        bottom: -58px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-dots {
        margin-top: 84px !important;
    }
}

@media (max-width: 620px) {
    .cummins-section:not(.cummins-static) {
        padding-inline: 16px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy {
        padding: 24px 18px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy h3 {
        font-size: clamp(1.55rem, 7vw, 2.08rem) !important;
    }

    .cummins-section:not(.cummins-static) .cummins-card-copy p {
        font-size: 0.94rem !important;
        line-height: 1.55 !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media {
        min-height: 210px !important;
    }

    .cummins-section:not(.cummins-static) .cummins-fixed-media img {
        max-height: 205px !important;
    }
}
