/* ========================================
   NEW W360 - CSS REORGANIZADO E OTIMIZADO
   ======================================== */

/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary: #0055a5;
    --primary-dark: #0b1b3a;
    --secondary: #0f172a;
    --accent: #21a0ff;
    --dark: #212529;
    --light: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

html {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background-color: #0b1222;
}

body {
    color: #e2e8f0;
    background-color: #0b1222;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    position: relative;
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== HEADER ===== */
header {
    background: transparent;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 100px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    backdrop-filter: none;
    border: none;
    border-bottom: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

header.scrolled {
    background: rgba(255,255,255,0.82);
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    height: 60px;
    backdrop-filter: blur(16px);
}

@media (max-width: 768px) {
    header.scrolled {
        padding: 0 15px;
    }
    
    header.scrolled .header-container {
        padding: 0 5px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    transition: padding 0.3s ease;
    width: 100%;
}

header.scrolled .header-container {
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

header.scrolled .logo span {
    font-size: 1.6rem;
    transition: font-size 0.3s ease;
    text-shadow: none;
}

.logo span {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
}

.nav-menu li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    height: 100%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

header.scrolled .nav-link {
    color: #0055a5;
    text-shadow: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 7px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn:hover {
    background-color: #004080;
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--accent);
    color: #0b1222;
    border-radius: 30px;
}

.btn-accent:hover {
    background-color: #1a8cd8;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    z-index: 1002;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    header {
        padding: 0 15px;
        margin: 0;
        top: 0;
        position: sticky;
    }
    
    .header-container {
        padding: 15px 0;
        margin: 0;
    }
    
    header.scrolled .header-container {
        padding: 10px 0;
    }
    
    .hero {
        margin-top: -100px;
        padding-top: 100px;
        top: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 18, 34, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1001;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: white;
        text-shadow: none;
    }
    
    .mobile-menu-btn {
        display: block;
        color: white;
    }
    
    header.scrolled .mobile-menu-btn {
        color: var(--primary);
    }
    
    .header-container .btn {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: 0;
    color: white;
    margin-top: -100px;
    padding-top: 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    top: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.0) 55%, rgba(0,0,0,0.92) 100%),
        url('images/logistica_manager.png') left center/cover no-repeat;
    background-blend-mode: darken;
    transition: opacity 0.4s;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100% + 100px);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: rgba(10,18,34,0.62);
    top: -100px;
    height: calc(100% + 100px);
}

@media (max-width: 768px) {
    .hero-bg-overlay {
        background: rgba(10,18,34,0.35);
    }
    
    .hero-bg-image {
        background:
            linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%),
            url('images/logistica_manager.png') center center/cover no-repeat;
    }
}

.hero > .container,
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 0 #222;
    letter-spacing: 0.5px;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    max-width: 400px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.hero-media {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.glass-panel {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), #003a75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.video-play-button {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
    cursor: pointer;
}

.video-play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

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

.video-caption {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ===== MISSÃO, VISÃO E VALORES SECTION ===== */
.mvv-section {
    padding: 80px 0 60px 0;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: #0a1628;
}

.mvv-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background-image: url('images/truck.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.mvv-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.mvv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    min-width: 280px;
    max-width: 380px;
    flex: 1 1 280px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.mvv-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/truck.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 85, 165, 0.3);
}

.mvv-card:nth-child(1) {
    transition-delay: 0.1s;
}

.mvv-card:nth-child(2) {
    transition-delay: 0.2s;
}

.mvv-card:nth-child(3) {
    transition-delay: 0.3s;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #00a8ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 85, 165, 0.3);
    transition: transform 0.3s ease;
}

.mvv-card-slide.active .mvv-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.mvv-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.mvv-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mvv-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.mvv-text strong {
    color: #0f172a;
    font-weight: 600;
}

