/* 
   Borracharia Impactus Pneus
   Theme: Modern, Automotive (Black, Yellow, Red)
*/

/* =========================================================================
   VARIABLES & RESET
========================================================================= */
:root {
    /* Colors */
    --color-bg-dark: #0f1115;
    --color-bg-surface: #1a1d24;
    --color-bg-lighter: #252a34;

    --color-primary: #FC4C02;
    /* Orange */
    --color-primary-hover: #e04302;

    --color-secondary: #ff3b30;
    /* Red */
    --color-secondary-hover: #e6352b;

    --color-text: #f0f0f0;
    --color-text-muted: #a0a5b0;

    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1ebd5a;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 15px rgba(252, 76, 2, 0.3);
    --shadow-neon-red: 0 0 20px rgba(255, 59, 48, 0.4);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

/* =========================================================================
   GLOBAL GLOW (BACKGROUND BLUR)
========================================================================= */
.global-glow {
    position: fixed;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    width: 60vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.25) 0%, rgba(252, 76, 2, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: glowMoveLeft 15s ease-in-out infinite alternate;
}

.global-glow-2 {
    position: fixed;
    top: 30%;
    right: -20%;
    width: 60vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(252, 76, 2, 0.15) 0%, rgba(255, 59, 48, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: glowMoveRight 18s ease-in-out infinite alternate;
}

@keyframes glowMoveLeft {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-40%) scale(1.1);
    }

    100% {
        transform: translateY(-60%) scale(0.9);
    }
}

@keyframes glowMoveRight {
    0% {
        transform: translateY(0%) scale(0.9);
    }

    50% {
        transform: translateY(10%) scale(1.1);
    }

    100% {
        transform: translateY(-10%) scale(1);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--color-bg-surface);
}

/* =========================================================================
   TYPOGRAPHY
========================================================================= */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--color-primary);
}

.title-underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    margin: 15px auto 0;
    border-radius: 2px;
}

.title-underline.left {
    margin: 15px 0 0;
}

/* =========================================================================
   BUTTONS
========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(252, 76, 2, 0.5);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}

.btn-black {
    background-color: #000;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-black:hover {
    background-color: var(--color-primary);
    color: #000;
}

/* =========================================================================
   HEADER & NAVIGATION
========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-impactus {
    color: var(--color-text);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.logo-pneus {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================================================
   HERO SECTION
========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    z-index: 1;
}

.hero-overlay {
    display: none;
    /* Removing old overlay as requested by the clean style reference */
}

.hero-logo {
    display: block;
    width: 30rem;
    max-width: 90%;
    margin: 0 auto 40px auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: var(--color-primary);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #fff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Glowing Text Animation */
.glowing-text {
    position: relative;
    z-index: 1;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(252, 76, 2, 0.3), 
                 0 0 20px rgba(252, 76, 2, 0.15);
    animation: glowPulse 2s infinite alternate ease-in-out;
}

.glowing-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(252, 76, 2, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: glowPulseBg 4s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(252, 76, 2, 0.15), 
                     0 0 20px rgba(252, 76, 2, 0.05);
    }
    100% {
        text-shadow: 0 0 15px rgba(252, 76, 2, 0.3), 
                     0 0 30px rgba(252, 76, 2, 0.2);
    }
}

@keyframes glowPulseBg {
    0% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.scroll-indicator i {
    margin-top: -10px;
    animation: pulseScroll 2s infinite;
}

.scroll-indicator i:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulseScroll {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

/* =========================================================================
   GRID SYSTEM
========================================================================= */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================================================
   DIFERENCIAIS SECTION (CARDS)
========================================================================= */
.card {
    background: var(--color-bg-surface);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(252, 76, 2, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 76, 2, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--color-primary);
    color: #000;
    box-shadow: var(--shadow-neon);
}

.card-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-feature p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =========================================================================
   BANNER URGÊNCIA
========================================================================= */
.banner {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #a80a0a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(0,0,0,0.1)"/></svg>');
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content span {
    color: #000;
}

.banner-content p {
    font-size: 1.1rem;
    max-width: 600px;
    font-weight: 500;
}

/* =========================================================================
   SERVIÇOS
========================================================================= */
.card-service {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.card-img {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card-service:hover .card-img {
    transform: scale(1.05);
}

.card-service .card-body {
    padding: 25px;
    background: var(--color-bg-lighter);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.badge-urgent {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--color-secondary);
    color: #fff;
    padding: 5px 12px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: var(--shadow-neon-red);
}

/* =========================================================================
   SOBRE
========================================================================= */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--color-text-muted);
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-lbl {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.img-decor {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.sobre-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

/* =========================================================================
   AVALIAÇÕES
========================================================================= */
.card-review {
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text-muted);
    flex-grow: 1;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
}

.reviewer-name {
    font-weight: 600;
}

/* =========================================================================
   LOCALIZAÇÃO E CONTATO
========================================================================= */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-desc {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contato-list {
    margin-bottom: 40px;
}

.contato-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 48, 0.1);
    color: var(--color-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-data strong {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: #fff;
}

.info-data span {
    color: var(--color-text-muted);
}

.w-100 {
    width: 100%;
}

.map-container {
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================================================
   TIPOS DE VEÍCULOS
========================================================================= */
.veiculos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.veiculo-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.veiculo-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.veiculo-title {
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: bold;
}

/* =========================================================================
   FOOTER
========================================================================= */
.footer {
    background-color: #07080a;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 90px;
    max-width: 100%;
    object-fit: contain;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin: 0 0 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--color-text-muted);
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--color-primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 25px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================================================
   FLOATING BUTTON & ANIMATIONS
========================================================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--color-whatsapp-hover);
}

.floating-wa .tooltip {
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.floating-wa:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* JS Animation Classes */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s;
    will-change: opacity, visibility, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.slide-up {
    transform: translateY(50px);
}

.slide-down {
    transform: translateY(-50px);
}

.slide-left {
    transform: translateX(50px);
}

.slide-right {
    transform: translateX(-50px);
}

.zoom-in {
    transform: scale(0.9);
}

.fade-in {
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* =========================================================================
   RESPONSIVE
========================================================================= */
.header-mobile-links {
    display: none;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .sobre-content,
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-mobile-links {
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-right: 50px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .header-btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--color-bg-dark);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        padding: 80px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .veiculos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
        display: inline-block;
    }

    .footer-brand p {
        margin: 0 auto 20px auto;
    }

    .social-links {
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 110px 0 60px 0;
        min-height: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-logo {
        width: 15rem;
        max-width: 75%;
        margin-bottom: 1rem;
    }

    .banner-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 65px;
    }

    .veiculo-card {
        padding: 15px 10px;
    }
    
    .veiculo-icon {
        font-size: 2rem;
    }
    
    .veiculo-title {
        font-size: 1.1rem;
    }
}