/* Prueba de Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Moonrising';
    src: url('../assets/fonts/moonrising/Moonrising.ttf') format('truetype'),
         url('../assets/fonts/moonrising/Moonrising.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Moonrising';
    src: url('../assets/fonts/moonrising/Moonrising Italic.ttf') format('truetype'),
         url('../assets/fonts/moonrising/Moonrising Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}



/* @font-face {
    font-family: 'Moonrising';
    src: url('../assets/fonts/moonrising/Moonrising.ttf') format('truetype'),
         url('../assets/fonts/moonrising/Moonrising.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} */
/*Terminan Fuentes*/



.rounded {
    border-radius: 2.25rem !important;
}

/* Asegúrate de que el contenedor no se desborde */
.swiper-container {
    width: 100%;
    overflow: hidden;
}

/* Ajusta las diapositivas para que se adapten a la pantalla */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Asegura que las imágenes dentro de las diapositivas sean responsivas */
.product-image {
    max-width: 100%;
    height: auto;
}

/* Opcional: Asegura que el contenedor del swiper esté correctamente alineado */
#destacados .container {
    padding-left: 10;
    padding-right: 10;
}


.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #6c757d;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    background: #fff;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1540px;
    }
    .product-card {
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        border: 1px solid #6c757d;
    }
    
}


/* Estilos personalizados para la sección de contacto */


.form-control.rounded-input {
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control.rounded-input:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    border-color: #80bdff;
}

button.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 10px;
}

button.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .form-row .form-group {
        margin-bottom: 1rem;
    }
}



/* Estilos personalizados para el footer */
footer {
    background-color: #f8f9fa;
}

footer h5 {
    font-size: 1.25rem;
    color: #343a40;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li i {
    color: #007bff;
}

footer .bg-dark {
    background-color: #343a40 !important;
}

footer .text-white {
    color: #ffffff !important;
}

footer .text-dark {
    color: #343a40 !important;
}

footer .text-dark:hover {
    color: #007bff !important;
}

@media (max-width: 768px) {
    footer .text-center {
        text-align: center !important;
    }

    footer .text-md-left {
        text-align: left !important;
    }
}



/* Estilos personalizados para el slider */
#slider-section {
    position: relative;
}

.carousel-item {
    height: 600px; /* Puedes ajustar la altura según tus necesidades */
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
   
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

}


/* Estilos personalizados para el navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Asegura que el navbar esté por encima de otros elementos */
}

/* Estilos adicionales para el navbar cuando se hace scroll */
#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9); /* Cambia el color de fondo */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Agrega una sombra */
    transition: background-color 0.3s, box-shadow 0.3s;
}
.navbar-nav .nav-link {
    margin-right: 15px;
    transition: color 0.3s, background-color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #f8f9fa;
    color: #0087cf;
    border-radius: 5px;
}

.navbar-nav .btn {
    margin-left: 10px;
    border-radius: 5px;
}

.modal-content {
    border-radius: 10px;
}

.modal-header .close {
    outline: none;
}


 /* Estilos para el widget de WhatsApp */
 .whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-widget img {
    width: 50px;
    height: auto;
    cursor: pointer;
}


/*Estilos personalizados*/

p {
    margin-top: 0 !important;
    margin-bottom: 3rem !important;
    font-family: 'Raleway' !important;
    font-size: 1.3rem !important;
    color: #474747 !important;
}

.subtitle{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #adb4bb;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.main-title {
    font-size: 3rem;
    margin: 0.5rem 0 1.5rem 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12rem;
    color: #0878bd;
    text-transform: uppercase;
}

.pt-50{
    padding-top: 50px;
}
.pb-50{
    padding-bottom: 50px;
}
#confianza .accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border: none !important;
    border-bottom-left-radius: 0;
}

#confianza .accordion-button {
    color: #fff;
    width: 100%;
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    padding: 0.75rem 1.25rem;
}
.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: #8fd1fc;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
#confianza .accordion-button:not(.collapsed) i {
    color: #0878bd;
    transform: rotate(180deg);
}

#confianza .card-header {
    padding: 0;
}

#confianza .card-body {
    text-align: left;
}

@media (max-width: 767.98px) {
    #confianza .main-title {
        font-size: 1.5rem;
    }
    #confianza .subtitle {
        font-size: 1rem;
    }
}