/* _content/WebPage/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
@font-face {
    font-family: 'Cklass1';
    src: url('/fonts/raleway-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cklass Bold';
    src: url('/fonts/raleway-bold.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cklass black';
    src: url('/fonts/raleway-black.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

a.navbar-brand[b-pn5v9jfhgk] {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a[b-pn5v9jfhgk] {
    color: #0077cc;
}

.btn-primary[b-pn5v9jfhgk] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top[b-pn5v9jfhgk] {
    border-top: 1px solid #e5e5e5;
}

.border-bottom[b-pn5v9jfhgk] {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-pn5v9jfhgk] {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-pn5v9jfhgk] {
    font-size: 1rem;
    line-height: inherit;
}
/*.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}*/
.modal[b-pn5v9jfhgk] {
    z-index: 1050 !important;
}

.modal-backdrop[b-pn5v9jfhgk] {
    z-index: 1040 !important;
}

.footer-container[b-pn5v9jfhgk] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}

.footer-logo[b-pn5v9jfhgk] {
    text-align: center;
    margin-bottom: 20px;
    flex: 1;
    min-width: 200px;
}

    .footer-logo img[b-pn5v9jfhgk] {
        width: 150px;
    }

    .footer-logo p[b-pn5v9jfhgk] {
        margin: 10px 0 15px;
        font-size: 14px;
    }

.footer-social[b-pn5v9jfhgk] {
    margin-top: 10px;
}

    .footer-social h5[b-pn5v9jfhgk] {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

.social-icons[b-pn5v9jfhgk] {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .social-icons a[b-pn5v9jfhgk] {
        display: inline-block;
        color: white !important;
    }

    .social-icons img[b-pn5v9jfhgk] {
        width: 30px;
        height: 30px;
    }

.footer-column[b-pn5v9jfhgk] {
    margin: 10px 0;
    flex: 1;
    min-width: 200px;
}

    .footer-column h5[b-pn5v9jfhgk] {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

    .footer-column ul[b-pn5v9jfhgk] {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li[b-pn5v9jfhgk] {
            margin: 5px 0;
        }

            .footer-column ul li a[b-pn5v9jfhgk] {
                color: white;
                text-decoration: none;
                font-size: 10px;
            }

                .footer-column ul li a:hover[b-pn5v9jfhgk] {
                    text-decoration: underline;
                }

.payment-logos[b-pn5v9jfhgk] {
    display: flex;
    flex-direction: column; /* Apila las imágenes verticalmente */
    align-items: center; /* Centra las imágenes horizontalmente */
    gap: 10px; /* Espaciado entre imágenes */
}

    .payment-logos img[b-pn5v9jfhgk] {
        width: 80px; /* Ajusta el tamaño de las imágenes si es necesario */
    }

/* ========== ESTILOS PARA MENÚ RESPONSIVO ========== */

/* Estilos base del header */
header[b-pn5v9jfhgk] {
    position: relative;
    z-index: 1000;
}

.navbar[b-pn5v9jfhgk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Estilos del menú desktop (mantiene tu diseño actual) */
.nav-links[b-pn5v9jfhgk] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

    .nav-links li a[b-pn5v9jfhgk] {
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

/* Botón hamburguesa - oculto por defecto */
.menu-toggle[b-pn5v9jfhgk] {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    padding: 5px;
}

/* Overlay para cerrar menú en móvil */
.menu-overlay[b-pn5v9jfhgk] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

    .menu-overlay.active[b-pn5v9jfhgk] {
        display: block;
    }

/* Estilos responsivos para móviles y tablets */
@media (max-width: 768px) {
  

    /* Mostrar botón hamburguesa */
    .menu-toggle[b-pn5v9jfhgk] {
        display: block;

    }

    /* Transformar menú a versión móvil */
    .nav-links[b-pn5v9jfhgk] {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff; /* Fondo blanco sólido */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1005;
        background: #3399ff;
    }

        /* Menú activo - se desliza hacia adentro */
        .nav-links.active[b-pn5v9jfhgk] {
            right: 0;
        }

        /* Espaciado mayor para enlaces en móvil */
        .nav-links li a[b-pn5v9jfhgk] {
            font-size: 1.2rem;
            padding: 1rem;
            display: block;
            text-align: center;
            width: 100%;
            color: white;
        }

            .nav-links li a:hover[b-pn5v9jfhgk] {
                color: #ffd700;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 5px;
            }

    /* Ajustar el botón "Cotizar" para móvil */
    .navbar .btn[b-pn5v9jfhgk] {
        position: relative;
        z-index: 1002;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .nav-links[b-pn5v9jfhgk] {
        width: 90%;
    }

        .nav-links li a[b-pn5v9jfhgk] {
            font-size: 1.1rem;
        }
}

/* Animación del icono hamburguesa */
.menu-toggle i[b-pn5v9jfhgk] {
    transition: transform 0.3s ease;
}



