/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Navbar Personalizada */
.custom-nav {
    background-color: #002B49 !important; /* Azul petróleo oscuro */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Carousel (Principal) */
.c-item {
    height: 100vh; /* Ocupa toda la altura de la pantalla */
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Oscurece la imagen para que el texto se lea bien */
}

.carousel-caption {
    bottom: 25%; /* Sube el texto un poco */
    z-index: 2;
}

/* Secciones Generales */
.section-padding {
    padding: 80px 0;
}

.separator-line {
    width: 60px;
    height: 4px;
    background-color: #FFC107; /* Amarillo maquinaria */
    margin: 15px auto;
}

.text-primary {
    color: #002B49 !important; /* Reemplaza el azul default de bootstrap */
}

/* Ajustes de Carousels Secundarios */
/* Hace que las imágenes dentro de los productos no sean gigantescas en pantallas grandes */
#carouselProductos img, 
#carouselServicios img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* Mapa */
.map-container {
    width: 100%;
    line-height: 0; /* Elimina espacio blanco debajo del iframe */
}

/* Botones */
.btn-warning {
    background-color: #FFC107;
    border: none;
}

.btn-warning:hover {
    background-color: #e0a800;
}