/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mwm-red: #ff2e17;
    --mwm-blue: #0a4bff;
    --mwm-dark: #1a1a1a;
    --mwm-gray: #f5f5f5;
    --mwm-white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--mwm-gray);
    color: var(--mwm-dark);
    line-height: 1.6;
}

/* ===== MENU FIXO ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    border-bottom: 2px solid var(--mwm-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mwm {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.logo-mwm span:nth-child(1) { color: var(--mwm-red); }
.logo-mwm span:nth-child(2) { color: var(--mwm-dark); }
.logo-mwm span:nth-child(3) { color: var(--mwm-blue); }
.logo-mwm span:nth-child(4) { color: var(--mwm-dark); }
.logo-mwm span:nth-child(5) { color: var(--mwm-red); }

.logo-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #666;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--mwm-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--mwm-red);
    border-bottom-color: var(--mwm-red);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--mwm-red);
}

/* ===== VÍDEO BACKGROUND ===== */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(20%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(255,255,255,0.95));
}

/* ===== CONTEÚDO PRINCIPAL ===== */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.home-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-mwm {
    font-weight: 700;
    color: var(--mwm-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.hero-logo-img {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 250px;
    }
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--mwm-red);
}

.metric-label {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== FROTA DESTAQUE ===== */
.frota-destaque {
    margin-top: 60px;
}

.frota-destaque h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.frota-destaque h2 i {
    color: var(--mwm-red);
}

.frota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.frota-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.frota-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: var(--mwm-red);
}

.frota-placa {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mwm-red);
    margin-bottom: 8px;
}

.frota-modelo {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.frota-status {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.frota-status i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.frota-local {
    font-size: 0.85rem;
    color: #888;
}

.frota-local i {
    color: var(--mwm-blue);
    margin-right: 5px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.page-header h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--mwm-red);
    margin: 15px auto;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ===== QUEM SOMOS ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--mwm-red);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.values-section {
    margin-top: 60px;
}

.values-section h2 {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--mwm-red);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--mwm-blue);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: #777;
    font-size: 0.9rem;
}

/* ===== FROTA COMPLETA ===== */
.frota-completa {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.frota-filtros {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    color: #666;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: var(--mwm-red);
    color: white;
    border-color: var(--mwm-red);
}

.frota-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.frota-card-large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.frota-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-header {
    background: linear-gradient(135deg, var(--mwm-red), var(--mwm-blue));
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frota-placa {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.frota-status-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.card-body {
    padding: 20px;
}

.card-body p {
    margin: 10px 0;
    color: #555;
    font-size: 0.95rem;
}

.card-body i {
    width: 25px;
    color: var(--mwm-blue);
}

/* ===== CONTATO ===== */
.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2rem;
    color: var(--mwm-red);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contato-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.contato-form-container h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contato-form .form-group {
    margin-bottom: 20px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--mwm-red);
    box-shadow: 0 0 0 3px rgba(255,46,23,0.1);
}

.btn-enviar {
    background: linear-gradient(135deg, var(--mwm-red), var(--mwm-blue));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,46,23,0.3);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contato-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .frota-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        gap: 20px;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .frota-grid-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-metrics {
        flex-direction: column;
    }
}

/* ===== LOGO NO MENU ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mwm-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo-mwm-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #666;
    border-left: 2px solid #ff2e17;
    padding-left: 15px;
    font-weight: 300;
}

/* Menu responsivo */
@media (max-width: 768px) {
    .logo-mwm-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo-mwm-img {
        height: 35px;
    }
    
    .logo-text {
        display: none; /* Esconde o texto "TRANSPORTES" em celulares muito pequenos */
    }
}

/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    --mwm-red: #ff2e17;
    --mwm-blue: #0a4bff;
    --mwm-dark: #333;
    --mwm-gray: #666;
    --mwm-light: #f5f5f5;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --border-radius: 12px;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--mwm-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA RESPONSIVA ===== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p { font-size: clamp(0.9rem, 2vw, 1rem); }

/* ===== MENU RESPONSIVO ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 2px solid var(--mwm-red);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mwm-img {
    height: clamp(35px, 5vw, 45px);
    width: auto;
}

.logo-text {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 2px;
    color: var(--mwm-gray);
    border-left: 2px solid var(--mwm-red);
    padding-left: 10px;
}

/* Menu toggle (mobile) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--mwm-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-menu a {
    text-decoration: none;
    color: var(--mwm-dark);
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 1rem);
    padding: 0.5rem 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--mwm-red);
    border-bottom-color: var(--mwm-red);
}

/* Redes sociais no menu */
.nav-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #eee;
}

