/* =============================================
   Alex & Lalito EIRL - Venta de Agregados
   ============================================= */

/* --- Base --- */
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #fff;
    color: #1f2937;
}

/* --- Hero Overlay --- */
.hero-overlay {
    background: linear-gradient(
        to right,
        #0B1F6F 0%,
        #0B1F6F 30%,
        rgba(11, 31, 111, 0.75) 50%,
        rgba(11, 31, 111, 0.3) 70%,
        transparent 100%
    );
}

/* --- Card Hover --- */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover: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;
}

/* --- Feature Icon (Hero) --- */
.feature-icon-hero {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #0B1F6F 0%, #1a2d7a 100%);
}

/* --- Entrega Section --- */
.entrega-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef0f7 100%);
    border: 1px solid #e2e5ef;
}

/* --- 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;
}