/* ========================================
   Transportes JR - Estilos v3.0
   Design Profissional Azul e Branco
   ======================================== */

/* Variáveis CSS */
:root {
    --dark: #0a1628;
    --dark-lighter: #0f172a;
    --blue: #1e40af;
    --blue-light: #2563eb;
    --blue-dark: #1e3a8a;
    --accent: #1e40af;
    --accent-light: #3b82f6;
    --accent-dark: #1e3a8a;
    --light: #f8fafc;
    --white: #ffffff;
    --muted: #94a3b8;
    --surface: #0f172a;
    --card: rgba(30, 41, 59, .7);
    --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6);
    --gradient-blue: linear-gradient(135deg, #1e3a8a, #0f172a);
    --shadow-primary: 0 15px 40px rgba(30, 64, 175, .4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, .3);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Navegação
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all .4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 22, 40, .98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.nav-c {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-img {
    width: auto;
    height: 45px;
    border-radius: 0;
    object-fit: contain;
}

.logo-t {
    display: none;
}

.logo-t span {
    color: var(--accent);
}

/* Menu de Navegação */
.nav-l {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-l a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
    position: relative;
}

.nav-l a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width .3s ease;
}

.nav-l a:hover::after {
    width: 100%;
}

.nav-l a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--dark) !important;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Menu Mobile Toggle */
.mob {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mob span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all .3s ease;
}

.mob.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mob.active span:nth-child(2) {
    opacity: 0;
}

.mob.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, .98);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: .5rem 0;
    transition: .3s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu .nav-cta {
    display: inline-block;
    margin-top: .5rem;
}

/* ========================================
   Hero Section - Design Melhorado
   ======================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-blue);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, .15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, .1), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(26, 54, 93, .5), transparent 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .9) 0%, rgba(10, 22, 40, .4) 50%, rgba(10, 22, 40, .8) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 65%;
    height: 100%;
    z-index: 0;
    opacity: .6;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(30, 64, 175, .1), transparent);
    overflow: hidden;
    z-index: 2;
}

.hero-road::before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -100%;
    width: 300%;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--accent) 0 60px, transparent 60px 120px);
    animation: road 25s linear infinite;
}

@keyframes road {
    to {
        transform: translateX(33.33%);
    }
}

.hero-c {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(30, 64, 175, .15);
    border: 1px solid rgba(30, 64, 175, .4);
    padding: .6rem 1.25rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.2);
    }
}

.hero h1 {
    font-family: 'Bebas Neue';
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.hero h1 .hl {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(30, 64, 175, .5);
}

.hero-d {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
}

.btn-p {
    background: var(--gradient-primary);
    color: var(--dark);
}

.btn-p:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-s {
    background: rgba(255, 255, 255, .05);
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
}

.btn-s:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .3);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat {
    text-align: center;
}

.stat-n {
    font-family: 'Bebas Neue';
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 30px rgba(30, 64, 175, .3);
}

.stat-l {
    font-size: .85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: .25rem;
}

/* ========================================
   Brands Section - Nova Seção
   ======================================== */
.brands {
    background: var(--dark);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, .3), transparent);
}

.brands-carousel {
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
}

.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark), transparent);
}

.brands-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.brand-item:hover {
    background: rgba(30, 64, 175, .1);
    border-color: rgba(30, 64, 175, .3);
    transform: scale(1.05);
}

.brand-logo {
    width: 80px;
    height: 50px;
    color: var(--muted);
    transition: color .3s ease;
}

.brand-item:hover .brand-logo {
    color: var(--accent);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, .5), rgba(15, 23, 42, .7));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 64, 175, .3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.brand-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark);
}

.brand-card h4 {
    font-family: 'Bebas Neue';
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: .5rem;
}

.brand-card p {
    color: var(--muted);
    font-size: .9rem;
}

/* ========================================
   Seções Gerais
   ======================================== */
section {
    padding: 5rem 2rem;
}

.sec-c {
    max-width: 1400px;
    margin: 0 auto;
}

.sec-h {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: .75rem;
    padding: .5rem 1rem;
    background: rgba(30, 64, 175, .1);
    border-radius: 50px;
}

.sec-t {
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.sec-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--surface);
}

.about-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-main {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--blue), var(--dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border: 2px solid rgba(30, 64, 175, .1);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation-delay: 1s;
}

