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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --blue-color: #2563eb;
    --dark-color: #0f0f1e;
    --light-color: #f4f4f4;
    --white-color: #ffffff;
    --text-color: #666666;
    --heading-color: #1a1a2e;
    --border-color: #e5e5e5;
    --shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Base */
.container {
    max-width: 1335px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container Variações */
.container-header {
    max-width: 1335px;
    margin-right: 15px;
}

.container-hero {
    max-width: 1335px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-services {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.container-forms {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-partners {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 60px;
}

.container-footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.container-wide {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-outline-light {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-large i {
    margin-right: 8px;
}

.quote-form-wrapper .quote-form .btn-large {
    margin-top: 35px !important;
    min-width: 260px !important;
    padding: 14px 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
}

.quote-form-wrapper .track-form .btn-large {
    margin-top: 35px !important;
    min-width: 260px !important;
    padding: 14px 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
}

.quote-form-wrapper .quote-form .btn-large:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6) !important;
}

.quote-form-wrapper .track-form .btn-large:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(26, 26, 46, 0.6) !important;
}

.quote-form-wrapper .quote-form .btn-large:active,
.quote-form-wrapper .track-form .btn-large:active {
    transform: translateY(-2px) scale(1.02) !important;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: var(--white-color);
    margin-right: 25px;
}

.top-bar-left a i {
    color: var(--primary-color);
    margin-right: 8px;
}

.language-switcher {
    position: relative;
    cursor: pointer;
}

.language-switcher ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white-color);
    list-style: none;
    min-width: 120px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.language-switcher:hover ul {
    opacity: 1;
    visibility: visible;
}

.language-switcher ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--heading-color);
}

.language-switcher ul li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    margin-right: 20px;
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 60px;
    width: 85px;
    display: block;
}

.nav-menu {
    flex: 1;
    margin: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 45px !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 16px);
}

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.nav-link:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--heading-color);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 28px;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

/* Mega Menu */
.mega-menu {
    min-width: 600px;
    border-radius: 0 0 8px 8px;
}

.mega-menu-content {
    display: flex;
    padding: 25px 20px;
}

.mega-menu-column {
    flex: 1;
    padding: 0 15px;
}

.mega-menu-column h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li a {
    padding: 8px 0;
    border: none;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.search-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--heading-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.search-btn:hover {
    color: var(--primary-color);
    background: var(--light-color);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--heading-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    padding-top: 100px;
    max-width: 900px;
    padding: 100px 40px 40px 40px;
    border-radius: 10px;
}

.slide-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: #ff8c42;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 1px 1px 3px rgba(0, 0, 0, 1);
    font-weight: 700;
}

.slide-title {
    font-size: 60px;
    margin-bottom: 40px;
    color: var(--white-color);
    line-height: 1.2;
    word-spacing: 0.1em;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 1px 1px 4px rgba(0, 0, 0, 1);
    font-weight: 800;
}

.slide-description {
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.8;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1), 1px 1px 4px rgba(0, 0, 0, 1);
    font-weight: 400;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.slide-buttons .btn {
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
}

.slide-buttons .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;
}

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

.slide-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border: none;
    color: var(--white-color);
}

.slide-buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.slide-buttons .btn-outline:hover {
    background: var(--white-color);
    color: var(--heading-color);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* Services Icons */
.services-icons {
    padding: 80px 0;
    background: var(--light-color);
}

.services-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-icon-item {
    background: var(--white-color);
    padding: 50px 30px;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.service-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: lowercase;
}

.service-icon-item i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-icon-item h3 {
    font-size: 18px;
    margin-bottom: 0;
}

/* Section Styles */
.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.8;
}

.link-primary {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.link-primary i {
    margin-left: 8px;
    transition: var(--transition);
}

.link-primary:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 5px;
    width: 100%;
}

.about-stats {
    position: absolute;
    bottom: 220px;
    right: 0;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
}

.stat-label {
    font-size: 24px;
    font-weight: 600;
}

.stat-text {
    font-size: 14px;
    margin-top: 10px;
}

.about-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
}

/* Experience Banner */
.experience-banner {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 80px 0;
}

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

.experience-content h2 {
    color: var(--white-color);
    font-size: 36px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 700;
}

.experience-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.exp-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.exp-feature:hover {
    transform: translateY(-3px);
}

.exp-feature i {
    font-size: 40px;
    color: var(--primary-color);
    transition: var(--transition);
}

.exp-feature:hover i {
    transform: scale(1.1);
    color: #ff8c42;
}

.exp-feature span {
    font-size: 16px;
    font-weight: 600;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.quote-form-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42);
}

/* Track Section */
.track-section {
    padding: 100px 0;
    background: var(--white-color);
}

