/* Louza Transportes - Custom Styles */

:root {
    --color-blue: #003366;
    --color-orange: #FF6B35;
    --color-light-blue: #E6F0FF;
    --color-white-80: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-blue {
    color: var(--color-blue) !important;
}

.text-orange {
    color: var(--color-orange) !important;
}

.text-white-80 {
    color: var(--color-white-80) !important;
}

.bg-blue {
    background-color: var(--color-blue) !important;
}

.bg-orange {
    background-color: var(--color-orange) !important;
}

.bg-light-blue {
    background-color: var(--color-light-blue) !important;
}

.bg-blue-gradient {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
}

.bg-gradient-blue-orange {
    background: linear-gradient(135deg, #E6F0FF 0%, #FFF5F1 100%);
}

.border-orange {
    border-color: var(--color-orange) !important;
}

.bullet-orange {
    width: 8px;
    height: 8px;
    background-color: var(--color-orange);
    border-radius: 50%;
}

/* Buttons */
.btn-orange {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e55a25;
    border-color: #e55a25;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--color-blue);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 50%, #00264d 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Cards */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.hover-card-scale {
    transition: all 0.3s ease;
}

.hover-card-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Icons */
.feature-icon,
.differential-icon,
.process-icon,
.career-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #004d99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.feature-icon i,
.differential-icon i,
.process-icon i,
.career-icon i {
    font-size: 2.5rem;
    color: white;
}

.hover-card:hover .feature-icon,
.hover-card-scale:hover .differential-icon,
.hover-card-scale:hover .process-icon,
.hover-card:hover .career-icon {
    transform: scale(1.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Process Section */
.process-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-orange) 0%, #e55a25 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.process-line {
    position: absolute;
    top: 6rem;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-orange) 50%, var(--color-blue) 100%);
    border-radius: 2px;
    z-index: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: white;
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInLeft 0.8s ease-out;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-badge {
        position: static;
        margin-top: 2rem;
    }

    .process-line {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

/* Image overlay on hover */
.position-relative img {
    transition: transform 0.3s ease;
}

.position-relative:hover img {
    transform: scale(1.02);
}

/* Footer Links */
footer a:hover {
    color: var(--color-orange) !important;
    text-decoration: underline !important;
}