.nav-social a {
    color: var(--mwm-gray);
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-bottom: none !important;
}

.nav-social a:hover {
    color: var(--mwm-red);
    transform: translateY(-2px);
}

/* ===== HERO SECTION RESPONSIVA ===== */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: -80px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.hero-logo-img {
    max-width: min(300px, 70%);
    height: auto;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line1 {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 300;
    display: block;
    margin-bottom: 5px;
}

.title-line2 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    display: block;
    color: white;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Métricas hero */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 4vw, 40px);
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.metric-badge-value {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: white;
}

.metric-badge-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Botões hero */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 3vw, 20px);
    flex-wrap: wrap;
}

.btn-outline-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 35px);
    border: 2px solid var(--mwm-red);
    border-radius: 50px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: all 0.3s;
}

.btn-outline-red:hover {
    background: var(--mwm-red);
    transform: translateY(-3px);
}

/* ===== GRIDS RESPONSIVOS ===== */
.fleet-grid,
.fleet-catalog-grid,
.differentials-grid,
.unidades-grid,
.contact-row {
    display: grid;
    gap: clamp(15px, 3vw, 25px);
    margin: 30px 0;
}

/* Desktop (padrão) */
.fleet-grid,
.fleet-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.differentials-grid {
    grid-template-columns: repeat(4, 1fr);
}

.unidades-grid {
    grid-template-columns: repeat(4, 1fr);
}

.contact-row {
    grid-template-columns: 1fr 1fr;
}

/* ===== CARDS RESPONSIVOS ===== */
.fleet-card,
.fleet-catalog-card,
.differential-card,
.unidade-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card-image,
.catalog-card-image {
    height: clamp(150px, 25vw, 200px);
}

.fleet-card-content,
.catalog-card-content {
    flex: 1;
    padding: clamp(15px, 3vw, 20px);
}

.fleet-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
}

/* ===== TABLET (até 900px) ===== */
@media screen and (max-width: 900px) {
    .fleet-grid,
    .fleet-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .unidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-row {
        grid-template-columns: 1fr;
    }
    
    /* Ajustes no menu */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        border-top: 2px solid var(--mwm-red);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-social {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    
    /* Ajustes hero */
    .hero-video-wrapper {
        min-height: 500px;
    }
    
    .scroll-indicator {
        bottom: -50px;
    }
}

/* ===== CELULAR (até 600px) ===== */
@media screen and (max-width: 600px) {
    .fleet-grid,
    .fleet-catalog-grid,
    .differentials-grid,
    .unidades-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-video-wrapper {
        min-height: 400px;
        height: 90vh;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-outline-red {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Ajustes de padding */
    .frota-section,
    .contact-form-wrapper,
    .contact-direct-wrapper,
    .info-block {
        padding: 20px !important;
    }
    
    /* Ajustes de fonte */
    .section-subtitle {
        margin-left: 0 !important;
        font-size: 1rem !important;
    }
    
    .fleet-filters {
        gap: 8px;
    }
    
    .filtro-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ===== CELULAR PEQUENO (até 380px) ===== */
@media screen and (max-width: 380px) {
    .logo-text {
        display: none;
    }
    
    .hero-logo-img {
        max-width: 80%;
    }
    
    .filtro-btn {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .fleet-details {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITÁRIOS ===== */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ===== RODAPÉ ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #f0f0f0;
    margin-top: 60px;
    border-top: 3px solid #ff2e17;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Coluna 1 - Logo e descrição */
.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff2e17, #0a4bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #ff2e17;
    transform: translateY(-3px);
}

/* Títulos das colunas */
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff2e17, #0a4bff);
    border-radius: 3px;
}

/* Coluna 2 - Links */
.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a i {
    font-size: 0.7rem;
    color: #ff2e17;
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: #ff2e17;
    transform: translateX(5px);
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

/* Coluna 3 - Unidades */
.footer-unidade {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-unidade i {
    color: #ff2e17;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-unidade strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-unidade p {
    color: #bbb;
    margin: 0;
}

/* Coluna 4 - Contato */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: #bbb;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: #ff2e17;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item strong {
    color: white;
    display: block;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.footer-contact-item p {
    color: #bbb;
    margin: 0;
    line-height: 1.4;
}

.footer-contact-item .urgente {
    color: #ff2e17;
    font-weight: 600;
    margin-top: 3px;
}

/* Bottom bar (copyright) */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Mudado para centralizar */
    align-items: center;
    color: #999;
    font-size: 0.85rem;
}

.footer-credits i {
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== RESPONSIVO DO RODAPÉ ===== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-unidade,
    .footer-contact-item {
        justify-content: center;
    }
}