/* =============================================
   Alex & Lalito EIRL - Venta de Combustible
   ============================================= */

/* --- 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);
}

/* --- 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%;
}

/* --- Red Check Circle --- */
.red-check {
    width: 22px;
    height: 22px;
    background: #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Icon Circles --- */
.icon-circle-red {
    width: 56px;
    height: 56px;
    border: 2px solid #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.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-white {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Feature Icon (Hero) --- */
.feature-icon-hero {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Price Sidebar --- */
.sidebar-prices {
    background: rgba(11, 31, 111, 0.95);
    backdrop-filter: blur(10px);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.price-row:last-child {
    border-bottom: none;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #0B1F6F 0%, #1a2d7a 100%);
}

/* --- 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;
}