:root {

    --primary-color: #1A202C;
    --secondary-color: #2D3748;
    --tertiary-color: #eff1f3;
    --quaternary-color: #EDF2F7;
    --quinary-color: #118158;
}



h2,
h1,
h3 {


    font-family: "Nunito", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
    font-display: swap;


}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    color: #333c4b;
}

body {


    background-color: white !important;
}


.swiper-pagination-bullet-active {


    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #118158 !important;
}


.navarro {

    font-size: 1rem !important;
}



/* Botón flotante de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    /* ajustado para dejar espacio al scroll-top */
    right: 20px;

    background-color: #25D366;
    /* color de fondo oficial de WhatsApp */
    color: white;
    /* color del icono */
    font-size: 34px;
    padding: 8px;
    border-radius: 50%;
    /* círculo perfecto */

    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* En móvil: tamaño proporcional */
@media screen and (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        width: 50px;
        height: 50px;
        padding: 9px;
    }
}



.glass {
    position: absolute;
    inset: -20px;
    border-top-right-radius: 50%;
    background: linear-gradient(50deg, #1f2937 0%, rgb(48, 64, 95) 100%);
    transform: translate3d(0px, 0px, 25px);
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    transition: all 0.5s ease-in-out;
}

.content {
    padding: 50px 30px 40px 30px;
    transform: translate3d(0, 0, 26px);
}



.description {
    position: absolute;

    left: .5rem;
    text-align: start;
    padding: .5rem 1em;
    width: 90%;
    transition: all 0.5s ease;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(.1rem);
    background-color: rgba(122, 115, 115, 0.2);
    border-radius: .5rem 2rem;
}

.card2 {
    transition: all 0.3s;
    position: relative;
    border-radius: 0.5rem 2rem;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.5);
    display: inline-block;
    /* <-- Esto es clave */
    width: fit-content;
    /* <-- Esto hace que se ajuste al contenido */
    padding: 0.75rem 1.5rem;
    /* Opcional: padding interno para dar espacio */
}


.card_box {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(175deg, #1f2937 0%, rgb(48, 64, 95) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

.ribbon {
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    color: white;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    transform: rotate(12deg);
}

.card_box:hover .ribbon {
    transform: rotate(12deg) scale(1.05);
}