:root {
    --primary-color: #91A3AD;
    --secondary-color: #526570;
    --accent-color: #555555;
    --dark-color: #FFFFFF;
    --light-color: #ffffff;
    --text-dark: #526570;
    --text-light: #91A3AD;
    --text-white: #ffffff;
    --background-black: #000000;
    --background-white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--background-black);
}

/* Navbar Styles */
.navbar {
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(21, 31, 73, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

.navbar-brand img {
    height: 50px;
}

/* Logo responsivo - Desktop (maior que 576px) */
.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

/* Logo responsivo - Mobile (576px ou menor) */
@media (max-width: 576px) {
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
        height: 40px;
    }
}

/* Campo de Busca */
.search-container {
    margin: 2rem auto;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background: var(--background-white);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(82, 101, 112, 0.1);
}

.search-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.search-icon {
    position: absolute;
    right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: none;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-white);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(145, 163, 173, 0.2);
    transition: background-color 0.2s ease;
    color: var(--text-dark);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.suggestion-item.highlighted {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.suggestion-brand {
    font-weight: 600;
    font-size: 0.9rem;
}

.suggestion-model {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

/* Responsive para busca */
@media (max-width: 768px) {
    .search-container {
        margin: 1.5rem 0;
    }
    
    .search-input {
        padding: 0.875rem 2.5rem 0.875rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        right: 0.875rem;
        font-size: 1.1rem;
    }
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    border-radius: 50px;
}

/* Navbar Toggler - Botão Mobile */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.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, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn {
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.social-btn:hover {
    color: var(--light-color);
    transform: scale(1.2);
}

.social-btn i {
    line-height: 1;
    display: block;
}

/* Hero Section */
.hero-section {
    background: var(--background-black);
    color: var(--text-white);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--text-white);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(21, 31, 73, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Vehicle Cards */

body .vehicles-details-section {
    background: var(--background-black)!important;
}

.vehicles-section {
    padding: 4rem 0;
    background: var(--background-black);
}

/* Section Titles */
.section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.6;
    margin: 30px 0 0 0;
    max-width: 1000px;
}

/* Section Descriptions */
.section-description {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.vehicle-card {
    background: var(--primary-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 31, 73, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: none;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(21, 31, 73, 0.15);
}

.vehicle-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 0.3rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-button {
    padding: 0 1.5rem;
}

.vehicle-brand {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vehicle-model {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.vehicle-details {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vehicle-price {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vehicle-offer {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-vehicle {
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-vehicle:hover {
    background: var(--background-black);
    color: var(--text-white);
    border: 1px solid var(--accent-color);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Custom Bootstrap Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

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

.text-danger {
    color: var(--primary-color) !important;
}

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

.bg-success {
    background-color: var(--accent-color) !important;
}

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

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--dark-color) !important;
    border-color: var(--dark-color) !important;
}

.btn-success {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.btn-success:hover {
    background-color: var(--text-light) !important;
    border-color: var(--text-light) !important;
}

.foto-car {
	width:124px!important;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
}

/* Estilo para o container de detalhes do carro */
.detail-car {
    margin-top: 15px;
    color: var(--text-white)!important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: left;
        margin-top: 1rem;
    }
    
    .social-icons {
        text-align: left;
        margin-top: 1rem;
        padding-left: 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p,
    .section-description {
        font-size: 1rem;
    }
}

/* Parallax Effect */
.parallax-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 2rem 0;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.parallax-content {
    color: white;
    padding-top: 150px!important;
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.parallax-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.parallax-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Responsive Parallax */
@media (max-width: 768px) {
    .parallax-container {
        height: 400px;
        margin: 1rem 0;
    }
    
    .parallax-image {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .parallax-content {
        padding-top: 80px!important;
        padding: 1.5rem;
        text-align: center;
        margin: 1rem;
        border-radius: 8px;
    }
    
    .parallax-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .parallax-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    /* Ajuste para o offset no mobile */
    .parallax-content.offset-8 {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* Responsividade adicional para telas muito pequenas */
@media (max-width: 576px) {
    .parallax-container {
        height: 350px;
    }
    
    .parallax-content {
        padding: 1rem;
        text-align: center;
        margin: 0.5rem;
        border-radius: 6px;
    }
    
    .parallax-content h3 {
        font-size: 1.5rem;
    }
    
    .parallax-content p {
        font-size: 0.85rem;
    }

    .navbar-brand img {
        height: 40px!important;
    }
    
    /* Ajuste do container para mobile */
    .vehicles-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Ajuste do título da seção */
    .vehicles-section .section-title h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .vehicles-section .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Contact Section Styles */
.contact-card {
    background: var(--secondary-color);
    border-radius: 0;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-image {
    transform: scale(1.05);
}

.contact-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-content p {
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-item i {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.info-item span {
    color: var(--text-white);
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    color: var(--text-white);
    background: rgba(21, 31, 73, 0.05);
    transform: translateX(5px);
}

.contact-method i {
    color: var(--text-white);
    font-size: 1.1rem;
    min-width: 20px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-image-wrapper {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .contact-content h4 {
        font-size: 1.2rem;
    }
}

/* Modern Footer Styles */
.footer-modern {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 0;
}

.footer-description {
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.availability h6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.availability p {
    color: var(--text-white);
    margin: 0;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.opening-times {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-item:last-child {
    border-bottom: none;
}

.time-item .day {
    color: #cccccc;
    font-weight: 500;
}

.time-item .time {
    color: white;
    font-weight: 600;
}

.time-item.closed .time {
    color: #ff6b6b;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-value {
    color: white;
    font-weight: 600;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #128c7e;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem 0;
}

.copyright, .developed {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.developed i {
    color: #ff6b6b;
    margin: 0 0.25rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-modern {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-logo h5 {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Quem Somos Page Styles */
.quemsomos-section {
    background: var(--light-color);
    padding: 4rem 0;
    min-height: 100vh;
}

.quemsomos-content {
    padding: 2rem 0;
}

.quemsomos-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.quemsomos-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quemsomos-image {
    text-align: center;
    padding: 1rem;
}

.quemsomos-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.quemsomos-image img:hover {
    transform: scale(1.02);
}

/* Responsive Quem Somos */
@media (max-width: 768px) {
    .quemsomos-section {
        padding: 2rem 0;
    }
    
    .quemsomos-content {
        padding: 1rem;
        text-align: center;
    }
    
    .quemsomos-subtitle {
        font-size: 1.2rem;
    }
    
    .quemsomos-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .quemsomos-subtitle {
        font-size: 1.1rem;
    }
    
    .quemsomos-text p {
        font-size: 0.9rem;
    }

    .foto-car {
		width:55px;
		float: left;
		margin-right: 5px;
		margin-top: 7px;
	}
}

/* Quem Somos Hero Section */
.quemsomos-hero-section {
    min-height: 100vh;
    background: var(--background-black);
}

.quemsomos-hero-section .row {
    margin: 0;
}

.quemsomos-hero-section .col-lg-6 {
    padding: 0;
}

/* Coluna Esquerda - Título e Mídia */
.quemsomos-content-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.welcome-text {
    margin-bottom: 3rem;
}

.welcome-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.welcome-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.company-name {
    display: block;
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(21, 31, 73, 0.1);
}

.hero-media-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-10px);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Coluna Direita - Texto e Assinatura */
.quemsomos-content-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
}

.company-description {
    margin-bottom: 3rem;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.description-text strong {
    color: white;
    font-weight: 600;
}

.founder-signature {
    margin-top: auto;
    text-align: left;
}

.signature-line {
    width: 80px;
    height: 3px;
    background: white;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.founder-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* Carrossel de Logomarcas */
.brands-carousel-section {
    background: #ECF3F9;
    padding: 4rem 0;
    overflow: hidden;
}

.brands-carousel-wrapper {
    position: relative;
}

.brands-carousel {
    display: flex;
    gap: 0;
    align-items: center;
    overflow-x: hidden;
    white-space: nowrap;
    padding: 2rem 0;
    background: #ECF3F9;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 120px;
    padding: 20px 0;
    background: #ECF3F9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .quemsomos-hero-section .row {
        flex-direction: column;
    }
    
    .quemsomos-hero-section .col-lg-6 {
        min-height: 50vh;
    }
    
    .quemsomos-content-left,
    .quemsomos-content-right {
        padding: 2rem;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .welcome-line {
        font-size: 1.2rem;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .brands-carousel {
        gap: 2rem;
    }
    
    .brand-item {
        min-width: 100px;
        height: 60px;
        padding: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .quemsomos-content-left,
    .quemsomos-content-right {
        padding: 0.4rem;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .welcome-line {
        font-size: 1rem;
    }
    
    .brands-carousel {
        gap: 1.5rem;
    }
    
    .brand-item {
        min-width: 80px;
        height: 50px;
        padding: 0.6rem;
    }
}

/* Estilos para a galeria de imagens */
.main-image-container {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(21, 31, 73, 0.3);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive para miniaturas */
@media (max-width: 768px) {
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .thumbnails-container {
        gap: 8px;
    }
}

/* Estilos para os cards de informações do veículo */
.informacoes-carro {
    margin-top: 30px;
    border-radius: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    color: var(--secondary-color);
}

.info-card {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.info-icon {
    margin-bottom: 12px;
}

.info-icon i {
    font-size: 28px;
    color: var(--secondary-color);
    opacity: 0.8;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive para os cards */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .info-card {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .info-icon i {
        font-size: 24px;
    }
    
    .info-label {
        font-size: 10px;
    }
    
    .info-value {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .informacoes-carro {
        padding: 15px;
        margin-top: 20px;
    }
    
    .info-card {
        min-height: 90px;
    }
}

/* Estilos para a lista de features/opcionais */
.features-section {
    margin-top: 40px;
    border-radius: 12px;
}

.features-section .section-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive para features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-item i {
        font-size: 16px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .features-section .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}



/* Estilos específicos para index-2.html */
body.index-2-page .navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

body.index-2-page .navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 20px rgba(21, 31, 73, 0.1);
}

body.index-2-page .hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

body.index-2-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body.index-2-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

body.index-2-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

body.index-2-page .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
}

body.index-2-page .hero-welcome {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(21, 31, 73, 0.5);
}

body.index-2-page .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(21, 31, 73, 0.5);
}

/* Responsive para hero no index-2.html */
@media (max-width: 768px) {
    body.index-2-page .hero-title {
        font-size: 2.2rem;
    }
    
    body.index-2-page .hero-welcome {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body.index-2-page .hero-title {
        font-size: 1.8rem;
    }
    
    body.index-2-page .hero-welcome {
        font-size: 0.9rem;
    }
}
