/* ==========================================================================
   GLOBAL THEME & RESET (Sleek Dark Mode with Gold/Amber Accents)
   ========================================================================== */
body {
    background-color: #f4f6f9;
    color: #1e293b;
    font-family: 'Outfit', 'Montserrat', 'Roboto', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom selection */
::selection {
    background-color: #edb105;
    color: #000;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b0c10;
}
::-webkit-scrollbar-thumb {
    background: #1e2029;
    border-radius: 5px;
    border: 2px solid #0b0c10;
}
::-webkit-scrollbar-thumb:hover {
    background: #edb105;
}

/* Horizontal Rule */
hr {
    border-top: 2px solid #2e303d;
    opacity: 0.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.pw-custom-menu {
    background: #111216 !important;
    border-bottom: 3px solid #edb105;
    border-top: 1px solid #1f212a;
    transition: all 0.3s ease;
}

.pw-custom-menu .nav-link {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 18px 24px !important;
    position: relative;
}

.pw-custom-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #edb105;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.pw-custom-menu .nav-link:hover {
    color: #edb105 !important;
    background-color: rgba(237, 177, 5, 0.03);
}

.pw-custom-menu .nav-link:hover::after,
.pw-custom-menu .nav-link.active::after {
    width: 80%;
}

.pw-custom-menu .nav-link.active {
    color: #edb105 !important;
}

#mobile-menu-btn {
    background-color: #edb105 !important;
    border: none !important;
    color: #000000 !important;
    transition: all 0.3s ease;
}
#mobile-menu-btn:hover {
    background-color: #ffd043 !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   SEARCH SIDEBAR
   ========================================================================== */
.busca {
    border-top: 4px solid #edb105;
    border-radius: 12px;
    background-color: #14151a;
    margin-bottom: 25px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-left: 1px solid #1f212a;
    border-right: 1px solid #1f212a;
    border-bottom: 1px solid #1f212a;
}

.busca h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
}

.busca h3 i {
    color: #edb105;
    font-size: 1.1rem;
}

.busca p {
    margin-bottom: 15px;
}