.ring-3 {
    width: 360px;
    height: 360px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: .3;
        transform: scale(1);
    }
    50% {
        opacity: .6;
        transform: scale(1.05);
    }
}

.about-y {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-yn {
    font-family: 'Bebas Neue';
    font-size: 6rem;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 80px rgba(30, 64, 175, .6);
}

.about-yt {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--light);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: 3;
}

.about-bt {
    font-family: 'Bebas Neue';
    font-size: .9rem;
    color: var(--dark);
    text-align: center;
    line-height: 1.2;
}

.about-co .sec-tag {
    margin-bottom: 1rem;
}

.about-co h2 {
    font-family: 'Bebas Neue';
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.about-co h2 span {
    color: var(--accent);
}

.about-co p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-f {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-fi {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-fi-i {
    width: 48px;
    height: 48px;
    background: rgba(30, 64, 175, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(30, 64, 175, .2);
}

.about-fi-i svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.about-fi h4 {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.about-fi p {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
}

/* ========================================
   Mission Section
   ======================================== */
.mission {
    background: var(--dark);
}

.mission-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mission-c {
    background: linear-gradient(145deg, rgba(30, 41, 59, .6), rgba(15, 23, 42, .8));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .4s ease;
}

.mission-c:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
    border-color: rgba(30, 64, 175, .2);
}

.mission-c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-i {
    width: 65px;
    height: 65px;
    background: rgba(30, 64, 175, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(30, 64, 175, .2);
}

.mission-i svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.mission-c h3 {
    font-family: 'Bebas Neue';
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: .75rem;
}

.mission-c p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--surface);
}

.svc-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-c {
    background: linear-gradient(145deg, rgba(30, 41, 59, .7), rgba(15, 23, 42, .9));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .4s ease;
}

.svc-c:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 64, 175, .3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
}

.svc-n {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Bebas Neue';
    font-size: 3rem;
    color: rgba(30, 64, 175, .1);
}

.svc-i {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(30, 64, 175, .3);
}

.svc-i svg {
    width: 32px;
    height: 32px;
    stroke: var(--dark);
    stroke-width: 2;
}

.svc-c h3 {
    font-family: 'Bebas Neue';
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: .75rem;
}

.svc-c p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
}

.svc-f {
    margin-top: 1.25rem;
}

.svc-fi {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
    font-size: .9rem;
    color: var(--muted);
}

.svc-fi::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ========================================
   Coverage Section
   ======================================== */
.coverage {
    background: var(--dark);
}

.cov-c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cov-t h2 {
    font-family: 'Bebas Neue';
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cov-t h2 span {
    color: var(--accent);
}

.cov-t p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cov-l {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.loc {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, .5);
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.loc:hover {
    border-color: rgba(30, 64, 175, .3);
    transform: translateX(5px);
}

.loc.sede {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(30, 64, 175, .15), rgba(30, 64, 175, .05));
    border-color: rgba(30, 64, 175, .3);
}

.loc-i {
    width: 44px;
    height: 44px;
    background: rgba(30, 64, 175, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc.sede .loc-i {
    background: var(--gradient-primary);
}

.loc-i svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.loc.sede .loc-i svg {
    stroke: var(--dark);
}

.loc h4 {
    font-size: 1rem;
    margin-bottom: .15rem;
}

.loc span {
    font-size: .85rem;
    color: var(--muted);
}

.cov-m {
    background: linear-gradient(145deg, rgba(30, 41, 59, .5), rgba(15, 23, 42, .7));
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .05);
}

.map-container {
    width: 100%;
    aspect-ratio: 1;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-caption {
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
    margin-top: 1rem;
}

/* ========================================
   Differentials Section
   ======================================== */
.diff {
    background: var(--surface);
}

.diff-g {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.diff-c {
    background: linear-gradient(145deg, rgba(30, 41, 59, .4), rgba(15, 23, 42, .6));
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .4s ease;
}

.diff-c:hover {
    border-color: rgba(30, 64, 175, .3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.diff-i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(30, 64, 175, .3);
}

.diff-i svg {
    width: 26px;
    height: 26px;
    stroke: var(--dark);
}

.diff-c h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .4rem;
}

.diff-c p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.cta-c {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: .75rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(10, 22, 40, .8);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ct {
    background: var(--dark);
    color: var(--light);
}

.btn-ct:hover {
    background: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

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

.btn-cto:hover {
    background: var(--dark);
    color: var(--light);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--dark);
}

.con-g {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.con-i h2 {
    font-family: 'Bebas Neue';
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: .75rem;
}

.con-i h2 span {
    color: var(--accent);
}

.con-i > p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.con-m {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.con-mi {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.con-mi-i {
    width: 52px;
    height: 52px;
    background: rgba(30, 64, 175, .1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(30, 64, 175, .2);
}

.con-mi-i svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.con-mi h4 {
    font-size: 1rem;
    margin-bottom: .2rem;
}

.con-mi a,
.con-mi p {
    color: var(--muted);
    text-decoration: none;
    font-size: .95rem;
    margin: 0;
    transition: .3s;
}

.con-mi a:hover {
    color: var(--accent);
}

/* Social */
.con-soc {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.con-soc h4 {
    font-size: .9rem;
    margin-bottom: .75rem;
    color: var(--muted);
}

.soc-l {
    display: flex;
    gap: .75rem;
}

.soc-a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    border: 1px solid rgba(255, 255, 255, .05);
}

.soc-a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.soc-a svg {
    width: 20px;
    height: 20px;
    fill: var(--light);
    transition: .3s;
}

.soc-a:hover svg {
    fill: var(--dark);
}

/* Form */
.con-f {
    background: linear-gradient(145deg, rgba(30, 41, 59, .6), rgba(15, 23, 42, .8));
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .05);
    box-shadow: var(--shadow-card);
}

.con-f h3 {
    font-family: 'Bebas Neue';
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.form-r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-g {
    margin-bottom: 1rem;
}

.form-g.fw {
    grid-column: span 2;
}

.form-g label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: .4rem;
    color: var(--muted);
}

.form-g input,
.form-g select,
.form-g textarea {
    width: 100%;
    padding: .9rem 1rem;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: var(--light);
    font-size: .95rem;
    font-family: 'Barlow';
    transition: all .3s ease;
}

.form-g input:focus,
.form-g select:focus,
.form-g textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(30, 64, 175, .2);
}

.form-g textarea {
    resize: vertical;
    min-height: 100px;
}

.form-g select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-g select option {
    background: var(--surface);
    color: var(--light);
}

.btn-sub {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-lighter);
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 4rem 2rem 2rem;
}

.ft-c {
    max-width: 1400px;
    margin: 0 auto;
}

.ft-m {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.ft-b .logo {
    margin-bottom: 1rem;
}

.ft-b p {
    color: var(--muted);
    font-size: .95rem;
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.ft-col h4 {
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ft-links {
    list-style: none;
}

.ft-links li {
    margin-bottom: .5rem;
}

.ft-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .95rem;
    transition: .3s;
}

.ft-links a:hover {
    color: var(--accent);
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.ft-copy {
    font-size: .9rem;
    color: var(--muted);
}

.ft-leg {
    display: flex;
    gap: 2rem;
}

.ft-leg a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    transition: .3s;
}

.ft-leg a:hover {
    color: var(--accent);
}

/* ========================================
   WhatsApp Button
   ======================================== */
.wpp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
    z-index: 1000;
    transition: all .3s ease;
    text-decoration: none;
}

.wpp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, .6);
}

.wpp svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ========================================
   Responsividade
   ======================================== */
@media (max-width: 1200px) {
    .diff-g {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-l {
        display: none;
    }
    
    .mob {
        display: flex;
    }
    
    .hero-image {
        width: 100%;
        opacity: .3;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-d {
        margin: 0 auto 2rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-g,
    .cov-c,
    .con-g {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        order: -1;
    }
    
    .about-main {
        height: 320px;
    }
    
    .mission-g,
    .svc-g {
        grid-template-columns: 1fr;
    }
    
    .diff-g {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ft-m {
        grid-template-columns: 1fr 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 1.25rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-f {
        grid-template-columns: 1fr;
    }
    
    .cov-l {
        grid-template-columns: 1fr;
    }
    
    .loc.sede {
        grid-column: span 1;
    }
    
    .diff-g {
        grid-template-columns: 1fr;
    }
    
    .form-r {
        grid-template-columns: 1fr;
    }
    
    .form-g.fw {
        grid-column: span 1;
    }
    
    .ft-m {
        grid-template-columns: 1fr;
    }
    
    .ft-bot {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .ft-leg {
        flex-direction: column;
        gap: .5rem;
    }
}
