/* === OPTIMUM Custom Styles === */

/* General */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Carousel */
.carousel-item img {
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}
.carousel-caption {
    padding: 15px;
    border-radius: 8px;
}

/* Cards */
.card {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.card-title {
    font-weight: 600;
}

/* CTA Buttons */
.btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 10px 20px;
}

/* Footer */
footer {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.bg-ows{
    background-color: #143E8A;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5a;
    color: #fff;
}

/* Botón flotante de llamada (solo móvil) */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /* un poco más arriba del botón de WhatsApp */
    right: 20px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}
.call-float:hover {
    transform: scale(1.1);
    background: #0056b3;
    color: #fff;
}
