body {
    font-family: 'Copperplate Gothic Bold', sans-serif;
    color: #333333; /* Gris oscuro */
    background-color: #FAFAFA; /* Gris claro */
}
/* Navbar */

.navbar {
    padding: 15px 20px;
    background-color: #ffffff; /* Fondo blanco */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    border-bottom: 2px solid #f1f1f1; /* Línea inferior sutil */
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #2295D3; /* Azul primario */
}

.navbar-brand .logo {
    height: 50px; /* Altura del logo */
    object-fit: contain;
    margin-right: 10px;
}

.navbar-toggler {
    border: 1px solid #F6A228; /* Naranja */
    outline: none;
    padding: 5px;
    border-radius: 5px;
}

.navbar-toggler-icon {
    background-color: #F6A228; /* Naranja */
    border-radius: 50%;
    padding: 5px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #2295D3; /* Azul primario */
    transition: color 0.3s ease;
    margin: 0 10px; /* Espaciado entre enlaces */
}

.nav-link:hover {
    color: #F6A228; /* Naranja */
}

.nav-link.active {
    color: #F6A228; /* Naranja */
    font-weight: bold;
    text-decoration: underline;
}

/* Fondo */
.navbar-light.bg-white {
    background-color: #ffffff !important; /* Fondo blanco */
}


/* Configuración de la sección */
#brands {
    padding: 40px 0;
    background-color: #FAFAFA; /* Fondo gris claro */
}

#brands h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2295D3; /* Azul primario */
}

/* Tarjetas */
.brand-card {
    height: 150px; /* Altura fija para todas las tarjetas */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF; /* Blanco */
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Logos */
.brand-logo {
    max-width: 100%;
    min-height: 100px;
    max-height: 100px; /* Altura máxima uniforme para los logos */
    object-fit: contain;
}

footer {
    margin-top: 30px;
    background-color: #1A1A1A; /* Gris oscuro */
    color: #FAFAFA; /* Blanco */
    font-size: 0.9rem;
}

footer h5 {
    font-size: 1.2rem;
    color: #FFFFFF; /* Blanco */
    margin-bottom: 20px;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li i {
    color: #2295D3; /* Azul primario */
    margin-right: 10px;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #F6A228; /* Naranja */
}

footer .fab {
    color: #FFFFFF; /* Blanco */
    transition: color 0.3s ease-in-out;
}

footer .fab:hover {
    color: #2295D3; /* Azul primario */
}

/* Encabezado con imagen de fondo */
.custom-header {
    background: url('../images/header-background.webp') no-repeat center center;
    background-size: cover; 
    height: 200px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Superposición translúcida */
.custom-header .overlay {
    background: rgba(0, 43, 128, 0.6); /* Azul oscuro translúcido */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Texto principal */
.custom-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-header p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
}

/* Carrusel */
/* Carousel Section */
#carousel-section {
    max-width: 100%;
}

.carousel-image {
    height: 600px; /* Altura fija para pantallas grandes */
    object-fit: cover; /* Asegura que las imágenes no se deformen */
}

@media (max-width: 991.98px) {
    .carousel-image {
        height: 350px; /* Ajusta la altura en pantallas medianas */
    }
}

@media (max-width: 575.98px) {
    .carousel-image {
        height: 200px; /* Ajusta la altura en pantallas pequeñas */
    }
}

.carousel-caption {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%; /* Limita el ancho del texto */
}

.carousel-caption h1 {
    font-size: 1.4rem;
}

.carousel-caption p {
    font-size: 0.6rem;
}

.carousel-caption button {
    font-size: 1rem;
    padding: 10px 20px;
}

#services {
    padding: 40px 0;
    background-color: #FFFFFF; /* Blanco */
}

#services h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2295D3; /* Azul primario */
}

#services .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

#services .card-img-top {
    height: 180px;
    object-fit: cover;
}

#services .card-body {
    padding: 20px;
}

#services .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0056B3; /* Azul secundario oscuro */
}

#services .card-text {
    font-size: 0.95rem;
    color: #6C757D; /* Texto gris */
}
