/**
 * Quitafutura - Sistema de Vendas de Carros
 * Stylesheet Principal
 * Paleta: Azul Escuro + Cinza
 */

/* ============================================
   VARIÁVEIS E RESET
   ============================================ */
:root {
    /* Cores Principais */
    --primary-color: #0A1A2F;
    --secondary-color: #1F3B57;
    --gray-medium: #808A93;
    --gray-light: #D5D8DB;
    --white-frost: #F5F7F9;
    --accent-blue: #2E8CFF;
    --white: #FFFFFF;
    
    /* Outras Cores */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(10, 26, 47, 0.1);
    --shadow-md: 0 4px 6px rgba(10, 26, 47, 0.15);
    --shadow-lg: 0 8px 16px rgba(10, 26, 47, 0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white-frost);
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
.main-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-brand-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
    
    .navbar-brand-text {
        font-size: 1.4rem;
    }
}

.navbar-nav .nav-link {
    color: var(--white-frost) !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-blue) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--white-frost);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

/* ============================================
   BANNER / HERO
   ============================================ */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-banner p {
    font-size: 1.2rem;
    color: var(--white-frost);
}

/* ============================================
   CARROSSEL DE DESTAQUES
   ============================================ */
.featured-carousel-section {
    padding: 3rem 0;
    background-color: var(--white);
    margin-bottom: 2rem;
}

.featured-carousel-section .section-header {
    margin-bottom: 2rem;
}

.featured-carousel-section .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}

.featured-carousel-section .section-title i {
    color: var(--accent-blue);
    margin-right: 0.5rem;
}

#featuredCarousel {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-carousel-item {
    background-color: var(--white);
    padding: 2rem;
    min-height: 400px;
}

.featured-carousel-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-carousel-item:hover .featured-carousel-image img {
    transform: scale(1.05);
}

.featured-carousel-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.featured-car-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.featured-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-car-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white-frost);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.featured-car-specs span i {
    color: var(--accent-blue);
}

.featured-car-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.btn-featured-details {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.btn-featured-details:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-featured-details i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn-featured-details:hover i {
    transform: translateX(5px);
}

/* Indicadores do carrossel */
.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    border: 2px solid var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--accent-blue);
    opacity: 1;
}

/* Controles do carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 1rem;
}

.carousel-control-next {
    right: 1rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--accent-blue);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsividade do carrossel */
@media (max-width: 768px) {
    .featured-carousel-section {
        padding: 2rem 0;
    }
    
    .featured-carousel-item {
        padding: 1rem;
        min-height: auto;
    }
    
    .featured-carousel-content {
        padding: 1rem;
        text-align: center;
    }
    
    .featured-car-title {
        font-size: 1.5rem;
    }
    
    .featured-car-price {
        font-size: 2rem;
    }
    
    .featured-car-specs {
        justify-content: center;
    }
    
    .featured-car-specs span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 0.5rem;
    }
    
    .carousel-control-next {
        right: 0.5rem;
    }
}

/* ============================================
   GRID DE CARROS (VITRINE)
   ============================================ */
.cars-section {
    padding: 2rem 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.car-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.car-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--gray-light);
}

.car-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.car-card-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.car-card-specs i {
    color: var(--accent-blue);
}

.car-card-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.car-card-values {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-light);
}

.car-value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.car-value-label {
    color: var(--gray-medium);
    font-weight: 500;
}

.car-value-amount {
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-details {
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    margin-top: auto;
}

.btn-details i {
    font-size: 1rem;
    line-height: 1;
}

.btn-details:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

/* ============================================
   PÁGINA DE DETALHES
   ============================================ */
.car-details-section {
    padding: 2rem 0;
}

.car-gallery {
    margin-bottom: 2rem;
}

.car-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.car-highlights-actions-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.car-info-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.car-info-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.car-info-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.car-specs-table {
    width: 100%;
    margin-bottom: 2rem;
}

.car-specs-table th,
.car-specs-table td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--gray-light);
}

.car-specs-table th {
    background-color: var(--white-frost);
    color: var(--secondary-color);
    font-weight: 600;
    width: 40%;
}

.car-specs-table td {
    color: var(--gray-medium);
}

.car-highlights {
    margin-bottom: 2rem;
}

.car-highlights h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.car-highlights h4 i {
    color: var(--accent-blue);
}

.highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-badge {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.car-description {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.car-values-section,
.car-complementary-data-section,
.car-features-section {
    margin-top: 1.5rem;
}

.car-values-section h4,
.car-complementary-data-section h4,
.car-features-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.car-values-section h4 i,
.car-complementary-data-section h4 i,
.car-features-section h4 i {
    color: var(--accent-blue);
}

.car-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.car-features-list li {
    padding: 0.5rem 0;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.car-features-list li i {
    color: var(--success);
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-interest {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-interest:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-financing {
    background-color: #abb928;
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-financing:hover {
    background-color: #218838;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   BOTÕES DE COMPARTILHAR
   ============================================ */
.share-section {
    margin-bottom: 1.5rem;
}

.share-section h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-section h5 i {
    color: var(--accent-blue);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-share {
    padding: 0;
    border: none;
    border-radius: 50%;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: var(--transition);
    font-size: 0;
    cursor: pointer;
    color: var(--white);
    width: 50px;
    height: 50px;
    min-width: 50px;
    position: relative;
    overflow: hidden;
}

.btn-share i {
    font-size: 1.3rem;
    line-height: 1;
}

.btn-share-whatsapp {
    background-color: #25D366;
}

.btn-share-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-share-facebook {
    background-color: #1877F2;
}

.btn-share-facebook:hover {
    background-color: #166FE5;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-share-twitter {
    background-color: #1DA1F2;
}

.btn-share-twitter:hover {
    background-color: #0d8bd9;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-share-copy {
    background-color: var(--gray-medium);
}

.btn-share-copy:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .btn-share {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* ============================================
   FORMULÁRIO DE INTERESSE
   ============================================ */
.interest-form-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.8rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(46, 140, 255, 0.25);
}

.btn-submit {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white-frost);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social a {
    color: var(--white-frost);
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--white);
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ALERTS E MENSAGENS
   ============================================ */
.alert {
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
    
    .car-gallery img {
        height: 250px;
    }
    
    .car-highlights-actions-card {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    
    .car-info-title {
        font-size: 1.5rem;
    }
    
    .car-info-price {
        font-size: 2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-financing,
    .btn-interest {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ============================================
   FILTROS INTELIGENTES
   ============================================ */
.filters-section {
    padding: 2rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.filters-card {
    background-color: var(--white-frost);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.filters-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.filters-header h3 i {
    color: var(--accent-blue);
    margin-right: 0.5rem;
}

.btn-clear-filters {
    background-color: var(--gray-medium);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-clear-filters:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.filters-form {
    margin: 0;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-label i {
    color: var(--accent-blue);
    margin-right: 0.3rem;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--white);
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(46, 140, 255, 0.1);
}

.price-range,
.year-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range .filter-input,
.year-range .filter-input {
    flex: 1;
}

.range-separator {
    color: var(--gray-medium);
    font-size: 0.85rem;
    white-space: nowrap;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cars-count {
    color: var(--gray-medium);
    font-size: 1rem;
    font-weight: 500;
}

.cars-count #countNumber {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-clear-filters {
        width: 100%;
        justify-content: center;
    }
    
    .price-range,
    .year-range {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .range-separator {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   PÁGINA DE VISTORIAS
   ============================================ */
.vistorias-section {
    padding: 3rem 0;
    background-color: var(--white-frost);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--gray-light);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.vistoria-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.info-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

.vistoria-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.vistoria-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.vistoria-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.vistoria-cta .btn-details {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.vistoria-cta .btn-details:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card {
        padding: 1rem;
    }
    
    .vistoria-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vistoria-cta {
        padding: 2rem 1.5rem;
    }
    
    .vistoria-cta h3 {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-blue) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.bg-frost {
    background-color: var(--white-frost) !important;
}

.no-cars-message {
    text-align: center;
    padding: 4rem 0;
    color: var(--gray-medium);
}

.no-cars-message i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

/* ============================================
   BANNERS CAROUSEL
   ============================================ */
.banners-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slide {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 26, 47, 0.75) 0%,
        rgba(31, 59, 87, 0.65) 50%,
        rgba(10, 26, 47, 0.75) 100%
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5),
                 0 0 15px rgba(0, 0, 0, 0.3);
    color: var(--white-frost);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(0, 0, 0, 0.3);
    color: var(--white-frost);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicadores do carrossel */
.banners-carousel-section .carousel-indicators {
    bottom: 20px;
    z-index: 3;
}

.banners-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: var(--transition);
}

.banners-carousel-section .carousel-indicators button.active {
    background-color: var(--white);
    border-color: var(--accent-blue);
    transform: scale(1.2);
}

/* Controles do carrossel */
.banners-carousel-section .carousel-control-prev,
.banners-carousel-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 3;
}

.banners-carousel-section .carousel-control-prev {
    left: 20px;
}

.banners-carousel-section .carousel-control-next {
    right: 20px;
}

.banners-carousel-section .carousel-control-prev:hover,
.banners-carousel-section .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.banners-carousel-section .carousel-control-prev-icon,
.banners-carousel-section .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Responsividade */
@media (max-width: 992px) {
    .banner-slide {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.5rem;
    }
    
    .banner-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .banner-slide {
        min-height: 350px;
        padding: 2rem 0;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .banner-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .banners-carousel-section .carousel-control-prev,
    .banners-carousel-section .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .banners-carousel-section .carousel-control-prev {
        left: 10px;
    }
    
    .banners-carousel-section .carousel-control-next {
        right: 10px;
    }
    
    .banners-carousel-section .carousel-control-prev-icon,
    .banners-carousel-section .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .banner-slide {
        min-height: 300px;
        padding: 1.5rem 0;
    }
    
    .banner-title {
        font-size: 1.75rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .banner-text {
        font-size: 0.9rem;
    }
}

