/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores NitLagos */
    --primary-color: #dc2626;      /* Vermelho NitLagos */
    --secondary-color: #ef4444;    /* Vermelho mais claro */
    --accent-color: #1f2937;       /* Cinza escuro para contraste */
    --success-color: #10b981;      /* Verde para confiabilidade */
    --text-dark: #1f2937;          /* Cinza escuro para texto */
    --text-light: #6b7280;         /* Cinza claro para subtextos */
    --background-light: #f9fafb;   /* Fundo claro */
    --white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ===== HEADER ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--spacing-sm) 0;
}

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

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 600px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="100%" height="100%"/></svg>');
    opacity: 0.1;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text-only {
    max-width: 100%;
}

.about-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Ícones CSS profissionais */
.icon-shield::before {
    content: '';
    width: 24px;
    height: 28px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-tracking::before {
    content: '';
    width: 28px;
    height: 20px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
}

.icon-tracking::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-truck::before {
    content: '';
    width: 28px;
    height: 16px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
}

.icon-truck::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    bottom: -8px;
    left: 4px;
    box-shadow: 14px 0 0 -2px var(--white), 14px 0 0 0 var(--white);
}

.feature h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature p {
    color: var(--text-light);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-2xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.service-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.service-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ===== COVERAGE SECTION ===== */
.coverage {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-light);
}

.coverage-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.state-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.state-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.state-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.state-card ul {
    list-style: none;
    padding-left: 0;
}

.state-card li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.state-card li:last-child {
    border-bottom: none;
}

.state-card li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-2xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

/* Ícones de contato CSS */
.info-icon.location::before,
.contact-icon.location::before {
    content: '';
    width: 16px;
    height: 20px;
    background: var(--white);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.info-icon.location::after,
.contact-icon.location::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.info-icon.phone::before,
.contact-icon.phone::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-radius: 2px;
    transform: rotate(15deg);
}

.info-icon.email::before,
.contact-icon.email::before {
    content: '';
    width: 20px;
    height: 14px;
    border: 2px solid var(--white);
    border-radius: 2px;
    position: relative;
}

.info-icon.email::after,
.contact-icon.email::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 8px;
    border-left: 2px solid var(--white);
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 0 0 2px 2px;
}

.info-icon.whatsapp::before,
.contact-icon.whatsapp::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
}

.info-icon.whatsapp::after,
.contact-icon.whatsapp::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-icon.document::before {
    content: '';
    width: 16px;
    height: 20px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
}

.contact-icon.document::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 -4px 0 var(--primary-color), 0 4px 0 var(--primary-color);
}

.contact-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-md);
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-map {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
    }
    
    .about,
    .services,
    .coverage,
    .contact {
        padding: var(--spacing-xl) 0;
    }
    
    .service-card,
    .feature,
    .state-card,
    .contact-form {
        padding: var(--spacing-md);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.feature,
.service-card,
.state-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== SCROLL PADDING ===== */
section {
    scroll-margin-top: 80px;
}

/* ===== HERO BACKGROUND IMAGE ===== */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

/* Overlay removido para exibir o veículo claramente */
/* .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
} */

.hero-content {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    max-width: 600px;
}

/* ===== ABOUT SECTION WITH IMAGE ===== */
/* Company Values */
.company-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.value-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.value-text h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.value-text p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ===== ABOUT SECTION WITH IMAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.image-caption {
    background-color: var(--white);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.image-caption h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.image-caption p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* ===== SERVICES INTRO WITH IMAGE ===== */
.services-intro {
    margin-bottom: var(--spacing-2xl);
}

.services-intro-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.services-intro-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.services-intro-text p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.6;
}

.services-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== CONTACT HEADER WITH IMAGE ===== */
.contact-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-header-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-header-text p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
}

.contact-header-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-details h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.contact-item h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* ===== OPERATIONAL CAPACITY SECTION ===== */
.operational-capacity {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-light);
}

/* Fleet Showcase */
.fleet-showcase {
    margin-bottom: var(--spacing-2xl);
}

.fleet-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.fleet-showcase-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.fleet-showcase-text p {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--text-light);
}

.fleet-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.fleet-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
    align-items: start;
}

.fleet-column,
.security-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fleet-column h3,
.security-column h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.fleet-types-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    height: 100%;
}

.fleet-type-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    min-height: 90px;
    flex: 1;
}

.fleet-type-item:hover {
    transform: translateX(5px);
}

.fleet-badge {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--white);
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.fleet-badge.carretas {
    background-color: var(--primary-color);
}

.fleet-badge.trucks {
    background-color: var(--secondary-color);
}

.fleet-badge.vuc {
    background-color: var(--accent-color);
}

.fleet-info {
    flex: 1;
}

.fleet-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.fleet-info p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.4;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    height: 100%;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-height: 90px;
    flex: 1;
}

.security-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    margin-top: 5px;
}

.security-icon.shield::before {
    content: '';
    width: 20px;
    height: 24px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.security-icon.auto::before {
    content: '';
    width: 20px;
    height: 16px;
    background: var(--white);
    border-radius: 2px;
}

.security-icon.coverage-new .coverage-circle {
    width: 18px;
    height: 18px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
}

.security-content {
    flex: 1;
}

.security-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.security-content p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.4;
}

/* ===== CONTACT SECTION REDESIGN ===== */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.contact-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-intro-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-intro-text p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.highlight-icon.fast::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--white);
    transform: rotate(-30deg);
}

.highlight-icon.quote::before {
    content: '';
    width: 16px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 2px;
}

.highlight-icon.custom::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    position: relative;
}

.highlight-icon.custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.highlight-icon.phone::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 2px;
    position: relative;
}

.highlight-icon.phone::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid var(--white);
    border-radius: 50%;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.highlight-icon.email::before {
    content: '';
    width: 16px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 2px;
    position: relative;
}

.highlight-icon.email::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.contact-offices h3,
.contact-form-section h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.offices-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.office-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.office-item:hover {
    transform: translateY(-3px);
}

.office-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.office-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.office-header h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0;
}

.office-details {
    padding: var(--spacing-lg);
}

.office-info {
    margin-bottom: var(--spacing-lg);
}

.info-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: var(--background-light);
    border-radius: var(--radius-md);
}

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

.info-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
}

.info-value {
    font-size: var(--font-size-base);
    color: var(--text-dark);
}

.office-legal {
    padding: var(--spacing-sm);
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.legal-label {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-section {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

/* ===== QUALITY POLICY SECTION ===== */
.quality-policy {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.quality-policy .section-header h2,
.quality-policy .section-header p {
    color: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.quality-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.quality-number {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.quality-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.quality-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR IMAGES ===== */
@media (max-width: 768px) {
    .about-grid,
    .services-intro-content,
    .contact-header,
    .fleet-details,
    .fleet-showcase-content,
    .contact-intro {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .offices-container {
        grid-template-columns: 1fr;
    }
    
    .company-values {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .services-intro-image,
    .contact-header-image {
        order: -1;
    }
    
    .services-intro-content,
    .contact-header {
        padding: var(--spacing-lg);
    }
    
    /* Overlay removido para mobile - exibir o veículo claramente */
    /* .hero-bg::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    } */
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .services-intro-content,
    .contact-header,
    .image-caption {
        padding: var(--spacing-md);
    }
    
    .about-grid {
        gap: var(--spacing-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .fleet-type-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
} 