/* MVV Slider */
.mvv-slider-section {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.mvv-slider-container {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.mvv-slider-left {
    flex: 1.2;
    min-width: 270px;
}

.mvv-slider-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.1;
}

.mvv-slider-dot {
    color: var(--accent);
    font-size: 2.6rem;
    font-weight: 900;
}

.mvv-slider-desc {
    color: #cbd5e1;
    font-size: 1.13rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.mvv-slider-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv-card-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    min-height: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px 32px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mvv-card-slider.visible {
    opacity: 1;
    transform: translateY(0);
}

.mvv-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/truck.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    border-radius: 18px;
}

.mvv-card-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.mvv-card-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* Animação de saída */
.mvv-card-slide.exiting {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mvv-card-title {
    color: #1e293b;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.mvv-card-slide.active .mvv-card-title {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.mvv-card-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #00a8ff);
    margin: 0 auto 18px auto;
    border-radius: 2px;
}

.mvv-card-text {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.mvv-card-slide.active .mvv-card-text {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.mvv-card-list {
    color: #475569;
    font-size: 1.05rem;
    text-align: left;
    margin: 0 auto;
    padding-left: 1.2rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.mvv-card-slide.active .mvv-card-list {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.mvv-card-slide.active .mvv-card-line {
    animation: scaleInX 0.5s ease-out 0.25s both;
}

@keyframes scaleInX {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.mvv-slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.mvv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2a3344;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.mvv-dot.active {
    background: var(--accent);
}

/* ===== ALTERNATING SECTION ===== */
.alternating-section {
    padding: 80px 0;
    background-color: rgba(11, 18, 34, 0.8);
    position: relative;
}

.alternating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 1;
}

.alternating-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.alternating-item:last-child {
    margin-bottom: 0;
}

.alternating-item.reverse {
    flex-direction: row-reverse;
}

.alternating-content {
    flex: 1;
    min-width: 300px;
}

.alternating-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.alternating-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.alternating-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.alternating-title span {
    color: var(--accent);
}

.alternating-text {
    color: #cbd5e1;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.alternating-text strong {
    color: white;
    font-weight: 600;
}

/* ===== RECURSOS SECTION (layout dividido e alinhado) ===== */
.recursos-section {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    align-items: center;
    min-height: 100vh;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
}

.recursos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 1;
}

/* --- LADO ESQUERDO (imagem e texto) --- */
.recursos-left {
    position: relative;
    background-image: url('images/laptop-keyboard.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.recursos-left .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 70, 0.65);
}

.recursos-text {
    position: relative;
    z-index: 2;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: left;
    max-width: 520px;
}

.recursos-text p {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.recursos-text h2,
.recursos-text .sub {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.recursos-text.visible h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.recursos-text.visible .sub {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

.recursos-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.2rem;
}

.recursos-text h2 span {
    color: var(--accent);
}

.recursos-text .sub {
    color: #cbd5e1;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* --- LADO DIREITO (grid de cards 2x3) --- */
.recursos-right {
    background: linear-gradient(to right, var(--primary-dark), #112a5c);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.5vw, 1.5rem);
    padding: clamp(2rem, 4vw, 4rem);
    justify-items: center;
    align-content: center;
    min-height: 100%;
    overflow: hidden;
}

/* --- CARDS 2x3 AINDA MAIORES --- */
.recurso-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: clamp(1rem, 1.8vw, 2.2rem) clamp(0.8rem, 1.3vw, 1.5rem);
    text-align: center;
    width: 100%;
    max-width: min(340px, 90vw);
    height: 100%;
    min-height: 160px;
    max-height: min(280px, 35vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 1;
    overflow: hidden;
    box-sizing: border-box;
}

.recurso-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.recurso-icon {
    font-size: clamp(1.3rem, 1.8vw, 2.2rem);
    color: var(--accent);
    margin-bottom: clamp(0.4rem, 0.8vw, 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-shrink: 0;
}

.recurso-title {
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    font-weight: 600;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.8rem);
    color: white;
    line-height: 1.25;
    text-align: center;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.recurso-text {
    color: #cbd5e1;
    font-size: clamp(0.65rem, 0.8vw, 0.9rem);
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    margin: 0;
    padding-top: 0.2rem;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* --- RESPONSIVIDADE ZOOM-RESISTENTE --- */

/* Ajuste específico para zooms altos (175%+) em telas grandes */
@media (min-width: 1201px) and (max-width: 1600px) {
    .recursos-right {
        gap: clamp(0.7rem, 1.2vw, 1.2rem);
        padding: clamp(1.5rem, 3vw, 3rem);
    }
    
    .recurso-card {
        max-width: min(320px, 90vw);
        max-height: min(260px, 33vh);
        min-height: 180px;
        padding: clamp(1rem, 1.6vw, 2rem) clamp(0.8rem, 1.2vw, 1.4rem);
    }
    
    .recurso-icon {
        font-size: clamp(1.4rem, 1.6vw, 2rem);
        margin-bottom: clamp(0.4rem, 0.7vw, 0.8rem);
    }
    
    .recurso-title {
        font-size: clamp(0.85rem, 0.95vw, 1.1rem);
        margin-bottom: clamp(0.3rem, 0.5vw, 0.7rem);
        line-height: 1.2;
    }
    
    .recurso-text {
        font-size: clamp(0.7rem, 0.75vw, 0.85rem);
        line-height: 1.4;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
}

@media (max-width: 1200px) {
    .recursos-right {
        gap: clamp(0.6rem, 1.2vw, 1rem);
    }
    
    .recurso-card {
        max-width: min(320px, 90vw);
        max-height: min(240px, 30vh);
        min-height: 170px;
    }
}

@media (max-width: 1024px) {
    .recursos-section {
        grid-template-columns: 1fr;
    }

    .recursos-left {
        min-height: 50vh;
    }

    .recursos-text {
        text-align: center;
        max-width: 90%;
        padding: 2rem;
    }

    .recursos-text .sub {
        margin: 0 auto;
    }

    .recursos-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    .recurso-card {
        max-width: min(280px, 85vw);
        max-height: min(190px, 25vh);
    }
}

@media (max-width: 768px) {
    .recursos-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: clamp(0.5rem, 1vw, 0.8rem);
    }
    
    .recurso-card {
        max-width: min(220px, 85vw);
        max-height: min(160px, 22vh);
    }
    
    .recurso-text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 600px) {
    .recursos-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: clamp(0.4rem, 0.8vw, 0.6rem);
    }
    
    .recurso-card {
        max-width: min(180px, 80vw);
        max-height: min(140px, 20vh);
    }
    
    .recurso-text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .recursos-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: clamp(0.3rem, 0.6vw, 0.5rem);
    }
    
    .recurso-card {
        max-width: min(160px, 75vw);
        max-height: min(120px, 18vh);
    }
    
    .recurso-text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.2;
    }
}

/* ===== DIFERENCIAIS SECTION (55% cards / 45% imagem) ===== */
.diferenciais-section {
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
    align-items: center;
    min-height: 100vh;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 1;
}

/* --- LADO DIREITO (45% - imagem e texto) --- */
.diferenciais-right {
    position: relative;
    background-image: url('images/notebook-user.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.diferenciais-right .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 70, 0.65);
}

.diferenciais-text {
    position: relative;
    z-index: 3;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: right;
    max-width: 520px;
    color: white;
}

.diferenciais-text p {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Efeito de surgimento igual à seção recursos */
.diferenciais-text h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.diferenciais-text .sub {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.diferenciais-text.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.diferenciais-text.visible .sub {
    opacity: 1;
    transform: translateY(0);
}

.diferenciais-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.2rem;
}

.diferenciais-text h2 span {
    color: var(--accent);
}

.diferenciais-text .sub {
    color: #cbd5e1;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* --- LADO ESQUERDO (55% - cards) --- */
.diferenciais-left {
    background-color: rgba(11, 18, 34, 0.8);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.5vw, 1.5rem);
    padding: clamp(2rem, 4vw, 4rem);
    justify-items: center;
    align-content: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    place-items: center;
}

.diferencial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: clamp(1rem, 2vw, 2.5rem) clamp(0.8rem, 1.5vw, 1.8rem);
    text-align: center;
    width: 100%;
    max-width: min(380px, 90vw);
    height: 100%;
    min-height: 180px;
    max-height: min(320px, 40vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 1;
    overflow: hidden;
    box-sizing: border-box;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 160, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.diferencial-icon {
    font-size: clamp(1.3rem, 1.8vw, 2.2rem);
    color: var(--accent);
    margin-bottom: clamp(0.4rem, 0.8vw, 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-shrink: 0;
}

.diferencial-title {
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    font-weight: 600;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.8rem);
    color: white;
    line-height: 1.25;
    text-align: center;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.diferencial-text {
    color: #cbd5e1;
    font-size: clamp(0.65rem, 0.85vw, 1rem);
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    margin: 0;
    padding-top: 0.3rem;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: none;
}

/* --- RESPONSIVIDADE DIFERENCIAIS --- */

/* Ajuste específico para zooms altos (175%+) em telas grandes */
@media (min-width: 1201px) and (max-width: 1600px) {
    .diferenciais-left {
        gap: clamp(0.7rem, 1.2vw, 1.2rem);
        padding: clamp(1.5rem, 3vw, 3rem);
    }
    
    .diferencial-card {
        max-width: min(350px, 90vw);
        max-height: min(300px, 38vh);
        min-height: 200px;
        padding: clamp(1rem, 1.8vw, 2rem) clamp(0.8rem, 1.3vw, 1.5rem);
    }
    
    .diferencial-icon {
        font-size: clamp(1.4rem, 1.6vw, 2rem);
        margin-bottom: clamp(0.4rem, 0.7vw, 0.8rem);
    }
    
    .diferencial-title {
        font-size: clamp(0.85rem, 0.95vw, 1.1rem);
        margin-bottom: clamp(0.3rem, 0.5vw, 0.7rem);
        line-height: 1.2;
    }
    
    .diferencial-text {
        font-size: clamp(0.7rem, 0.8vw, 0.95rem);
        line-height: 1.4;
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

@media (max-width: 1200px) {
    .diferenciais-left {
        gap: clamp(0.6rem, 1.2vw, 1rem);
    }
    
    .diferencial-card {
        max-width: min(300px, 90vw);
        max-height: min(240px, 32vh);
        min-height: 180px;
    }
}

@media (max-width: 1024px) {
    .diferenciais-section {
        grid-template-columns: 1fr;
    }

    .diferenciais-right {
        min-height: 50vh;
        order: 1;
    }

    .diferenciais-text {
        text-align: center;
        max-width: 90%;
        padding: 2rem;
    }

    .diferenciais-text .sub {
        margin: 0 auto;
    }

    .diferenciais-left {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(0.8rem, 1.5vw, 1.2rem);
        min-height: 50vh;
        order: 2;
    }
    
    .diferencial-card {
        max-width: min(290px, 85vw);
        max-height: min(210px, 28vh);
    }
}

@media (max-width: 768px) {
    .diferenciais-left {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(0.5rem, 1vw, 0.8rem);
    }
    
    .diferencial-card {
        max-width: min(240px, 85vw);
        max-height: min(180px, 24vh);
    }
    
    .diferencial-text {
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    .diferenciais-left {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(0.4rem, 0.8vw, 0.6rem);
    }
    
    .diferencial-card {
        max-width: min(200px, 80vw);
        max-height: min(160px, 22vh);
    }
    
    .diferencial-text {
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .diferenciais-left {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(0.3rem, 0.6vw, 0.5rem);
    }
    
    .diferencial-card {
        max-width: min(220px, 75vw);
        max-height: min(180px, 24vh);
    }
    
    .diferencial-text {
        line-height: 1.4;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
}

/* ===== EMPRESAS SECTION ===== */
.empresas {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #112a5c 100%);
    text-align: center;
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    isolation: isolate;
    overflow: hidden;
}

.empresas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 11;
}

.empresas-title {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.empresas-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.empresas-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0;
}

.empresa-logo {
    height: 110px;
    width: 110px;
    background: rgba(255,255,255,0.07);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.empresa-logo img {
    max-height: 60px;
    max-width: 140px;
    filter: grayscale(100%);
    object-fit: contain;
    transition: filter 0.3s ease;
}

.empresa-logo:hover img {
    filter: grayscale(0%);
}

/* Carrossel de Clientes */
.empresas-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    position: relative;
}

.empresas-carousel {
    display: flex;
    gap: 40px;
    align-items: center;
    will-change: transform;
    transform: translateX(0);
}

.empresa-logo {
    min-width: 160px;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 0;
    overflow: hidden;
}

.empresa-logo img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.empresa-logo:hover img {
    filter: grayscale(0%);
}

/* ===== FORM SECTION ===== */
.form-section {
    background-color: rgba(11, 18, 34, 0.8);
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 0;
    isolation: isolate;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 2;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    width: 100%;
    min-height: 100%;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.form-content {
    flex: 1;
    min-width: 300px;
}

.form-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.form-title {
    white-space: nowrap;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}

.form-title span {
    color: var(--accent);
}

.form-title-blue {
    color: var(--accent);
}

.form-description {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-circle {
    background: linear-gradient(135deg, #ff7c22 60%, #ff8c1a 100%);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(255,124,34,0.10);
}

.contact-icon-blue {
    background: linear-gradient(135deg, #1976d2 60%, #21a0ff 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(33,160,255,0.10);
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    opacity: 0.93;
    transition: background 0.2s, box-shadow 0.2s;
}

.contact-icon-blue i {
    color: #fff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-label {
    color: #fff;
    font-size: 0.80rem;
    opacity: 0.85;
    margin-bottom: 0px;
}

.contact-value {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.form-wrapper {
    flex: 1;
    min-width: 300px;
}

.form {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.4));
    padding: 30px;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: #a5b4fc;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    background: #0b1222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: rgba(33, 160, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(33, 160, 255, 0.1);
}

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

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a5b4fc'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
}

.form-submit {
    margin-top: 10px;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.form-message {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
}

.form-message.success::before {
    content: '✓ ';
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 8px;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
}

.form-message.error::before {
    content: '✕ ';
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 8px;
}

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

/* ===== FOOTER ===== */
footer {
    background: #040c14;
    color: #cbd5e1;
    padding: 32px 0 18px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(33, 160, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.7fr;
    gap: 28px;
    align-items: flex-start;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo-img img {
    height: 45px;
    width: auto;
    margin-bottom: 5px;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(33, 160, 255, 0.3);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-icon {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-separator {
    border: none;
    border-top: 1px solid rgb(70, 155, 246);
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 5px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-privacy {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    margin-left: 10px;
    transition: color 0.2s;
}

.footer-privacy:hover {
    color: var(--accent);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding-top: 120px;
        margin-top: -100px;
        background-position: center right;
        background-size: cover;
        padding-bottom: 60px;
    }
    
    .hero-bg-image {
        background:
            linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%),
            url('images/logistica_manager.png') center center/cover no-repeat;
        background-position: center right;
        background-size: cover;
    }
    
    .hero-bg-overlay {
        background: rgba(10,18,34,0.25);
    }
    
    .hero-container {
        flex-direction: column;
        gap: 25px;
        padding: 20px 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: calc(100vh - 180px);
    }
    
    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .btn-accent {
        align-self: center;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        margin: 0;
    }
    
    .hero-media {
        min-width: 100%;
        order: 1;
        max-width: 350px;
    }
    
    .glass-panel {
        padding: 1rem;
    }
    
    .video-placeholder {
        height: 180px;
        border-radius: 12px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .mvv-slider-section {
        min-height: 100vh;
        height: auto;
        padding: 40px 0;
        align-items: flex-start;
    }
    
    .mvv-slider-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
        height: auto;
    }
    
    .mvv-slider-left, .mvv-slider-right {
        min-width: 0;
    }
    
    .mvv-slider-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mvv-slider-desc {
        text-align: center;
        font-size: 1.05rem;
    }
    
    .mvv-card-slider {
        max-width: 100%;
        min-height: 280px;
        height: auto;
        padding: 30px 25px;
    }
    
    .mvv-card-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .mvv-card-list {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .empresas {
        padding: 40px 0;
    }
    
    .empresas-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-bottom: 20px;
    }
    
    .empresas-carousel {
        display: flex;
        gap: 20px;
        align-items: center;
        will-change: transform;
        transform: translateX(0);
        flex-wrap: nowrap;
        transition: transform 0.5s ease-in-out;
    }
    
    .empresas-carousel .empresa-logo {
        min-width: 140px;
        width: 140px;
        height: 140px;
        flex-shrink: 0;
    }
    
    .empresas-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .empresas-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Correção para zooms 200% e 175% */
@media (min-width: 1200px) and (max-width: 1600px) {
    .form-section {
        min-height: 120vh;
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 2rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Form Section Mobile */
    .form-section {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }
    
    .form-container {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }
    
    .form-content, .form-wrapper {
        min-width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .form-title {
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .form-description {
        text-align: left;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .contact-info-modern {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .contact-item-modern {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .contact-details {
        flex: 1;
    }
    
    /* Alternating Sections Mobile */
    .alternating-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .alternating-item.reverse {
        flex-direction: column;
    }
    
    .alternating-title {
        font-size: 1.6rem;
    }
    
    .alternating-text {
        font-size: 1rem;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .diferenciais-container {
        grid-template-columns: 1fr;
    }
    
    .contact-icon-blue {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .contact-label, .contact-value {
        font-size: 0.93rem;
    }
    
    .contact-info-modern {
        gap: 10px;
    }
    
    .contact-icon-circle {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 7px 0 3px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2px;
        font-size: 0.88rem;
    }
}

@media (max-width: 992px) {
    .mvv-container {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 110px;
        margin-top: -100px;
        min-height: 100vh;
        padding-bottom: 50px;
    }
    
    .hero-container {
        gap: 18px;
        padding: 15px 0;
        height: calc(100vh - 160px);
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero-media {
        order: 1;
        max-width: 260px;
        width: 100%;
        flex-shrink: 0;
        margin-bottom: 10px;
    }
    
    .video-placeholder {
        height: 120px;
    }
    
    .video-play-button {
        width: 40px;
        height: 40px;
    }
    
    .video-play-button i {
        font-size: 0.9rem;
    }
    
    .btn-accent {
        margin-bottom: 12px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin: 0;
        width: 100%;
        max-width: 280px;
    }
    
    .stat-box {
        padding: 8px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .alternating-title {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .glass-panel {
        padding: 0.75rem;
    }
    
    .form {
        padding: 20px;
    }
}