/* =========================================================================
   ESTILOS GLOBALES - LORA SUPPLIES
   ========================================================================= */
:root {
    --primary-color: #1e3a8a;
    --dark-color: #0f172a;
    --light-bg: #f8fafc;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-muted: #64748b;
}

body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}

/* Barra superior y Navegación */
.top-header {
    background-color: var(--primary-color);
    color: white;
    padding: 7px 0;
    font-size: 0.85rem;
}

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-nav .nav-link {
    color: var(--text-muted);
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Sección Hero (Banners) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

/* Tarjetas de Producto */
.product-card {
    border: none;
    border-radius: 12px;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-img-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #f1f5f9;
}

.product-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Tarjetas de Marcas */
.brand-logo-container {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s;
}

.brand-logo-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.brand-logo-container:hover {
    border-color: var(--primary-color);
}

.brand-logo-container:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Sección de Servicios Extendida */
.service-detailed-card {
    background: white;
    border-radius: 14px;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.2s;
}

.service-detailed-card:hover {
    transform: translateY(-3px);
}

.icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* Bloques de Suministros */
.supply-badge-box {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.2s;
}

.supply-badge-box:hover {
    border-color: var(--primary-color);
    background-color: #f4f7ff;
}

.supply-badge-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

/* Pie de Página */
footer {
    background-color: var(--dark-color);
    color: #94a3b8;
}