/*
  Archivo: assets/css/style.css
  Estilos personalizados para Miralfreight
*/

/* --- Estilos Generales --- */
body {
    font-family: Arial, sans-serif; /* Usar una fuente legible */
    background-color: #f8f9fa;
}

/* --- Estilos para la portada (Hero/Slider) --- */
.carousel-item {
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Oscurecer un poco la imagen para que el texto resalte */
.carousel-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Capa oscura */
}

.carousel-caption {
    z-index: 10;
    padding-bottom: 50px;
}

/* --- Títulos y Colores --- */
.text-primary {
    color: #03254A !important; /* Azul Marino Institucional */
}

.bg-primary {
    background-color: #03254A !important;
}

.btn-primary {
    background-color: #03254A;
    border-color: #03254A;
}

.btn-primary:hover {
    background-color: #063c78;
    border-color: #063c78;
}

.btn-warning {
    background-color: #FFC107; /* Amarillo para CTA */
    border-color: #FFC107;
    color: #03254A; /* Texto oscuro en el botón amarillo */
}

.btn-warning:hover {
    background-color: #ffcd39;
    border-color: #ffcd39;
}

/* --- Tarjetas de Servicios --- */
.card-img-top {
    height: 200px; /* Altura fija para uniformidad */
    object-fit: cover;
}