/* =============================================
   Alex & Lalito EIRL - Transporte de carga por carretera
   ============================================= */

/* --- Base --- */
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #fff;
    color: #1f2937;
}

/* --- Hero Overlay --- */
.hero-overlay {
    background: linear-gradient(
        to right,
        rgba(11,31,111,0.9) 0%,
        rgba(11,31,111,0.7) 30%,
        rgba(11,31,111,0.4) 50%,
        rgba(11,31,111,0.15) 70%,
        transparent 100%
    );
}

/* --- Truck Cards --- */
.truck-card {
    transition: all 0.3s ease;
}

.truck-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #0B1F6F 0%, #1a2d7a 100%);
}

/* --- Nav Links --- */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E31E24;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Sidebar Items --- */
.sidebar-item {
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.sidebar-item:hover {
    border-left-color: #E31E24;
}

/* --- Red Check Circle --- */
.red-check {
    width: 24px;
    height: 24px;
    background: #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Icon Circles --- */
.icon-circle-blue {
    width: 48px;
    height: 48px;
    border: 2px solid #0B1F6F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 111, 0.05);
}

.icon-circle-red-outline {
    width: 64px;
    height: 64px;
    border: 2px solid #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Stats Bar --- */
.stats-bar {
    background: #F0F2F8;
}

/* --- Testimonials --- */
.testimonial-quote {
    position: relative;
}

/* --- Scroll Reveal Animation --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Form Focus States --- */
input:focus,
textarea:focus {
    border-color: #E31E24 !important;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

/* --- Map responsive --- */
iframe {
    display: block;
}