/* Form inputs styling */
.busca .form-select,
.busca .form-control {
    background-color: #1c1d24;
    border: 1px solid #2e303d;
    color: #e1e3e6;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.busca .form-select:focus,
.busca .form-control:focus {
    border-color: #edb105;
    box-shadow: 0 0 0 3px rgba(237, 177, 5, 0.15);
    background-color: #1c1d24;
    color: #ffffff;
}

/* Search button styling */
.pw-btn-custom {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #edb105, #ffd043);
    border: none;
    color: #000000;
    border-radius: 8px;
    padding: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(237, 177, 5, 0.2);
}

.pw-btn-custom:hover {
    background: linear-gradient(135deg, #ffd043, #edb105);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(237, 177, 5, 0.35);
}

.pw-btn-custom:active {
    transform: translateY(0);
}

/* ==========================================================================
   BRANDS LIST FILTER
   ========================================================================== */
.marcas_lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    gap: 10px;
    justify-content: center;
}

.marcas_lista_item_x {
    background-color: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: auto;
    height: auto;
    float: none; /* remove legacy float */
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.marcas_lista_item_x img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.marcas_lista_item_x:hover {
    border-color: #edb105;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(237, 177, 5, 0.35);
}

.marcas_lista_item_x:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   CATEGORY HEADER
   ========================================================================== */
.home_categoria_header {
    border-left: 4px solid #edb105;
    padding: 10px 15px;
    background: #14151a;
    border-radius: 0 8px 8px 0;
    margin-bottom: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.home_h2_categoria a {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.home_h2_categoria a:hover {
    color: #edb105;
}

.home_categoria_count {
    background-color: #14151a;
    border: 1px solid #2e303d;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #edb105;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.home_categoria_count:hover {
    background-color: #edb105;
    border-color: #edb105;
    color: #000000;
    text-decoration: none;
}

/* ==========================================================================
   VEHICLE CARD
   ========================================================================== */
.vehicle-card {
    background-color: #14151a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.vehicle-card-link {
    text-decoration: none !important;
    color: inherit;
}

.vehicle-img-wrapper {
    aspect-ratio: 4 / 3;
    background-color: #0b0c10;
    position: relative;
    overflow: hidden;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 177, 5, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(237, 177, 5, 0.1);
}

.vehicle-card:hover .vehicle-img {
    transform: scale(1.08);
}

.vehicle-info-body {
    padding: 20px !important;
}

.vehicle-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

/* marca pequena discreta sobre o modelo branco */
.vehicle-title .pw-sl-marca {
    display: block;
    color: #8c909e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.vehicle-title .pw-sl-modelo {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vehicle-card:hover .vehicle-title {
    color: #edb105;
}

.vehicle-price-container {
    border-top: 1px solid #262a35;
    padding-top: 15px;
}

.vehicle-price {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

.price-currency {
    color: #8c909e;
    font-size: 16px;
    font-weight: 600;
    margin-right: 2px;
}

.price-cents {
    color: #8c909e;
    font-size: 16px;
    font-weight: 600;
}

.price-consulte {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

/* Botão "Ver detalhes" no rodapé do card */
.vehicle-detalhes-btn {
    background: transparent;
    color: #edb105;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-top: 1px solid #262a35;
    transition: all 0.3s ease;
}

.vehicle-detalhes-btn:hover {
    background: linear-gradient(135deg, #edb105, #ffd043);
    color: #000000 !important;
}

/* ==========================================================================
   "VIEW ALL STOCK" MAIN BUTTON
   ========================================================================== */
.btn-estoque-completo {
    background: #14151a;
    color: #edb105;
    border: 2px solid #14151a;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(237, 177, 5, 0.05);
}

.btn-estoque-completo:hover {
    background: linear-gradient(135deg, #edb105, #ffd043);
    color: #000000;
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(237, 177, 5, 0.3);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
    background: #0a0a0c !important;
    border-top: 4px solid #edb105;
    color: #b1b5c2;
    margin-top: 60px;
    font-family: 'Outfit', sans-serif;
}

.pw-footer-map-container iframe {
    border: none;
    display: block;
}

.pw-footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pw-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: #edb105;
    border-radius: 2px;
}

.pw-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pw-footer-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.pw-footer-list li a {
    color: #a0a5b5;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.pw-footer-list li a:hover {
    color: #edb105;
    padding-left: 6px;
}

.pw-footer-list li i.list-arrow {
    font-size: 0.7rem;
    margin-right: 10px;
    color: #edb105;
    transition: transform 0.25s ease;
}

.pw-footer-list li a:hover i.list-arrow {
    transform: translateX(3px);
}

.contact-info li {
    color: #a0a5b5;
    gap: 12px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.contact-info li i {
    color: #edb105;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-info li a {
    color: #a0a5b5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info li a:hover {
    color: #edb105;
    padding-left: 0;
}

.pw-footer-bottom {
    background-color: #060608;
    border-top: 1px solid #14151a;
    padding: 24px 0;
    font-size: 0.85rem;
}

.pw-copyright {
    color: #686b75;
}

.plataformaweb {
    display: inline-block;
    width: 120px;
    height: 30px;
    text-indent: -9999px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    background: url(/pw-auto-site/00/images/plataformaweb.png) no-repeat right center;
    background-size: contain;
    opacity: 1;
    transition: transform 0.3s ease;
    margin: 0;
}

.plataformaweb:hover {
    transform: scale(1.08);
}

.pw-footer-scroll-list {
    max-height: 275px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;            /* Firefox */
    scrollbar-color: #edb105 #14151a; /* Firefox: polegar dourado sempre visível */
}

.pw-footer-scroll-list::-webkit-scrollbar {
    width: 8px;
}

.pw-footer-scroll-list::-webkit-scrollbar-track {
    background: #14151a;
    border-radius: 4px;
}

.pw-footer-scroll-list::-webkit-scrollbar-thumb {
    background: #edb105;
    border-radius: 4px;
}

.pw-footer-scroll-list::-webkit-scrollbar-thumb:hover {
    background: #ffc82e;
}

/* fade no final da lista sinalizando que há mais itens no scroll */
.pw-footer-scroll-list::after {
    content: '';
    display: block;
    position: sticky;
    bottom: 0;
    height: 28px;
    margin-top: -28px;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0), #0a0a0c);
    pointer-events: none;
}

/* ==========================================================================
   WHATSAPP FLOATING BADGE
   ========================================================================== */
.pwas-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #20b35b 0%, #25D366 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.pwas-whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.pwas-whatsapp-pulse {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    border-radius: 50%;
    animation: pwas-whatsapp-pulse 1.8s infinite;
}

@keyframes pwas-whatsapp-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   LEGACY SELECTORS & MISC
   ========================================================================== */
.pw-h1-container {
    background-color: #14151a;
    border-left: 4px solid #edb105;
    color: #ffffff;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pw-h1-container h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.pw-localizacao-separador {
    font-size: 0.8rem;
    color: #edb105;
    margin: 0 10px;
}

#showMessage {
    max-width: 100%;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    background-color: #1c1d24;
    border: 1px solid #ff3b30;
    color: #ff3b30;
    border-radius: 8px;
}

.box {
    background-color: #14151a;
    border: 1px solid #1f212a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.box h4 {
    color: #ffffff;
    background-color: #1c1d24;
    margin: 0;
    padding: 15px;
    height: auto;
    font-size: 16px;
}

.box .barra {
    padding: 10px 15px;
    background: #14151a;
    color: #edb105;
    font-size: 18px;
    font-weight: 700;
}

/* ==========================================================================
   MEDIA QUERIES / RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991.98px) {
    .pw-custom-menu .nav-link {
        padding: 12px 20px !important;
    }
    .busca {
        margin-top: 20px;
    }
}

/* ==========================================================================
   VEHICLE STOCK LISTING (ESTOQUE)
   ========================================================================== */
.carro-resultado {
    background-color: #14151a;
    border: 1px solid #1f212a;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .carro-resultado {
        display: flex;
        align-items: center;
    }
}

.carro-resultado:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 177, 5, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(237, 177, 5, 0.1);
}

.carro-img {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background-color: #1f212a;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 !important;
}

/* desktop usa a miniatura "tn" de 200px: box do mesmo tamanho da foto = preenche 100% sem upscale */
@media (min-width: 768px) {
    .carro-img {
        max-width: 200px;
    }
}

.carro-img img {
    border-radius: 12px;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.carro-resultado:hover .carro-img img {
    transform: scale(1.04);
}

.carro-info {
    padding-left: 20px !important;
}

.carro-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.carro-info h3 a {
    color: #ffffff;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.carro-info h3 a:hover {
    color: #edb105;
}

/* marca pequena dourada sobre o modelo branco (spans do lista_bootstrap5) */
.carro-info h3 .pw-sl-marca {
    display: block;
    color: #edb105;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.pw-seminovos-lista-detalhes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pw-seminovos-lista-detalhes span {
    background-color: #1c1d24 !important;
    border: 1px solid #2e303d !important;
    color: #e1e3e6 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.estoque_si_whats {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #168c46 0%, #20b35b 100%) !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 10px rgba(22, 140, 70, 0.2) !important;
    width: auto !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.carro-info a:hover .estoque_si_whats {
    background: linear-gradient(135deg, #20b35b 0%, #25D366 100%) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.carro-resultado .marca {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.carro-resultado .marca img {
    border-radius: 5px !important;
    background-color: #ffffff;
    padding: 2px;
    border: 1px solid #2e303d;
}

.carro-resultado h3.preco {
    font-family: 'Outfit', sans-serif;
    color: #edb105;
    font-size: 1.7rem;
    font-weight: 800;
    text-align: right;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* "R$" e ",00" menores: foco no valor inteiro */
.carro-resultado h3.preco .pw-preco-moeda,
.carro-resultado h3.preco .pw-preco-centavos {
    font-size: 62%;
    font-weight: 700;
}

.pw-cta-carro-individual {
    background: transparent !important;
    color: #edb105 !important;
    border: 2px solid #edb105 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-decoration: none !important;
    display: block;
    text-align: center;
    width: 100%;
}

.pw-cta-carro-individual:hover {
    background: linear-gradient(135deg, #edb105, #ffd043) !important;
    color: #000000 !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(237, 177, 5, 0.25) !important;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .carro-resultado {
        padding: 20px;
    }
    .carro-img {
        margin-bottom: 20px;
    }
    .carro-info {
        padding-left: 0 !important;
        margin-bottom: 20px;
    }
    .carro-resultado .marca {
        justify-content: flex-start;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .carro-resultado h3.preco {
        text-align: left;
        margin-bottom: 15px;
    }
}
/* Topo e rodapé: WhatsApp, telefone e redes sociais com a mesma altura (40px) */
.pw-header-contatos .badge,
footer .contact-info .badge {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ícone dentro do badge não herda o estilo dos ícones da lista de contato */
footer .contact-info .badge i {
    width: auto;
    margin-top: 0;
    font-size: inherit;
}

/* ==========================================================================
   Cores do Template default-bootstrap5 (Seminovo Individual) - Indi Car 3293
   !important onde o <style> inline do tpl compartilhado venceria pela ordem
   ========================================================================== */
.pw-si-check-icon {
    color: #b8890b;
}

.pw-si-form-header {
    background-color: #14151a !important;
    border-left: 4px solid #edb105;
}

.pw-si-form-title {
    color: #ffffff !important;
    font-size: 20px;
}

.info-card {
    background-color: #ffffff;
    border-color: #e2e8f0 !important;
    color: #1e293b;
}

.info-card:hover {
    border-color: #edb105 !important;
}

.info-card .ic-icon {
    background-color: transparent;
    color: #14151a;
    font-size: 20px;
}

.info-card .ic-label {
    color: #8c909e;
}

.info-card .ic-value {
    color: #0f172a;
}

.info-card a {
    color: #0f172a;
}

.info-card a:hover {
    color: #b8890b;
    text-decoration: none;
}

/* "R$" e ",00" menores que o valor no card de preço */
.info-card .ic-value .pw-preco-moeda,
.info-card .ic-value .pw-preco-centavos {
    font-size: 70%;
    font-weight: 600;
    color: #8c909e;
}

/* link que envolve o botão do whatsapp: sem sublinhado padrão do bootstrap */
a:has(> #pw_si_whats) {
    text-decoration: none;
    color: #ffffff;
}

/* botão whatsapp da página do veículo (tpl define verde antigo #468847 inline) */
#pw_si_whats {
    background: linear-gradient(135deg, #168c46 0%, #20b35b 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.25s ease;
}

#pw_si_whats:hover {
    background: linear-gradient(135deg, #20b35b 0%, #25D366 100%) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* miniaturas das fotos do veículo */
.pw-seminovo-individual-foto-x-miniatura {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pw-seminovo-individual-foto-x-miniatura:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   SLIDER DA HOME (Swiper)
   ========================================================================== */
.mySwiperHome {
    --swiper-navigation-color: #edb105;
    --swiper-pagination-color: #edb105;
}

.mySwiperHome img {
    display: block;
    width: 100%;
    height: auto;
}

/* WhatsApps e fone do topo: hover com leve subida e brilho */
header .navbar .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: filter 0.2s ease, transform 0.2s ease;
}
header .navbar a:hover .badge {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
header .navbar a > i.fab {
    display: inline-block;
    transition: transform 0.2s ease;
}
header .navbar a:hover > i.fab {
    transform: translateY(-2px) scale(1.06);
}

/* ---------------------------------------------------
   Animações de entrada (só no carregamento da página)
   fill-mode "backwards": o estado inicial vale durante o delay e a
   propriedade é liberada ao terminar — por isso os transforms de
   hover continuam funcionando (com "both"/"forwards" a animação
   venceria a regra de :hover).
   --------------------------------------------------- */
@keyframes pw-entra-de-cima {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pw-entra-de-baixo {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pw-surge {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header .navbar {
    animation: pw-entra-de-cima 0.55s ease 0.05s backwards;
}

.pw-custom-menu {
    animation: pw-entra-de-cima 0.5s ease 0.12s backwards;
}

/* o slider é do Swiper, que controla transform no wrapper — aqui só opacidade */
.mySwiperHome {
    animation: pw-surge 0.7s ease 0.15s backwards;
}

.busca {
    animation: pw-entra-de-baixo 0.5s ease backwards;
}
.busca:nth-of-type(1) { animation-delay: 0.20s; }
.busca:nth-of-type(2) { animation-delay: 0.28s; }

.home_categoria_header {
    animation: pw-entra-de-baixo 0.5s ease 0.22s backwards;
}

/* cards de destaque: escalonados dentro de cada fileira */
.vehicle-card {
    animation: pw-entra-de-baixo 0.5s ease backwards;
}
.col:nth-child(1) .vehicle-card { animation-delay: 0.28s; }
.col:nth-child(2) .vehicle-card { animation-delay: 0.36s; }
.col:nth-child(3) .vehicle-card { animation-delay: 0.44s; }

.btn-estoque-completo {
    animation: pw-entra-de-baixo 0.5s ease 0.4s backwards;
}

/* listagem: as primeiras fileiras entram escalonadas */
.carro-resultado {
    animation: pw-entra-de-baixo 0.5s ease backwards;
}
.carro-resultado:nth-of-type(1) { animation-delay: 0.20s; }
.carro-resultado:nth-of-type(2) { animation-delay: 0.26s; }
.carro-resultado:nth-of-type(3) { animation-delay: 0.32s; }
.carro-resultado:nth-of-type(4) { animation-delay: 0.38s; }
.carro-resultado:nth-of-type(5) { animation-delay: 0.44s; }
.carro-resultado:nth-of-type(6) { animation-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
    header .navbar,
    .pw-custom-menu,
    .mySwiperHome,
    .busca,
    .home_categoria_header,
    .vehicle-card,
    .btn-estoque-completo,
    .carro-resultado {
        animation: none;
    }
}