.track-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.track-info-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    padding: 35px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white-color);
}

.info-item i {
    font-size: 32px;
    opacity: 0.9;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 13px;
    opacity: 0.9;
}

.track-form {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

/* Quote and Track Tabs */
.quote-track-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.quote-track-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 0;
    background: var(--white-color);
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.tab-btn[data-tab="track"].active {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.tab-btn:hover:not(.active) {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.tab-btn[data-tab="track"]:hover:not(.active) {
    color: #1a1a2e;
    background: rgba(26, 26, 46, 0.1);
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Form Sections - Updated 2024 */
.form-section {
    margin-bottom: 30px;
}

.quote-form-wrapper .form-section h3 {
    font-size: 24px !important;
    color: #1a202c !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
    text-align: center !important;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Estilos específicos para o formulário de rastreamento */
.quote-form-wrapper .track-form .form-section h3 {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.form-section-header i {
    font-size: 28px;
    color: var(--primary-color);
}

.form-section-header h3 {
    font-size: 22px;
    margin: 0;
    color: var(--heading-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group:hover input,
.form-group:hover textarea,
.form-group:hover select {
    border-color: #cbd5e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

.quote-form-wrapper .form-group label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.quote-form-wrapper .form-group label i {
    color: var(--primary-color) !important;
    font-size: 15px !important;
    width: 18px !important;
    text-align: center !important;
}

/* Ícones específicos para o formulário de rastreamento */
.quote-form-wrapper .track-form .form-group label i {
    color: #1a1a2e !important;
}

.quote-form-wrapper .form-group input,
.quote-form-wrapper .form-group select,
.quote-form-wrapper .form-group textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e1e8ed !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-family: 'Roboto', sans-serif !important;
    transition: all 0.3s ease !important;
    background: #f8fafc !important;
    color: #2d3748 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.quote-form-wrapper .form-group input:focus,
.quote-form-wrapper .form-group select:focus,
.quote-form-wrapper .form-group textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

.quote-form-wrapper .form-group input::placeholder,
.quote-form-wrapper .form-group textarea::placeholder {
    color: #a0aec0 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #2d3748;
    resize: vertical;
    min-height: 110px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    line-height: 1.6;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea::placeholder {
    color: #a0aec0;
    font-size: 15px;
    font-weight: 400;
}

.quote-form-wrapper .form-description {
    color: #64748b !important;
    font-size: 14px !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    padding: 0 15px !important;
}

/* Form Validation States */
.form-group.valid input,
.form-group.valid select {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2328a745' d='M13.485 3.515a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L6 10.086l6.071-6.071a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-group.valid select {
    background-position: right 40px center, right 15px center;
}

.form-group.invalid input,
.form-group.invalid select {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23dc3545' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm1 12H7v-2h2v2zm0-3H7V4h2v5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-group.invalid select {
    background-position: right 40px center, right 15px center;
}

/* Checkbox Grid - Modern Cards */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.checkbox-content i {
    font-size: 28px;
    color: var(--text-color);
    transition: var(--transition);
}

.checkbox-content span {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    transition: var(--transition);
}

.checkbox-card:hover .checkbox-content {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content i,
.checkbox-card input[type="checkbox"]:checked + .checkbox-content span {
    color: var(--white-color);
}

/* Form Actions */
.form-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-submit {
    min-width: 280px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-submit i {
    margin-right: 10px;
}

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

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-color);
    font-style: italic;
}

/* Career Banner */
.career-banner {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    padding: 100px 0;
    text-align: center;
}

.career-content h3 {
    color: var(--white-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.career-content p {
    color: var(--white-color);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Digital Freight */
.digital-freight {
    padding: 100px 0;
    background: var(--light-color);
}

.digital-freight-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.digital-title {
    font-size: 24px;
    margin: 20px 0;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--primary-color);
}

.digital-freight-image {
    position: relative;
}

.digital-freight-image img {
    border-radius: 5px;
    width: 100%;
}

.image-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 25px 35px;
    border-radius: 5px;
    max-width: 80%;
}

.image-badge h4 {
    color: var(--white-color);
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--white-color);
    color: var(--heading-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42, var(--primary-color));
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.footer-main {
    padding: 80px 0 60px;
    position: relative;
    background: var(--white-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-logo img {
    height: 60px;
    width: 80px;
}

.footer-column > p {
    margin-bottom: 30px;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 15px;
}

.footer-column h3 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c42);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: var(--text-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ff8c42;
    padding-left: 0;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.newsletter h4 {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #ff8c42;
}

.footer-contact-col .contact-info {
    list-style: none;
    margin-bottom: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info li:hover {
    transform: translateX(3px);
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 18px;
    min-width: 20px;
    transition: all 0.3s ease;
}

.contact-info li:hover i {
    color: #ff8c42;
    transform: scale(1.1);
}

.contact-info li span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.footer-newsletter-col h3 {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.social-links a {
    width: 30px;
    height: 30px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: var(--heading-color);
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.social-links a:hover i {
    color: var(--white-color);
}

.footer-bottom {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-bottom .developed-by {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom .developed-by a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom .developed-by a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

.back-to-top.show {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff8c42;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: absolute;
        top: 91px;
        left: -100%;
        width: 225px;
        background: var(--white-color);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 115px;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-color);
        margin-top: 10px;
        display: none;
    }
    
    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .mega-menu {
        min-width: auto;
    }
    
    .mega-menu-content {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container,
    .container-header,
    .container-hero {
        padding: 0 25px;
    }
    
    .container-services {
        padding: 0 30px;
    }
    
    .container-about {
        padding: 0 35px;
    }
    
    .container-forms {
        padding: 0 30px;
    }
    
    .container-partners {
        padding: 0 40px;
    }
    
    .container-footer {
        padding: 0 35px;
    }
    
    .container-narrow {
        padding: 0 40px;
    }
    
    .container-wide {
        padding: 0 30px;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 23px;
    }
    
    .experience-content h2 {
        font-size: 32px;
        max-width: 800px;
    }
    
    .experience-features {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .slide-buttons {
        gap: 15px;
    }
    
    .slide-buttons .btn {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .services-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper,
    .digital-freight-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-banner {
        padding: 70px 0;
    }
    
    .experience-content h2 {
        font-size: 30px;
        margin-bottom: 45px;
    }
    
    .experience-features {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container,
    .container-header,
    .container-hero,
    .container-services,
    .container-about,
    .container-forms,
    .container-partners,
    .container-footer,
    .container-narrow,
    .container-wide {
        padding: 0 20px;
    }
    
    .top-bar {
        display: none;
    }
    
    .slide-title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .slide-content {
        padding-top: 100px;
        max-width: 90%;
        text-align: center;
    }
    
    .slide-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .slide-buttons .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-width: auto;
    }
    
    .slider-controls {
        display: none;
    }
    
    .slider-dots {
        display: none;
    }
    
    .service-icon-item {
        text-align: center;
    }
    
    .about-wrapper,
    .digital-freight-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content,
    .digital-freight-content {
        text-align: center;
    }
    
    .about-features {
        text-align: center;
    }
    
    .feature-list {
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .experience-content {
        text-align: center;
    }
    
    .career-content {
        text-align: center;
    }
    
    .services-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-banner {
        padding: 60px 0;
    }
    
    .experience-content h2 {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .experience-features {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .exp-feature {
        gap: 12px;
    }
    
    .exp-feature i {
        font-size: 35px;
    }
    
    .exp-feature span {
        font-size: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form-wrapper,
    .track-form {
        padding: 35px;
    }
    
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .track-info-banner {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .info-item {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-main {
        padding: 80px 0 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container,
    .container-header,
    .container-hero,
    .container-services,
    .container-about,
    .container-forms,
    .container-partners,
    .container-footer,
    .container-narrow,
    .container-wide {
        padding: 0 15px;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .slide-title {
        font-size: 26px;
        line-height: 1.25;
    }
    
    .slide-content {
        max-width: 95%;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .slide-buttons .btn {
        padding: 14px 24px;
        font-size: 13px;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .quote-form-wrapper,
    .track-form {
        padding: 25px 20px;
    }
    
    .section-header.centered p {
        font-size: 14px;
    }
    
    .form-section-header {
        flex-direction: row;
        gap: 10px;
    }
    
    .form-section-header i {
        font-size: 24px;
    }
    
    .form-section-header h3 {
        font-size: 18px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .track-info-banner {
        padding: 20px;
        gap: 20px;
    }
    
    .info-item i {
        font-size: 28px;
    }
    
    .info-item strong {
        font-size: 14px;
    }
    
    .info-item span {
        font-size: 12px;
    }
    
    .btn-submit,
    .quote-form .btn-large,
    .track-form .btn-large {
        min-width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .form-description {
        font-size: 13px;
    }
    
    .form-section h3 {
        font-size: 20px;
    }
    
    .experience-banner {
        padding: 50px 0;
    }
    
    .experience-content h2 {
        font-size: 22px;
        margin-bottom: 30px;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .experience-features {
        gap: 20px;
    }
    
    .exp-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .exp-feature i {
        font-size: 32px;
    }
    
    .exp-feature span {
        font-size: 14px;
    }
    
    .quote-track-tabs {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        margin: 0 20px 40px;
    }
    
    .tab-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
}

