/* ============================================
   VIAFRETE - Integração de Estilos do Frontend Package
   Mantém funcionalidade Vue.js com visual do frontend_package
   ============================================ */

/* Importar fontes do frontend_package */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variáveis de tema - Paleta Azul e Laranja */
:root {
    --theme-color-primary: #2563eb;
    --theme-color-secondary: #f97316;
    --theme-text-color: #7a7a7a;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
    --gradient-tertiary: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-card: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-button: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hero Section - Estilo do frontend_package */
.hero-section {
    background: none !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    color: white;
    position: relative;
}

.hero-content h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-button);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Features Section - Cards de funcionalidades */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    font-size: 30px;
    color: #43e97b;
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-item h5 {
    color: white;
    font-weight: bold;
}

.benefit-item p {
    color: rgba(255,255,255,0.9);
}

/* Tech Section */
.tech-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
}

.cta-buttons .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    margin: 0 7.5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    height: 100%;
    text-align: center;
}

.contact-card i {
    font-size: 50px;
    color: var(--theme-color-primary);
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer h4 {
    color: white;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer p, .footer a {
    color: rgba(255,255,255,0.9);
}

.footer a:hover {
    color: white;
}

.sub-footer {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    color: rgba(255,255,255,0.8);
}

/* Top Header */
.top-header {
    background: var(--gradient-primary);
    padding: 10px 0;
    color: white;
    font-size: 14px;
}

.top-header a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.top-header a:hover {
    color: white;
}

/* Navbar Styles */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s;
}

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

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
    background: var(--gradient-primary);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--theme-color-primary);
    color: var(--theme-color-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--theme-color-primary);
    color: white;
    transform: translateY(-2px);
}

/* List Item Utilities */
.list-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-item-inline-flex {
    display: inline-flex;
}

.list-item-block-md {
    display: block;
}

@media (min-width: 768px) {
    .list-item-block-md {
        display: inline-flex;
    }
}

.list-item-align-items-center {
    align-items: center;
}

.list-item-right-spacing li {
    margin-right: 15px;
}

.list-item-left-spacing li {
    margin-left: 15px;
}

.list-item-divider li:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
}

.social-icons a {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

.theme-border-bottom-1px {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.w-180px {
    width: 180px;
    max-width: 100%;
}

.theme-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.4s;
    text-decoration: none;
}

.theme-border-radius {
    border-radius: 50px;
}

.theme-btn-primary {
    background-color: var(--theme-color-primary);
    color: #fff;
}

.theme-btn-primary:hover {
    background-color: var(--theme-color-secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .features-section,
    .benefits-section,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .top-header {
        font-size: 12px;
    }
    
    .navbar-auth {
        margin-top: 10px;
    }
}

