body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding-top: 100px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.bg-azul {
    background-color: #ffffff;

}



.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
    color: #003366 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #FFD700 !important;
}

.navbar .nav-link.active {
    color: #003366 !important;
    border-bottom: 3px solid #FFD700;
}



#carouselInicio {
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carrusel-img {
    height: 450px;
    object-fit: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.carousel-caption .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {

    .carrusel-img {
        height: 250px;
    }

    #carouselInicio {
        max-width: 95%;
    }

    .carousel-caption h1 {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}



.horario-box {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}



.mapa-box {
    max-width: 600px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mapa-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-mapa-pro {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    font-weight: bold;
    border: none;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-mapa-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #1e8449, #27ae60);
    color: white;
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.btn-primary {
    background-color: #003366;
    border: none;
}

.btn-primary:hover {
    background-color: #FFD700;
    color: black;
}

#lista {
    max-height: 250px;
    overflow-y: auto;
}

#lista li {
    display: flex;
    justify-content: space-between;
}



footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}



@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}



.cotizacion-bg {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cotizacion-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cotizacion-bg * {
    position: relative;
    z-index: 2;
}

.aviso-cotizacion {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: hsl(31, 98%, 49%);
    color: #fcfdfd;
    border: 2px solid #ffeeba;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.subtotal-box {
    background-color: #003366;
    color: white;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



.toast-carrito {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #003366;
    color: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.4s ease;
}

.toast-carrito.mostrar {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .toast-carrito {
        top: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
        font-size: 14px;
        transform: translateY(-150%);
    }

    .toast-carrito.mostrar {
        transform: translateY(0);
    }
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 9999;
    font-family: sans-serif;
}

.cookie-content {
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* BOTON FLOTANTE CARRITO */

.carrito-flotante{
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;

    width: 65px;
    height: 65px;

    background-color: #0d6efd;
    color: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    font-size: 28px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.3);

    z-index: 99999;

    transition: 0.2s;
}

.carrito-flotante:hover{
    transform: scale(1.08);
    color: white;
}

#contadorCarrito{
    position: absolute;

    top: -5px;
    right: -5px;

    background: red;
    color: white;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
    font-weight: bold;
}

/* CELULAR */
@media(max-width:768px){

    .carrito-flotante{

        position: fixed !important;

        bottom: 15px !important;
        right: 15px !important;

        width: 60px;
        height: 60px;

        font-size: 24px;

        z-index: 99999;
    }

    #contadorCarrito{
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}