:root {
    --primary-color: #1a2238;
    --secondary-color: #ff6a00;
    --accent-color: #ffd700;
    --text-color: #fff;
    --text-secondary: #bfc9d9;
    --header-glass: rgba(26,34,56,0.85);
    --header-glass-light: rgba(26,34,56,0.65);
    --header-border: #ff6a00;
    --dark-bg: #f89e20;
    --card-bg: #f89e20;
    --light-gray: #d2d2d2;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    --gradient-2: linear-gradient(135deg, rgba(255, 106, 0, 0.775) 0%, rgba(255, 133, 51, 0.1) 100%);
}

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: transparent;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}



.header {
    width: 100%;
    background: rgba(26, 34, 56, 0.95);
    z-index: 10;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    max-width: none !important;
    margin: 0 !important;
    position: relative;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0 0.8rem 0;
    width: 100%;
    position: relative;
    z-index: 3;
    background: transparent;
}

.navbar > *:first-child {
    flex-shrink: 0;
}

.navbar > *:nth-child(2) {
    margin-left: auto;
}

.navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.8rem 0 0.8rem 0 !important;
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
}

.nav-right {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    padding-right: 2rem !important;
}

.logo {
    padding-left: 5% !important;
}
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding-left: 5%;
}


.logo img {
    height: 55px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}


.logo:hover {
    transform: scale(1.05);
}

.logo:hover img {
    filter: brightness(1.2);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    padding-right: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
    position: relative;
    z-index: 3;
    justify-content: flex-end;
}
.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    font-family: 'Roboto', sans-serif;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF8533);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a:focus {
    color: #FF6B00;
    transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}
