body {
    background: linear-gradient(180deg, #004080, #ffffff); /* Degradado de azul a blanco, de arriba hacia abajo */
    color: #333;
}
.navbar {
    background-color: #00264d;
}
.navbar-brand, .nav-link {
    color: #fff !important;
}
.header {
    background-color: #ffffff;
    color: #004080;
    text-align: center;
    padding: 0px 20px;
}
.header h1 {
    font-size: 2.5rem;
}
.section-title {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}
.product-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: scale(1.05);
}
footer {
    background-color: #ffffff;
    color: #00264d;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

#carouselExampleIndicators .carousel-item img {
    max-width: 600px;
    max-height: 300px;
    margin: 0 auto;
    object-fit: cover;
    padding-top: 10px;
}


.contact-section i {
    font-size: 1.2rem; /* Tamaño ajustado para los íconos */
    vertical-align: middle; /* Alineación con el texto */
}

.contact-section a {
    color: #007bff; /* Color personalizado para los enlaces */
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline; /* Efecto de subrayado al pasar el cursor */
}

.icon-class {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}


/* CONTENEDOR DEL BANNER */
.banner-container {
    position: relative;
    width: 100%;
}

/* OSCURECER LA IMAGEN PARA QUE SE LEA EL TEXTO */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
}

/* CONTENEDOR DEL TEXTO + BOTON */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

/* TITULO */
.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}

/* SUBTITULO */
.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* BOTON */
.banner-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffcc00;
    color: black;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.banner-btn:hover {
    background-color: #ffe37a;
    transform: translateY(-3px);
}


/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1eb85c;
}