.nav-links li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0.8rem;
    border-radius: 1px;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #e55a00, #ff6b00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0.7rem 2vw;
    }
    .nav-links {
        gap: 0.8rem;
        margin-right: 0;
    }
    .logo img {
        height: 45px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

.header-top {
    display: none;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

.mobile-menu {
    display: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    position: relative;
    background: linear-gradient(90deg, #ffe6b3 0%, #ffb347 50%, #1a2238 100%);
    overflow: hidden;
    padding: 4vw 0 2vw 0;
}
.hero::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 60vw;
    background: linear-gradient(90deg, rgba(26,34,56,0.0) 0%, rgba(26,34,56,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    z-index: 2;
    max-width: 48%;
    padding-left: 6vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.hero-content h1 {
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #111;
    text-shadow: 0 6px 32px #ffb34722, 0 2px 8px #1a223822;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    filter: brightness(1.08);
    animation: none;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}
.hero-kicker {
    display: inline-block;
    margin-bottom: 3rem;
    padding: 1rem 0;
    font-size: 5.2rem;
    font-weight: 900;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #ffd27a;
    background: none;
    border: none;
    border-bottom: 4px solid #ffd27a;
    text-shadow: 0 6px 30px rgba(255, 210, 122, 0.4);
    position: relative;
    transition: all 0.4s ease;
}

.hero-kicker::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd27a, #ff6b00);
    transition: width 0.4s ease;
}

.hero-kicker:hover {
    color: #fff;
    text-shadow: 0 8px 35px rgba(255, 210, 122, 0.6);
    letter-spacing: 18px;
    transform: scale(1.02);
}

.hero-kicker:hover::after {
    width: 100%;
}
.hero-content p {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
    color: #fffbe6;
    text-shadow: 0 2px 12px #1a2238cc, 0 1px 2px #ffb34755;
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: 1.25;
    max-width: 90%;
}
.hero-features, .hero-stats, .hero-segments, .hero-trust-link { display: none !important; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; cursor: pointer; }
.btn-primary {
    font-size: 1.25rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
    color: #1a2238; background: linear-gradient(90deg, #ffd27a 0%, #ff9a2b 100%);
    border: none; border-radius: 14px; padding: 1.2rem 1.8rem; box-shadow: 0 6px 24px #ffb34755;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.05); box-shadow: 0 10px 32px #ffb34799; }
.btn-secondary {
    font-size: 1.2rem; font-weight: 800; color: #fff; background: #25D366; border-radius: 14px; padding: 1.1rem 1.6rem;
    border: 1px solid #1fb257; box-shadow: 0 6px 24px #1fb25755;
}
.btn-secondary:hover { background: #1fb257; transform: translateY(-2px); }
.cta-button {
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #ff6a00 0%, #ffd700 100%);
    box-shadow: 0 2px 16px #ffb34733;
    padding: 1.2rem 2.8rem;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    outline: none;
}
.cta-button:hover {
    background: linear-gradient(90deg, #ffd700 0%, #ff6a00 100%);
    color: #1a2238;
    box-shadow: 0 6px 32px #ffb34788, 0 0 0 4px #ffd70044;
    transform: scale(1.04);
    border: none;
}
.cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px #ffb34755;
}
.scroll-down-cta {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2.5rem;
    text-align: left;
    z-index: 2;
    letter-spacing: 1.2px;
    opacity: 0.92;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}
.scroll-down-cta i {
    font-size: 2.5rem;
    color: #ff6a00;
    margin-top: 0.2rem;
    animation: bounceDown 1.2s infinite alternate;
}
@keyframes bounceDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 4.2rem; }
    .hero-content p { font-size: 1.25rem; }
}
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; }
    .btn-primary, .btn-secondary { font-size: 1rem; padding: 0.9rem 1.2rem; }
    .hero-features { gap: 0.6rem; }
}
.hero-truck {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    max-width: 50%;
    z-index: 1;
    min-height: 300px;
}
.hero-truck::before {
    content: '';
    position: absolute;
    right: 80px;
    bottom: 60px;
    width: 340px;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(255,255,220,0.38) 0%, rgba(255,255,220,0.0) 80%);
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}
.hero-truck img {
    width: 735px;
    max-width: 110%;
    height: auto;
    filter: brightness(1.18) contrast(1.12) drop-shadow(0 8px 32px #ffb34788);
    animation: none;
    display: block;
    margin-left: auto;
    margin-right: -40px;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .hero-truck::before {
        width: 60vw;
        height: 60vw;
        right: 6vw;
        bottom: 18vw;
    }
    .hero-truck img {
        width: 95vw;
        margin: 2rem auto 0 auto;
        margin-right: 0;
    }
}

.hero.hero-pro { min-height: 117.6vh; padding: 0; background: #0e0e10; position: relative; z-index: 2; }
.hero.hero-pro::after { width: 0; background: none; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) contrast(1.05) brightness(0.55); }
.hero-bg-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255, 153, 51, 0.25) 0%, rgba(14,14,16,0.7) 40%, rgba(14,14,16,0.95) 100%), linear-gradient(90deg, rgba(14,14,16,0.7) 0%, rgba(14,14,16,0.3) 50%, rgba(14,14,16,0.9) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; align-items: center; gap: 2rem; max-width: 1280px; margin: 0; padding: 20vh 4vw; }
.hero-left { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: 100%; }
.hero-right { display: none; }
.hero-title { font-size: 3.2rem; font-weight: 900; margin: 1.5rem 0 1.8rem 0; letter-spacing: 0.5px; line-height: 1.2; color: #fff; text-transform: none; text-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.hero-title-inline { max-width: 900px; white-space: nowrap; }
.hero-rotate { display: inline; position: relative; margin-left: 0.5rem; white-space: nowrap; }
.hero-rotate b { position: absolute; left: 0; top: 0; opacity: 0; white-space: nowrap; background: linear-gradient(90deg, #ffd27a 0%, #ff6b00 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-rotate b.is-visible { position: relative; opacity: 1; }
.hero-sub { font-size: 1.35rem; color: #f7f7f7; max-width: 720px; line-height: 1.65; margin-bottom: 1.4rem; opacity: 0.95; }
.hero-visual img, .hero-glow { display: none; }
.hero .cta-group { margin-top: 2rem; }
.hero-quicklinks { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }
.hero-meta { margin-top: 1.1rem; color: #ffd27a; font-weight: 800; opacity: 0.95; }

.logo-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 6rem 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FF6B00 20%, #FF6B00 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    z-index: 10;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float i {
    transition: all 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(5deg);
}

.logo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.logo-left {
    position: relative;
}

.video-card.modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 7;
    width: 100%;
    margin-left: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.video-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
    z-index: 1;
}

.video-card.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.header-icon i {
    color: white;
    font-size: 1.8rem;
}

.video-title {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.video-thumbnail {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    display: block;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-placeholder:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-placeholder:hover .video-preview {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(255, 107, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(255, 107, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.play-icon {
    position: relative;
    z-index: 2;
}

.play-icon i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.play-button:hover .play-icon i {
    transform: scale(1.1);
}

.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.play-button:hover .ripple-effect {
    width: 120px;
    height: 120px;
}


.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-modal-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: #000;
}

.video-modal-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 80vh;
    }
    
    .video-modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}



.video-info {
    margin-top: 1.5rem;
}



.video-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.logo-right {
    padding-left: 0;
    width: 100%;
}

.content-header {
    margin-bottom: 2.5rem;
    width: 100%;
}

.animated-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    margin-bottom: 1.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.animated-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.title-container {
    position: relative;
}

.title-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.content-text {
    margin-bottom: 3rem;
    width: 100%;
}

.text-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
}

.text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF6B00, #FFD700);
    border-radius: 0 2px 2px 0;
}

.text-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.card-icon i {
    color: #FF6B00;
    font-size: 1.5rem;
}

.text-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.text-card .highlight {
    color: #FF6B00;
    font-weight: 600;
}

.content-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: #fff;
    border: none;
    box-shadow: 
        0 10px 30px rgba(255, 107, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 107, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modern-btn:hover .btn-icon {
    transform: translateX(5px);
}


@media (max-width: 1024px) {
    .logo-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1rem;
    }
    
    .video-card.modern-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .logo-right {
        padding-left: 0;
        text-align: center;
    }
    
    .animated-line {
        margin: 0 auto 1.5rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .stats-preview {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .floating-shape {
        display: none;
    }
    
    .video-card.modern-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .video-placeholder {
        height: 200px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon i {
        font-size: 18px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .text-card {
        padding: 1rem;
    }
    
    .modern-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-preview {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-section {
        padding: 3rem 0;
    }
    
    .video-card.modern-card {
        padding: 1rem;
    }
    
    .video-placeholder {
        height: 180px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .modern-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}


/* Barra de Serviços Rolante */
.services-scroll {
    background: linear-gradient(90deg, #374151 0%, #4b5563 50%, #6b7280 100%);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.scroll-content {
    display: flex;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
    gap: 2.5rem;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-item {
    color: #d1d5db;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scroll-item:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 8vh 5vw; }
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: 1.2rem; }
  .hero-visual img { display: none; }
  
  .fleet-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
  .fleet-stats { gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-title { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  
  .fleet { padding: 4rem 1rem; }
  .fleet h2 { font-size: 2.2rem; }
  .fleet-subtitle { font-size: 1rem; }
  .fleet-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .fleet-stats { flex-direction: column; gap: 1.5rem; }
  .fleet-stat-number { font-size: 2rem; }
  
  .services-scroll { padding: 0.8rem 0; }
  .scroll-item { font-size: 0.9rem; padding: 0.4rem 0.8rem; }
  .scroll-content { gap: 2rem; animation-duration: 25s; }
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    mix-blend-mode: screen;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 107, 0, 0.8),
                     0 0 30px rgba(255, 107, 0, 0.6),
                     0 0 40px rgba(255, 107, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
}

/* Services Section */
.services {
    padding: 6rem 1rem;
    background: var(--primary-color);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
}

.services h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    margin-top: 0.5rem;
    animation: pulseWidth 2s infinite;
}

.services h2::before {
    content: 'Conheça nossas soluções';
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: rgba(17, 17, 17, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    background: rgba(17, 17, 17, 0.9);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

.about {
    background: linear-gradient(120deg, rgba(10,12,20,0.98) 80%, rgba(26,34,56,0.98) 100%);
    width: 100%;
    margin: 0;
    padding: 4rem 0 4rem 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}
.about-content {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section {
    background: var(--primary-color);
    margin: 0;
    padding: 0;
}

.about-section h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.history-content {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.history-text {
    flex: 1;
    max-width: 600px;
}

.history-text p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.history-image {
    flex: 1;
    max-width: 600px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.1);
}

@media (max-width: 992px) {
    .about {
        padding: 4rem 2rem;
    }

    .history-content {
        flex-direction: column;
        gap: 3rem;
    }

    .history-text, 
    .history-image {
        max-width: 100%;
    }
}

.valores {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.7) 0%, rgba(34, 34, 34, 0.7) 100%);
}

.valores-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.valores-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px 10px 12px 10px;
    margin: 0;
    min-height: 80px;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.valores-list li:hover {
    border: 1.5px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(255,107,0,0.10);
    background: rgba(40, 40, 40, 1);
}

.valores-list li i {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.valores-list li h3 {
    font-size: 1.08rem;
    margin-bottom: 0.15rem;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.valores-list li p {
    font-size: 0.93rem;
    margin: 0;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
}

.valores-list {
    gap: 8px;
    padding: 6px 0 6px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Fleet Section - NOVO DESIGN */
.fleet {
    padding: 6rem 2rem;
    background: #1a2238;
    position: relative;
    overflow: hidden;
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b00, transparent);
}

.fleet-header {
    text-align: center;
    margin-bottom: 5rem;
}

.fleet-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.fleet h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    border-radius: 2px;
}

.fleet-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: nowrap;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
}

.fleet-card {
    background: rgba(17, 17, 17, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.fleet-card:hover::before {
    transform: translateX(100%);
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    background: rgba(17, 17, 17, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fleet-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    z-index: 2;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-status {
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b00;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fleet-specs {
    display: flex;
    gap: 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.fleet-specs span {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fleet-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.fleet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fleet-card-header h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.fleet-card-header i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.fleet-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.fleet-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    justify-content: space-between;
}

.fleet-feature {
    background: rgba(100, 149, 237, 0.1);
    color: #bccce9;
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(100, 149, 237, 0.3);
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.fleet-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.fleet-stat {
    text-align: center;
}

.fleet-stat-number {
    color: #ff6b00;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.fleet-stat-label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 1.5rem 1rem 0.5rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0.3) 20%, 
        #ff6b00 50%, 
        rgba(255, 107, 0, 0.3) 80%, 
        transparent 100%
    );
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    font-size: 1.18rem;
}
.footer-info {
    padding-right: 2rem;
}
.footer-info h3,
.footer-contact h3,
.footer-address h3 {
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    font-size: 1.7rem;
    letter-spacing: 1.2px;
}
.footer-info h3::after,
.footer-contact h3::after,
.footer-address h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(255, 107, 0, 0.2);
}
.footer-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-contact p,
.footer-address p,
.footer-info p {
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.footer-contact p:hover,
.footer-address p:hover,
.footer-info p:hover {
    color: var(--white);
}
.footer-contact i,
.footer-address i,
.footer-info i {
    color: var(--secondary-color);
    font-size: 1.7rem;
    min-width: 32px;
    transition: color 0.3s, transform 0.3s;
}
.footer-contact p:hover i,
.footer-address p:hover i,
.footer-info p:hover i {
    color: #fff;
    transform: scale(1.18) translateY(-2px);
}
.social-media {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
.social-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: auto;
    min-height: auto;
    max-width: none;
    max-height: none;
    font-size: 2.1rem;
    margin: 0;
    color: #ffffff;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: color 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
    line-height: 1;
    position: relative;
    z-index: 1;
    text-decoration: none !important;
    vertical-align: middle;
    overflow: visible;
}
.social-icon > * {
    font-size: 2.1rem !important;
    color: inherit !important;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.social-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    border-radius: 0;
    border: none;
    transition: border 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.85);
    z-index: 0;
    opacity: 0;
}
.social-icon:hover {
    color: #ffffff;
    background: none;
}
.social-icon:hover::after {
    border: none;
    box-shadow: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
}
.social-icon:hover > * {
    transform: scale(1.1);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes socialGradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes socialStrokeGlow {
    0% { box-shadow: none; }
    50% { box-shadow: none; }
    100% { box-shadow: none; }
}
.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
    color: var(--text-secondary);
    font-size: 1.13rem;
    letter-spacing: 0.4px;
}
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-contact {
        grid-template-columns: 1fr;
    }
    .social-media {
        grid-column: 1;
    }
}
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
        padding: 0 2rem;
    }
    .footer-info h3::after,
    .footer-contact h3::after,
    .footer-address h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact p {
        justify-content: center;
    }
    .social-media {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.value-card,
.fleet-card {
    animation: fadeIn 0.6s ease-out;
}

/* Clients Section */
.clients {
    padding: 3.6rem 0;
    background: linear-gradient(120deg, rgba(10,12,20,0.98) 80%, rgba(26,34,56,0.98) 100%);
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0.3) 20%, 
        #ff6b00 50%, 
        rgba(255, 107, 0, 0.3) 80%, 
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
    z-index: 1;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.clients h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-size: 2.2rem;
    position: relative;
    font-weight: 900;
}

.clients-description {
    text-align: center;
    color: #e0e0e0;
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto 2.4rem;
    opacity: 0.9;
    white-space: nowrap;
    width: 100%;
}

.clients-grid {
    display: flex;
    gap: 1.2rem;
    animation: scrollClients 80s linear infinite;
    padding: 0.6rem 0;
    width: max-content;
}

.clients-grid:hover {
    animation-play-state: paused;
}

.client-card {
    flex: 0 0 168px;
    background: #1a2238;
    border-radius: 7px;
    padding: 1.2rem;
    transition: all 0.4s ease;
    border: 1px solid #ff8000d2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-5px);
    background: #1a2238;
    border-color: #ff8000f8;
    box-shadow: 0 5px 15px #ff6a001e;
}

.client-logo {
    width: 120px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    position: relative;
    background: var(--white);
    border-radius: 5px;
    padding: 0.6rem;
    margin: 0 auto 0.9rem;
    overflow: hidden;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1) opacity(0.8);
    transition: all 0.4s ease;
}

.client-card:hover .client-logo img {
    filter: brightness(1) opacity(1);
    transform: scale(1.05);
}

.client-info h4 {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.client-info p {
    color: #e0e0e0;
    font-size: 0.66rem;
    opacity: 0.9;
    line-height: 1.6;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 6 - 2rem * 6));
    }
}

/* Efeitos Visuais Únicos */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Efeito de Brilho nos Cards */
.service-card::before, .fleet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
}

/* Efeito de Hover 3D nos Cards */
.fleet-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Efeito de Glow nos Botões */
.cta-button::after, .submit-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
}

/* Efeito de Parallax no Hero */
.hero-content h1 {
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Efeito de Texto Gradiente Animado */
.gradient-text {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* História Timeline */
.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        #FF6B00 15%,
        #FF6B00 85%,
        transparent
    );
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding-right: 2.5rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2.5rem;
    transform: translateX(50px);
}

.timeline-item:nth-child(even).visible {
    transform: translateX(0);
}

.timeline-content {
    background: rgba(17, 17, 17, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #FF6B00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.timeline-date {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #FF6B00;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.timeline-icon {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -45px;
}

.timeline-content:hover .timeline-icon {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

.timeline-content h3 {
    color: #FF6B00;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.timeline-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-highlight {
    background: rgba(17, 17, 17, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.2);
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-highlight i {
    color: #FF6B00;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.about-highlight p {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .history-timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 70px;
    }

    .timeline-icon {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-date {
        left: 10px;
        top: -10px;
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
}

.mvv-container {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}
.tabs::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -10px;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff6b00 0%, #fff 100%, #ff6b00 100%);
    border-radius: 2px;
    opacity: 0.13;
    animation: mvvTabsSeparatorGlow 3.5s linear infinite alternate;
}
@keyframes mvvTabsSeparatorGlow {
    0% { filter: blur(0px) brightness(1); }
    100% { filter: blur(2px) brightness(1.3); }
}
.tab {
    padding: 0.8rem 2.5rem;
    background: rgba(255,107,0,0.07);
    border: 2px solid rgba(255,107,0,0.18);
    color: #fff;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 2px 12px rgba(255,107,0,0.04);
    letter-spacing: 1px;
    z-index: 1;
}
.tab:not(.active):hover {
    background: rgba(255,107,0,0.13);
    border-color: #ff6b00;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 18px #ff6b0033;
}
.tab.active {
    background: linear-gradient(90deg, #ff6b00 0%, #ff8533 100%);
    color: #fff;
    border: none;
    box-shadow: 0 0 24px #ff6b00, 0 2px 24px 0 rgba(0,0,0,0.18);
    transform: scale(1.08) translateY(-3px);
    animation: mvvTabGlow 2.2s infinite alternate;
}
@keyframes mvvTabGlow {
    0% { box-shadow: 0 0 12px #ff6b00, 0 2px 12px #ff6b00; }
    100% { box-shadow: 0 0 32px #ff6b00, 0 2px 24px #ff6b00; }
}
.tab-content {
    display: none;
    height: auto;
    overflow-y: visible;
    opacity: 0;
    animation: none;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
.tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeInTabContent 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInTabContent {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.tab-content-inner {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.tab-content i {
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 12px #ff6b00cc);
    animation: mvvIconPulse 1.8s infinite alternate;
}
@keyframes mvvIconPulse {
    0% { filter: drop-shadow(0 0 8px #ff6b00cc); transform: scale(1); }
    100% { filter: drop-shadow(0 0 24px #ff6b00); transform: scale(1.13); }
}
.tab-content h3 {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #ff6b00 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 18px rgba(255,107,0,0.10);
    animation: mvvTitleGlow 2.5s infinite alternate;
}
@keyframes mvvTitleGlow {
    0% { text-shadow: 0 2px 8px #ff6b0033; }
    100% { text-shadow: 0 2px 24px #ff6b00; }
}
.tab-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.8;
    opacity: 0.97;
    animation: fadeInTabText 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInTabText {
    from { opacity: 0; }
    to { opacity: 0.97; }
}

/* Página Agregado */
.agregado-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/truck-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.agregado-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.agregado-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    animation: fadeInDown 1s ease-out;
    position: relative;
}

.agregado-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    animation: pulseWidth 2s infinite;
}

.agregado-hero p {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.6;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.beneficios {
    padding: 8rem 2rem;
    background: #000000;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 1;
}

.beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.beneficios h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    user-select: none;
    position: relative;
    padding-bottom: 1rem;
}

.beneficios h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    pointer-events: none;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
}

.beneficio-card {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.1);
    pointer-events: none;
    user-select: none;
    position: static;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.beneficio-card:nth-child(1) { animation-delay: 0.2s; }
.beneficio-card:nth-child(2) { animation-delay: 0.4s; }
.beneficio-card:nth-child(3) { animation-delay: 0.6s; }
.beneficio-card:nth-child(4) { animation-delay: 0.8s; }

.beneficio-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

.beneficio-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    pointer-events: none;
    user-select: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.beneficio-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    pointer-events: none;
    user-select: none;
    opacity: 0.9;
}

.requisitos {
    padding: 8rem 2rem;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.requisitos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.requisitos h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.requisitos h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
}

.requisitos-container {
    max-width: 800px;
    margin: 0 auto;
}

.requisito-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.7);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.requisito-item:nth-child(1) { animation-delay: 0.2s; }
.requisito-item:nth-child(2) { animation-delay: 0.4s; }
.requisito-item:nth-child(3) { animation-delay: 0.6s; }
.requisito-item:nth-child(4) { animation-delay: 0.8s; }
.requisito-item:nth-child(5) { animation-delay: 1s; }

.requisito-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    animation: pulseIcon 2s ease-in-out infinite;
}

.requisito-item p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes pulseWidth {
    0% { width: 60px; }
    50% { width: 100px; }
    100% { width: 60px; }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .agregado-hero h1 {
        font-size: 2.8rem;
    }

    .agregado-hero p {
        font-size: 1.2rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beneficios h2,
    .requisitos h2 {
        font-size: 2.5rem;
    }

    .requisito-item {
        padding: 1.5rem;
    }

    .requisito-item i {
        font-size: 1.8rem;
    }

    .requisito-item p {
        font-size: 1.1rem;
    }
}

/* Página Sobre */
.sobre-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/truck-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.sobre-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sobre-hero p {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* História Section */
.historia {
    background: transparent;
    padding: 6rem 0 3rem 0;
    display: flex;
    justify-content: center;
}
.historia-card {
    background: rgba(20, 20, 20, 0.97);
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    max-width: 1400px;
    width: 96vw;
    padding: 3.5rem 3rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
}
.historia-main {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: center;
    justify-content: space-between;
}
.historia-text-block {
    flex: 1.2;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    max-width: 600px;
}
.historia-text-block h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.1;
}
.historia-text-block p {
    color: #e0e0e0;
    font-size: 1.18rem;
    line-height: 2.1;
    margin-bottom: 1.2rem;
}
.historia-img-block {
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.historia-img-block img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.4s;
}
.historia-img-block:hover img {
    transform: scale(1.04) rotate(-1deg);
}
.historia-pilares-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2.5rem;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    list-style: none;
    padding: 0;
}
.historia-pilares-grid li {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1.08rem;
    padding: 1.1rem 1.5rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 400;
}
.historia-pilares-grid li i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    min-width: 24px;
}
.historia-pilares-grid li b {
    color: #fff;
    font-size: 1.08rem;
    margin-right: 0.3rem;
}
@media (max-width: 1100px) {
    .historia-main {
        flex-direction: column;
        gap: 2rem;
    }
    .historia-img-block {
        max-width: 100%;
        min-width: 0;
    }
    .historia-img-block img {
        height: 220px;
    }
    .historia-card {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
}
@media (max-width: 700px) {
    .historia-pilares-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .historia-card {
        padding: 1rem 0.2rem 1rem 0.2rem;
    }
    .historia-img-block img {
        height: 160px;
    }
}

/* Valores Section */
.valores {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.valores h2 {
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: rgba(26, 34, 56, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ffd700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.valor-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    background: rgba(26, 34, 56, 0.95);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.valor-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.valor-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.valor-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Diferenciais Section */
.diferenciais {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.diferenciais h2 {
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diferencial-item {
    background: rgba(26, 34, 56, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ffd700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.diferencial-item:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    background: rgba(26, 34, 56, 0.95);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.diferencial-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.diferencial-item h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.diferencial-item p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .historia-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .historia-image {
        order: -1;
    }

    .destaques {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sobre-hero h1 {
        font-size: 3rem;
    }

    .sobre-hero p {
        font-size: 1.2rem;
    }

    .historia h2,
    .valores h2,
    .diferenciais h2 {
    font-size: 2.5rem;
    }

    .destaques {
        grid-template-columns: 1fr;
    }

    .valor-card,
    .diferencial-item {
        padding: 2rem;
    }
}

.contact-section {
    padding: 3.84rem 0 3.2rem 0;
    background: #1a2238;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    max-width: 384px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(25,25,25,0.95);
    border-radius: 15px;
    box-shadow: 
        0 16px 48px 0 rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    padding: 2.24rem 1.6rem 1.6rem 1.6rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInSobre 1.2s cubic-bezier(.4,0,.2,1);
}
.contact-container h2 {
    font-size: 1.73rem;
    margin-bottom: 0.77rem;
    color: #ff6b00;
    font-weight: 900;
    letter-spacing: 1px;
}
.contact-description {
    font-size: 0.8rem;
    margin-bottom: 1.6rem;
    color: #e0e0e0;
    font-weight: 400;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.83rem;
    align-items: center;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.7rem 0.77rem 0.7rem 2.05rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.72rem;
    font-family: 'Roboto', sans-serif;
    box-shadow: 
        0 3px 13px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255,255,255,0.1);
    box-shadow: 
        0 5px 19px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transform: translateY(-1px);
}
.contact-form textarea {
    min-height: 70px;
    resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ffb97a;
    opacity: 0.8;
    font-size: 0.69rem;
}
.contact-form button.cta-button {
    width: 100%;
    padding: 0.77rem 0;
    font-size: 0.77rem;
    font-weight: 800;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #fff;
    border: none;
    box-shadow: 
        0 3px 13px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    margin-top: 0.32rem;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}
.contact-form button.cta-button:hover {
    background: linear-gradient(90deg, #ff8533 0%, #ff6b00 100%);
    box-shadow: 
        0 6px 26px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-2px) scale(1.02);
}
/* Ícones nos inputs */
.contact-form .input-icon {
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b00;
    font-size: 0.83rem;
    pointer-events: none;
    opacity: 0.85;
}
.contact-form .input-wrapper {
    position: relative;
    width: 100%;
}
@media (max-width: 700px) {
    .contact-container {
        padding: 1.28rem 0.32rem 0.96rem 0.32rem;
    }
    .contact-section {
        padding: 1.92rem 0 1.28rem 0;
    }
    .contact-container h2 {
        font-size: 1.28rem;
    }
    .contact-description {
        font-size: 0.67rem;
    }
}

/* Galeria de Fotos */
.galeria {
    padding: 5rem 0 3rem 0;
    background: transparent;
    position: relative;
    z-index: 3;
}

.galeria-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    font-weight: 900;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #222;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255,107,0,0.2);
}

.galeria-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,107,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.galeria-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-item:hover .galeria-overlay i {
    transform: scale(1);
}

@media (max-width: 900px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Zoom on hover para imagens principais */
.zoom-on-hover img, .zoom-on-hover {
    transition: transform 0.4s, box-shadow 0.4s;
}
.zoom-on-hover:hover img, .zoom-on-hover:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(100, 149, 237, 0.2);
}

/* Destaque nos cards de valores e diferenciais */
.valor-card, .diferencial-item {
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    border: 2px solid #ff6b00;
    background: rgba(26,34,56,0.95);
    transition: all 0.3s ease;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.valor-card:hover, .diferencial-item:hover {
    box-shadow: 0 8px 32px rgba(255,107,0,0.25);
    border: 2px solid #ff6b00;
    background: rgba(26,34,56,0.98);
    transform: translateY(-5px);
}
.valor-card i, .diferencial-item i {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: rgba(255,107,0,0.15);
    border-radius: 50%;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,107,0,0.2);
    border: 2px solid rgba(255,107,0,0.3);
}
@keyframes pulseIconSobre {
    0%,100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}

.valor-card:hover i, .diferencial-item:hover i {
    color: #fff;
    background: rgba(255,107,0,0.25);
    box-shadow: 0 4px 12px rgba(255,107,0,0.4);
    transform: scale(1.05);
    border-color: #ff6b00;
}

.valor-card h3, .diferencial-item h3 {
    color: #ff6b00;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
}

.valor-card h3::after, .diferencial-item h3::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ff6b00;
    border-radius: 1px;
}

.valor-card p, .diferencial-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Bloco de impacto */
.impacto {
    background: transparent;
    padding: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.impacto-box {
    position: relative;
    display: inline-block;
    background: rgba(26,34,56,0.95);
    border-radius: 24px;
    padding: 2.2rem 2.5rem;
    box-shadow: 0 8px 32px rgba(255,107,0,0.15);
    border: 2px solid #ff6b00;
    margin: 0 auto;
    transition: all 0.3s ease;
    max-width: 800px;
    overflow: hidden;
}

.impacto-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.1), transparent);
    transition: left 0.6s ease;
}

.impacto-box:hover::before {
    left: 100%;
}

.impacto-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255,107,0,0.25);
    border-color: #ffd700;
}

.impacto-icon {
    position: relative;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.impacto-box i {
    color: #ffd700;
    font-size: 2.5rem;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.impacto-box:hover i {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,215,0,0.8);
    transform: scale(1.1);
}

.impacto-box p {
    color: #fff;
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.impacto-box:hover p {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

@media (max-width: 768px) {
    .impacto-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .impacto-box i {
        font-size: 2.2rem;
    }
    
    .impacto-box p {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .impacto-box:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 900px) {
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    .impacto-box {
        padding: 1.2rem 0.7rem;
    }
}

.historia .container {
    max-width: 1700px;
    padding: 0 7vw;
}
.historia-content {
    gap: 5rem 8vw;
}
.historia-text p {
    color: var(--white);
    font-size: 1.35rem;
    line-height: 2.1;
    margin-bottom: 2.5rem;
}
.historia h2 {
    font-size: 3.5rem;
    margin-bottom: 3.5rem;
}
.historia-pilares {
    gap: 1.7rem 2.5rem;
}
.historia-pilares li {
    font-size: 1.25rem;
    padding: 1.1rem 1.5rem;
}
.historia-pilares li i {
    font-size: 1.7rem;
}
.historia-pilares li b {
    font-size: 1.18rem;
}
@media (max-width: 1100px) {
    .historia .container {
        padding: 0 2vw;
    }
    .historia-content {
        gap: 2.5rem 2vw;
    }
}

/* Fundo gradiente premium */
.nova-historia-fundo {
    background: transparent;
    padding: 6rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 6rem 3rem 3rem 3rem;
    position: relative;
    z-index: 2;
}

/* Card glassmorphism */
.historia-glass-card {
    background: rgba(30, 30, 30, 0.82);
    border-radius: 32px;
    box-shadow: 0 8px 40px 0 rgba(255,107,0,0.13), 0 1.5px 24px 0 rgba(0,0,0,0.18);
    max-width: 1800px;
    width: 99vw;
    padding: 3.5rem 3rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,107,0,0.13);
}

.historia-main-nova {
    display: flex;
    flex-direction: row;
    gap: 6rem;
    align-items: center;
    justify-content: space-between;
}

.historia-text-block-nova {
    flex: 1.5;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    max-width: 900px;
}

.historia-titulo-gradiente {
    font-size: 2.7rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.1;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
}

.historia-destaque {
    color: #ff6b00;
    font-weight: 700;
    font-size: 1.18em;
}

.historia-text-block-nova p {
    color: #e0e0e0;
    font-size: 1.22rem;
    line-height: 2.1;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.historia-text-block-nova p:last-child {
    white-space: nowrap;
}

.historia-img-block-nova {
    flex: 1.2;
    min-width: 320px;
    max-width: 700px;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
}
.historia-img-block-nova img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
    transform: scale(0.9) !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 107, 0, 0.3), 0 0 20px rgba(255, 107, 0, 0.2) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 3px solid rgba(255, 107, 0, 0.5) !important;
    outline: none !important;
    border-radius: 15px;
}

.historia-pilares-nova {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    margin: 2.5rem auto 0 auto;
    max-width: 1000px;
    width: 100%;
}

.historia-pilar-card {
    background: rgba(26,34,56,0.95);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    border: 2px solid #ff6b00;
    padding: 2.5rem 2rem 2rem 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 0;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUpSobre 1s cubic-bezier(.4,0,.2,1) both;
    text-align: center;
    position: relative;
    z-index: 2;
}
.historia-pilar-card:hover {
    background: rgba(26,34,56,0.98);
    border: 2px solid #ff6b00;
    box-shadow: 0 8px 32px rgba(255,107,0,0.25);
    transform: translateY(-5px);
}
.historia-pilar-card i {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    padding: 1rem;
    transition: all 0.3s ease;
}
.historia-pilar-card:hover i {
    color: #ff6b00;
    background: rgba(255,107,0,0.2);
}
.historia-pilar-card h3 {
    color: #ff6b00;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
}

.historia-pilar-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ff6b00;
    border-radius: 1px;
}
.historia-pilar-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}
@media (max-width: 1100px) {
    .historia-pilares-nova {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Fundo da página Sobre */
.sobre-page-body {
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.sobre-page-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a2238 0%, #0a0e1a 50%, #1a2238 100%);
    min-height: 100vh;
    width: 100%;
}

.sobre-page-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle at 50% 45%, rgba(100, 149, 237, 0.15) 0%, rgba(26, 34, 56, 0.98) 60%, #1a2238 100%);
    z-index: -1;
    pointer-events: none;
}

.sobre-page-wrapper::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(26, 34, 56, 0.01) 0%, #1a2238 100%);
    pointer-events: none;
    z-index: -1;
}

/* Hero Animado Sobre */
.sobre-hero-animada {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.sobre-hero-particulas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background: repeating-radial-gradient(circle at 30% 40%, rgba(100, 149, 237, 0.3) 0 1px, transparent 2px 100px),
                repeating-radial-gradient(circle at 80% 70%, rgba(100, 149, 237, 0.2) 0 1px, transparent 2px 100px),
                repeating-radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px 100px),
                repeating-radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px 100px);
    opacity: 0.1;
    mix-blend-mode: lighten;
    min-height: 100vh;
}

.sobre-hero-logo-fundo {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    height: 135%;
    pointer-events: none;
    z-index: 1;
    background-image: url('../images/clientes/logo.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.034;
    mix-blend-mode: soft-light;
    filter: brightness(0.6) contrast(0.8);
}
.sobre-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.sobre-hero-titulo-glow {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #bccce9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
    animation: glowTextSobre 2.5s infinite alternate, pulseTextSobre 2.8s infinite;
    position: relative;
}
@keyframes glowTextSobre {
    0% { filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.2)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1)); }
    100% { filter: drop-shadow(0 0 32px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.2)); }
}
@keyframes pulseTextSobre {
    0%,100% { letter-spacing: 2px; }
    50% { letter-spacing: 4px; }
}
.sobre-hero-titulo-glow::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 60%;
    height: 8px;
    background: linear-gradient(90deg, transparent, rgba(100, 149, 237, 0.6) 60%, transparent);
    opacity: 0.3;
    filter: blur(4px);
    pointer-events: none;
}

.sobre-hero-linha-animada {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b00, transparent);
    border-radius: 2px;
    animation: expandirLinha 1.5s ease-out 0.8s forwards, pulsarLinha 3s ease-in-out 2.3s infinite, respirarLinha 4s ease-in-out 2.3s infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes expandirLinha {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: 200px; opacity: 1; }
}

@keyframes pulsarLinha {
    0%, 100% { 
        transform: scaleX(1);
    }
    50% { 
        transform: scaleX(1.1);
    }
}

@keyframes respirarLinha {
    0%, 100% { 
        width: 200px;
    }
    50% { 
        width: 150px;
    }
}
.sobre-hero-subtitulo {
    color: #bccce9;
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeInSobreHero 1.2s 0.5s forwards, moveUpSobreHero 1.2s 0.5s forwards;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@keyframes fadeInSobreHero {
    to { opacity: 1; }
}
@keyframes moveUpSobreHero {
    from { transform: translateY(30px); }
    to { transform: translateY(0); }
}
@media (max-width: 900px) {
    .sobre-hero-titulo-glow { font-size: 2.2rem; }
    .sobre-hero-content { padding: 2.5rem 1rem 2rem 1rem; }
}

/* Hero Fullscreen marcante */
.hero-fullscreen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), visibility 0.8s;
    opacity: 1;
    visibility: visible;
}
.hero-fullscreen.hide-hero {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hidden-on-hero {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1);
}
.show-after-hero {
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1);
}

.scroll-down-cta {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: bounceDown 2s infinite;
    color: #ff6b00;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    user-select: none;
}
.scroll-down-cta i {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    animation: bounceIcon 1.2s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}
@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Esconde o scroll enquanto hero está ativo */
body.hero-active {
    overflow: hidden;
}

.error-message {
    color: #ff2d2d;
    font-size: 1rem;
    margin-top: 0.3rem;
    margin-left: 0.2rem;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.2px;
    animation: fadeInSobre 0.5s;
}
.contact-form input.error,
.contact-form textarea.error {
    border: 1.5px solid #ff2d2d !important;
    background: rgba(255,45,45,0.07) !important;
}

.footer-content > div {
    opacity: 0;
    transform: translateY(30px);
    animation: footerFadeIn 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
.footer-content > div:nth-child(1) { animation-delay: 0.2s; }
.footer-content > div:nth-child(2) { animation-delay: 0.5s; }
.footer-content > div:nth-child(3) { animation-delay: 0.8s; }
@keyframes footerFadeIn {
    to {
        opacity: 1;
    transform: translateY(0);
    }
}
.footer-info h3, .footer-contact h3, .footer-address h3 {
    text-shadow: 0 0 8px #ff6b0033, 0 2px 8px rgba(255,107,0,0.10);
    transition: text-shadow 0.3s;
}
.footer-info h3:hover, .footer-contact h3:hover, .footer-address h3:hover {
    text-shadow: 0 0 8px #ff6a005a, 0 2px 8px #ff6a005d;
}
.social-icon {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}
.social-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
}
.footer-bottom {
    position: relative;
}
.footer-bottom::before {
    content: none;
}
@keyframes footerSeparatorGlow {
    0% { filter: blur(0px) brightness(1); }
    100% { filter: blur(2px) brightness(1.3); }
}

.social-icon, .social-icon * {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.onde-estamos-section {
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto 0 auto;
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
    background: transparent;
}
.onde-estamos-container {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}
.onde-estamos-header {
    text-align: left;
    margin-bottom: 0.5rem;
    position: relative;
}
.onde-estamos-sub {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.1rem;
    position: relative;
}
.onde-estamos-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
    position: relative;
    display: inline-block;
}
.onde-estamos-title::after {
    content: '';
    display: block;
    width: 110px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00 0%, #fff 100%);
    margin-top: 0.3rem;
    border-radius: 2px;
    opacity: 0.7;
}
.onde-estamos-desc {
    color: #bccce9;
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.onde-estamos-content {
    display: flex;
    flex-direction: row;
    gap: 4vw;
    align-items: flex-start;
    justify-content: flex-start;
}
.onde-estamos-mapa {
    max-width: 1128px;
    padding: 2.2rem 2vw 1.2rem 2vw;
}
.cidade-card {
    min-width: 260px;
    padding: 1.1rem 2.5rem 1.1rem 1.5rem;
}
.onde-estamos-mapa {
    max-width: 1138px;
    margin: 0 0 0 -30%;
    position: relative;
    z-index: 1;
}
.onde-estamos-mapa img {
    width: 100%;
    height: auto;
    max-width: 1171px;
    display: block;
    margin: 0;
}

    
/* Lista de cidades premium */
.onde-estamos-lista ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.onde-estamos-lista li {
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 0.5px;
    position: relative;
}
.onde-estamos-lista li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7em;
    height: 1.7em;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00 60%, #ffb97a 100%);
    color: #fff;
    font-size: 1.1em;
    font-weight: 900;
    margin-right: 0.3rem;
    box-shadow: 0 0 8px #ff6b0033;
}
.onde-estamos-lista li:hover {
    color: #ffb97a;
}
.onde-estamos-lista li b {
    color: #ff6b00;
    font-weight: 900;
    margin-right: 0.2em;
}
@media (max-width: 900px) {
    .onde-estamos-content {
        flex-direction: column;
    gap: 2.2rem;
    }
    .onde-estamos-mapa {
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
}

.onde-pin-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.7rem;
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}
.onde-estamos-lista ul {
    gap: 1.7rem;
}
.onde-estamos-lista li {
    position: relative;
    padding: 0;
    margin: 0;
    align-items: center;
    min-height: 28px;
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    background: none;
    box-shadow: none;
}
.onde-estamos-lista li::before {
    display: none;
}
.onde-cidade {
    font-size: 1.13rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.2em;
}
.onde-estado {
    color: #ffb97a;
    font-weight: 700;
    font-size: 1em;
    margin-left: 0.2em;
    letter-spacing: 0.5px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}
.onde-estamos-lista li:hover .onde-cidade {
    color: #ff6b00;
}
.onde-pin-svg svg {
    width: 20px;
    height: 20px;
}

.onde-estamos-lista.inovadora {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: flex-start;
    margin-top: 5.5rem;
}
.cidade-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(26,34,56,0.95);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    border: 2px solid #ff6b00;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    width: 320px;
    height: 100px;
    position: relative;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}
.cidade-card:hover {
    background: rgba(26,34,56,0.98);
    border: 2px solid #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(255,107,0,0.25);
}
.cidade-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    z-index: 2;
    font-size: 1.2rem;
    color: #ff6b00;
    background: rgba(255,107,0,0.15);
    border-radius: 50%;
    padding: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,107,0,0.2);
}
.cidade-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
    flex: 1;
}
.cidade-nome {
    font-size: 0.95rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.6px;
    white-space: nowrap;
}
.cidade-estado {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffb97a;
    letter-spacing: 0.6px;
    margin-left: 0.1em;
}

.cidade-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cidade-tipo {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ff6b00;
    background: rgba(255,107,0,0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cidade-contato {
    font-size: 0.75rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.cidade-contato i {
    color: #ff6b00;
    font-size: 0.7rem;
}

.cidade-arrow {
    color: #ff6b00;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.cidade-card:hover .cidade-nome {
    color: #ffb97a;
}
.cidade-card:hover .cidade-estado {
    color: #ff6b00;
}
.cidade-card:hover .cidade-pin {
    color: #fff;
    background: rgba(255,107,0,0.25);
    box-shadow: 0 4px 12px rgba(255,107,0,0.3);
    transform: scale(1.05);
}
.cidade-card:hover .cidade-arrow {
    opacity: 1;
    transform: translateX(3px);
}
@media (max-width: 900px) {
    .onde-estamos-lista.inovadora {
        flex-direction: row;
        gap: 1.2rem;
        align-items: flex-start;
        justify-content: center;
        margin-top: 2.2rem;
    }
    .cidade-card {
        width: 280px;
        height: 90px;
        padding: 1.2rem 1.5rem;
    }
    .cidade-contato {
        font-size: 0.8rem;
    }
}
@media (max-width: 600px) {
    .onde-estamos-lista.inovadora {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        margin-top: 1.2rem;
    }
    .cidade-card {
        width: 100%;
        height: 90px;
        padding: 1.2rem 1rem;
    }
    .cidade-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    .cidade-contato {
        font-size: 0.75rem;
    }
}

.mvv-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.mvv-block {
    background: linear-gradient(120deg, rgba(26,34,56,0.92) 60%, rgba(26,34,56,0.82) 100%);
    border-radius: 2rem;
    box-shadow: 0 1.5px 32px 0 rgba(26,34,56,0.10);
    border: 1px solid #ff6a00;
    padding: 2.5rem 2rem 2.5rem 2rem;
    min-width: 300px;
    max-width: 370px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e0e6f6;
    text-align: center;
    font-weight: 700;
    font-size: 1.18rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    margin-bottom: 1.5rem;
}
.mvv-block:hover {
    box-shadow: 0 4px 16px 0 rgba(26,34,56,0.15);
    border-color: #ffd700;
    transform: translateY(-6px) scale(1.025);
}
.mvv-block h3 {
    color: #ff6a00;
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 900;
    text-shadow: none;
    position: relative;
    display: inline-block;
}
.mvv-block h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #ffb347 0%, #ff6a00 100%);
    border-radius: 2px;
    margin: 0.5rem auto 0 auto;
}
.mvv-block ul.valores-list li {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #e0e6f6;
    font-weight: 700;
    font-size: 1.13rem;
    border-radius: 0;
    padding: 0.2rem 0;
    margin: 0;
    text-align: center;
    display: list-item;
}
@media (max-width: 1100px) {
    .mvv-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        max-width: 95vw;
    }
    .mvv-block {
        max-width: 95vw;
    }
}

.mvv-block {
    border: 1px solid #8a400089;
}

/* Modal da Galeria */
.galeria-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.galeria-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: rgba(26,34,56,0.95);
    border-radius: 24px;
    border: 2px solid #ff6b00;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.galeria-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,107,0,0.2);
    background: rgba(255,107,0,0.05);
}

.modal-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #ff6b00;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255,107,0,0.1);
    color: #fff;
}

.modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image-container {
    position: relative;
    width: 100%;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.image-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem;
}

.image-counter {
    color: #ff6b00;
    font-weight: 700;
    font-size: 1rem;
}

.image-description {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255,107,0,0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.nav-btn:hover {
    background: #ff6b00;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.modal-thumbnails {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,107,0,0.2);
    background: rgba(0,0,0,0.1);
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: #ff6b00 rgba(255,107,0,0.1);
}

.thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: rgba(255,107,0,0.1);
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item.active {
    border-color: #ff6b00;
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .image-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ===== PÁGINA TRABALHE CONOSCO ===== */

/* Hero CTA Button */
.hero-cta-container {
    margin-top: 2rem;
    animation: fadeInUpSobre 1s 1.5s both;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    border: 2px solid transparent;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateY(3px);
}

/* Timeline de Carreira - Nova Versão */
.career-timeline {
    padding: 6rem 0;
    position: relative;
    background: rgba(26, 34, 56, 0.2);
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0.7;
    transition: all 0.5s ease;
    animation: fadeInUpSobre 0.8s ease both;
}

.journey-step:nth-child(1) { animation-delay: 0.2s; }
.journey-step:nth-child(2) { animation-delay: 0.4s; }
.journey-step:nth-child(3) { animation-delay: 0.6s; }
.journey-step:nth-child(4) { animation-delay: 0.8s; }

.journey-step.active {
    opacity: 1;
}

.journey-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.journey-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #1a2238;
    border: 3px solid #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #ff6b00;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.step-connector {
    position: absolute;
    top: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.journey-step:nth-child(odd) .step-connector {
    left: 100%;
    transform: translateY(-50%);
}

.journey-step:nth-child(even) .step-connector {
    right: 100%;
    transform: translateY(-50%);
}

.journey-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.journey-step:hover .step-content::before {
    left: 100%;
}

.journey-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.step-header h3 {
    color: #ff6b00;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.step-duration {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.step-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e0e0e0;
    font-size: 1rem;
}

.feature-item i {
    color: #ff6b00;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.timeline-content {
    padding: 2rem;
    background: rgba(26, 34, 56, 0.9);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content h3 {
    color: #ff6b00;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Vagas Section */
.vagas-section {
    padding: 6rem 0;
}

.vagas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vagas-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vaga-card {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.vaga-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.vaga-card:hover::before {
    left: 100%;
}

.vaga-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.vaga-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vaga-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vaga-icon i {
    font-size: 1.5rem;
    color: white;
}

.vaga-badge {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vaga-card h3 {
    color: #ff6b00;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vaga-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vaga-details span {
    color: #e0e0e0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vaga-details i {
    color: #ff6b00;
    width: 16px;
}

.vaga-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vaga-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.candidatar-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.candidatar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Benefícios Cards 3D */
.beneficios-section {
    padding: 6rem 0;
}

.beneficios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.beneficios-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.beneficio-card-3d {
    perspective: 1000px;
    height: 200px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.beneficio-card-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.card-front {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.card-back {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    transform: rotateY(180deg);
    color: white;
}

.card-front i {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.card-front h3 {
    color: #ff6b00;
    font-size: 1.3rem;
    font-weight: 700;
}

.card-back h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-back p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Estatísticas */
.stats-section {
    padding: 6rem 0;
    background: rgba(26, 34, 56, 0.3);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 34, 56, 0.9);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b00;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.stat-label {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Candidatura Section */
.candidatura-section {
    padding: 6rem 0;
}

.candidatura-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.candidatura-content {
    text-align: center;
}

.candidatura-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.candidatura-description {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.candidatura-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.method-card i {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: #ff6b00;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.method-card p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.method-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .journey-step {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }
    
    .step-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-features {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .timeline-title,
    .vagas-title,
    .beneficios-title,
    .stats-title,
    .candidatura-title {
        font-size: 2rem;
    }
}

/* Vagas Section */
.vagas-section {
    padding: 6rem 0;
}

.vagas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vagas-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .vagas-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .candidatura-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-title,
    .vagas-title,
    .beneficios-title,
    .stats-title,
    .candidatura-title {
        font-size: 2rem;
    }
}

/* Animações para números */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease-out;
}

/* ===== NOVAS SEÇÕES ===== */

/* Por que Trabalhar na Transdell */
.why-work-section {
    padding: 6rem 0;
    background: rgba(26, 34, 56, 0.3);
}

.why-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-work-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-work-text {
    color: #e0e0e0;
}

.why-work-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f3f3f3;
}

.why-work-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-work-text strong {
    color: #ff6b00;
    font-weight: 700;
}

.why-work-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    background: rgba(26, 34, 56, 0.9);
    border: 2px solid #ff6b00;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.highlight-item i {
    font-size: 2rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    color: #ff6b00;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefícios Detalhados */
.benefits-detailed-section {
    padding: 6rem 0;
}

.benefits-detailed-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-detailed-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-detailed-card {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.benefit-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-detailed-card:hover::before {
    left: 100%;
}

.benefit-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-detailed-card h3 {
    color: #ff6b00;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-detailed-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
}

.benefit-features li {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: bold;
}

/* Call to Action */
.call-to-action-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(26, 34, 56, 0.9) 100%);
}

.call-to-action-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.cta-stat {
    text-align: center;
}

.cta-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b00;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.cta-label {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-message {
    background: rgba(26, 34, 56, 0.9);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.cta-message p {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-author {
    color: #ff6b00;
    font-weight: 600;
    font-size: 1rem;
}

/* Formulário de Candidatura */
.application-form-section {
    padding: 6rem 0;
    background: rgba(26, 34, 56, 0.3);
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.application-form-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.application-form-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.application-form {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Enhanced form animations */
.form-group {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating label effect */
.form-group {
    position: relative;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-8px) scale(0.85);
    color: #ffd700;
}

/* Enhanced input focus effects */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b00;
    box-shadow: 
        0 0 30px rgba(255, 107, 0, 0.4),
        0 8px 25px rgba(255, 107, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    transform: translateY(-3px);
}

/* Custom input validation */
.form-group input:valid,
.form-group textarea:valid {
    border-color: rgba(0, 255, 127, 0.5);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 99, 132, 0.5);
}

/* Add subtle glow to form container */
.contact-form-content {
    position: relative;
    overflow: hidden;
}

.contact-form-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #ff6b00;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    padding: 2rem 3rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    min-height: 70px;
    width: 100%;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 
        0 0 25px rgba(255, 107, 0, 0.4),
        0 0 0 1px rgba(255, 107, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 107, 0, 0.08) 100%);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.form-group small {
    color: rgba(255, 215, 0, 0.8);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 50%, #ffb366 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 107, 0, 0.5),
        0 0 0 1px rgba(255, 107, 0, 0.2);
    background: linear-gradient(135deg, #ff8533 0%, #ffb366 50%, #ffd700 100%);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Responsividade para novas seções */
@media (max-width: 768px) {
    .why-work-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-detailed-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .application-form {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .why-work-title,
    .benefits-detailed-title,
    .application-form-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
}

/* ===== PÁGINA DE CONTATO ===== */

/* Informações de Contato */
.contact-info-section {
    padding: 6rem 0;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

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

.contact-info-card h3 {
    color: #ff6b00;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-main {
    color: #f3f3f3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-secondary {
    color: #e0e0e0;
    font-size: 1rem;
}

.contact-action {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.contact-status {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Redes Sociais */
.social-section {
    padding: 6rem 0;
    background: rgba(26, 34, 56, 0.3);
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.25);
    border-color: #ff8533;
}

.social-card.whatsapp {
    border-color: #25d366;
}

.social-card.whatsapp:hover {
    border-color: #128c7e;
}

.social-card.instagram {
    border-color: #e4405f;
}

.social-card.instagram:hover {
    border-color: #c13584;
}

.social-card.linkedin {
    border-color: #0077b5;
}

.social-card.linkedin:hover {
    border-color: #005885;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.social-card.whatsapp .social-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-card.linkedin .social-icon {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-icon i {
    font-size: 2rem;
    color: white;
}

.social-card h3 {
    color: #ff6b00;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.social-action {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Formulário de Contato */
.contact-form-section {
    padding: 3rem 0;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-content {
    background: rgba(26, 34, 56, 0.95);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    padding: 4rem 5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.contact-form-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ff8533, #ff6b00);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b00 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
    letter-spacing: -1px;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ffd700);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
        width: 100px;
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
        width: 120px;
    }
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 2rem auto 0;
    font-weight: 400;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 1rem;
    max-width: 100%;
    width: 100%;
}

.form-group label {
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 176, 176, 0.7);
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 240px;
    line-height: 1.6;
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1.1rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1rem;
}

/* Mapa */
.map-section {
    padding: 6rem 0;
    background: rgba(26, 34, 56, 0.3);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ff6b00 20%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.map-info {
    background: rgba(26, 34, 56, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.15);
    text-align: center;
}

.map-info h3 {
    color: #ff6b00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.map-info p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-info i {
    color: #ff6b00;
    width: 20px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin: 1.5rem auto 0 auto;
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-embed iframe {
    border-radius: 20px;
}

/* Responsividade para página de contato */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-content {
        padding: 2rem;
    }
    
    .contact-form-container {
        max-width: 800px;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-title,
    .social-title,
    .form-title,
    .map-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .social-card {
        padding: 2rem;
    }
    
    .contact-form-content {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .form-group textarea {
        min-height: 150px;
    }
    
    .map-info {
        padding: 2rem;
    }
}


/* ===== ESTILOS PARA PÁGINA SEMI NOVOS ===== */

/* Seção de Destaque */
.destaque-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.destaque-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destaque-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #ffffff 0%, #bccce9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

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

.destaque-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.destaque-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
}

.destaque-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.destaque-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Seção de Veículos */
.veiculos-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.veiculos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.veiculos-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ffffff 0%, #bccce9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.veiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.veiculo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.veiculo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.veiculo-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.veiculo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.veiculo-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.veiculo-info {
    padding: 2rem;
}

.veiculo-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.veiculo-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
}

.veiculo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 107, 0, 0.2);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.veiculo-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.veiculo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.veiculo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Ações dos veículos */
.veiculo-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.veiculo-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.veiculo-details-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-2px);
}

/* Modal de Veículos */
.veiculo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.veiculo-modal.modal-active {
    opacity: 1;
}

.veiculo-modal-content {
    background: linear-gradient(135deg, #1a2238 0%, #0a0e1a 100%);
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.veiculo-modal.modal-active .veiculo-modal-content {
    transform: scale(1);
}

.veiculo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.veiculo-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    color: var(--secondary-color);
}

.veiculo-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 70vh;
    overflow: hidden;
}

.veiculo-gallery {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.main-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumbnail-images img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-images img:hover {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.veiculo-details-modal {
    padding: 2rem;
    overflow-y: auto;
}

.veiculo-info-modal h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.veiculo-specs-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.spec-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
}

.veiculo-features-modal h4,
.veiculo-description h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.veiculo-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.veiculo-price-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.veiculo-actions-modal {
    display: flex;
    gap: 1rem;
}

.veiculo-cta-modal {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.veiculo-cta-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.veiculo-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.veiculo-phone-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-2px);
}

/* Seção de Benefícios */
.beneficios-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.beneficios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.beneficios-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(90deg, #ffffff 0%, #bccce9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1);
}

.beneficio-icon i {
    font-size: 2rem;
    color: white;
}

.beneficio-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.beneficio-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Seção de Contato */
.contato-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contato-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff 0%, #bccce9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.contato-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contato-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.contato-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contato-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.2rem;
}

.contato-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contato-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 1200px) {
    .destaque-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .veiculos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .destaque-title,
    .veiculos-title,
    .beneficios-title,
    .contato-title {
        font-size: 2.2rem;
    }
    
    .veiculos-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .veiculo-details {
        grid-template-columns: 1fr;
    }
    
    .destaque-container,
    .veiculos-container,
    .beneficios-container,
    .contato-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .destaque-title,
    .veiculos-title,
    .beneficios-title,
    .contato-title {
        font-size: 1.8rem;
    }
    
    .veiculo-info,
    .beneficio-card,
    .contato-form {
        padding: 1.5rem;
    }
    
    .highlight-item,
    .contato-item {
        padding: 1.5rem;
    }
    
    .veiculo-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Responsividade do Modal */
    .veiculo-modal-body {
        grid-template-columns: 1fr;
        max-height: 80vh;
    }
    
    .veiculo-modal-content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .veiculo-modal-header {
        padding: 1.5rem;
    }
    
    .veiculo-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .veiculo-gallery,
    .veiculo-details-modal {
        padding: 1.5rem;
    }
    
    .main-image {
        height: 200px;
    }
    
    .thumbnail-images img {
        width: 60px;
        height: 45px;
    }
    
    .veiculo-specs-modal {
        grid-template-columns: 1fr;
    }
    
    .veiculo-actions-modal {
        flex-direction: column;
    }
    
    .veiculo-info-modal h3 {
        font-size: 1.5rem;
    }
}



/* Seção de Administração */
.admin-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Formulário de Login */
.login-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.login-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Header do Painel Admin */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

/* Cards de Seção Admin */
.admin-section-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
}

.admin-section-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-section-card h3 i {
    color: var(--secondary-color);
}

/* Lista de Veículos */
.vehicle-list {
    display: grid;
    gap: 1.5rem;
}

.admin-vehicle-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-vehicle-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.vehicle-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.vehicle-info p {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.status-available {
    color: #28a745;
    font-weight: 600;
}

.status-sold {
    color: #dc3545;
    font-weight: 600;
}

.vehicle-actions {
    display: flex;
    gap: 0.8rem;
}

.edit-btn,
.delete-btn,
.status-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.edit-btn {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.edit-btn:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.delete-btn {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.delete-btn:hover {
    background: rgba(220, 53, 69, 0.3);
    transform: translateY(-2px);
}

.status-btn {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-btn:hover {
    background: rgba(40, 167, 69, 0.3);
    transform: translateY(-2px);
}

/* Notificações */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

.notification i {
    font-size: 1.2rem;
}

.notification-success i {
    color: #28a745;
}

.notification-error i {
    color: #dc3545;
}

.notification-info i {
    color: #17a2b8;
}

/* Responsividade para Admin */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-header h2 {
        font-size: 2rem;
    }
    
    .admin-vehicle-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .vehicle-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .login-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}