@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* TIPOGRAFIAS */

    --font-1: "Inter", sans-serif;
    --font-2: "Inter", sans-serif;
    --font-3: "Inter", sans-serif;

    /* COLOR */

    --color-1: #032C52;
    --color-2: #6FA8DC;
    --color-3: #EFF8FF;
    --color-black: #272727;
    --color-white: #ffffff;

    /* SIZE */

    --font-s-60: 60px;
    --font-s-50: 50px;
    --font-s-40: 40px;
    --font-s-36: 36px;
    --font-s-30: 30px;
    --font-s-28: 28px;
    --font-s-25: 25px;
    --font-s-22: 22px;
    --font-s-20: 20px;
    --font-s-18: 18px;
    --font-s-16: 16px;
    --font-s-14: 14px;
    --font-s-12: 12px;

    /* FONT WEIGHT */

    --font-w-900: 900;
    /* black */
    --font-w-800: 800;
    /* extra bold */
    --font-w-700: 700;
    /* bold */
    --font-w-600: 600;
    /* semi bold */
    --font-w-500: 500;
    /* medium */
    --font-w-400: 400;
    /* regular */
    --font-w-300: 300;
    /* light */
    --font-w-200: 200;
    /* extra light */
    --font-w-100: 100;
    /* thin */

    /* LINE HEIGHT */

    --lh-auto: normal;
    --lh-100: 100%;
    --lh-110: 110%;
    --lh-140: 140%;
}

@media (max-width: 992px) {

    :root {

        /* SIZE */

        --font-s-50: 34px;

    }

}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
ul,
button {
    padding: 0;
    margin: 0;
}

.font-1 {
    font-family: var(--font-1) !important;
}

.font-2 {
    font-family: var(--font-2) !important;
}

.font-3 {
    font-family: var(--font-3) !important;
}

.TG {
    font-family: var(--font-1);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-50);
    line-height: var(--lh-auto);
}

.TM {
    font-family: var(--font-1);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-36);
    line-height: var(--lh-auto);
}

.TS {
    font-family: var(--font-2);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-20);
    line-height: var(--lh-auto);
}

.P {
    font-family: var(--font-3);
    font-weight: var(--font-w-400);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
}

.P-bold {
    font-family: var(--font-3);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
}

.fs-60 {
    font-size: var(--font-s-60) !important;
}

.fs-50 {
    font-size: var(--font-s-50) !important;
}

.fs-40 {
    font-size: var(--font-s-40) !important;
}

.fs-36 {
    font-size: var(--font-s-36) !important;
}

.fs-34 {
    font-size: var(--font-s-34) !important;
}

.fs-30 {
    font-size: var(--font-s-30) !important;
}

.fs-28 {
    font-size: var(--font-s-28) !important;
}

.fs-25 {
    font-size: var(--font-s-25) !important;
}

.fs-22 {
    font-size: var(--font-s-22) !important;
}

.fs-20 {
    font-size: var(--font-s-20) !important;
}

.fs-18 {
    font-size: var(--font-s-18) !important;
}

.fs-16 {
    font-size: var(--font-s-16) !important;
}

.fs-14 {
    font-size: var(--font-s-14) !important;
}

.fs-12 {
    font-size: var(--font-s-12) !important;
}

.fw-900 {
    font-weight: var(--font-w-900) !important;
}

.fw-800 {
    font-weight: var(--font-w-800) !important;
}

.fw-700 {
    font-weight: var(--font-w-700) !important;
}

.fw-600 {
    font-weight: var(--font-w-600) !important;
}

.fw-500 {
    font-weight: var(--font-w-500) !important;
}

.fw-400 {
    font-weight: var(--font-w-400) !important;
}

.fw-300 {
    font-weight: var(--font-w-300) !important;
}

.fw-200 {
    font-weight: var(--font-w-200) !important;
}

.fw-100 {
    font-weight: var(--font-w-100) !important;
}

.lh-100 {
    line-height: var(--lh-100) !important;
}

.lh-110 {
    line-height: var(--lh-110) !important;
}

.lh-140 {
    line-height: var(--lh-140) !important;
}

.lh-auto {
    line-height: var(--lh-auto) !important;
}

.color-1 {
    color: var(--color-1) !important;
}

.color-2 {
    color: var(--color-2) !important;
}

.color-3 {
    color: var(--color-3) !important;
}

.color-black {
    color: var(--color-black) !important;
}

.color-black-50 {
    color: rgba(0, 0, 0, 0.5);
}

.color-white {
    color: var(--color-white) !important;
}

.bg-1 {
    background-color: var(--color-1) !important;
}

.bg-2 {
    background-color: var(--color-2) !important;
}

.bg-3 {
    background-color: var(--color-3) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-lemon {
    background: rgb(254, 226, 75);
    background: -moz-linear-gradient(45deg, rgba(254, 226, 75, 1) 0%, rgba(242, 183, 5, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(254, 226, 75, 1) 0%, rgba(242, 183, 5, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 226, 75, 1) 0%, rgba(242, 183, 5, 1) 100%);
}

.bg-lemon-text {
    background: linear-gradient(45deg, rgba(254, 226, 75, 1) 0%, rgba(242, 183, 5, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-lemon-gris_claro {
    background: rgb(245, 245, 245);
    background: -moz-linear-gradient(71deg, rgba(245, 245, 245, 1) 0%, rgba(254, 226, 75, 1) 100%);
    background: -webkit-linear-gradient(71deg, rgba(245, 245, 245, 1) 0%, rgba(254, 226, 75, 1) 100%);
    background: linear-gradient(71deg, rgba(245, 245, 245, 1) 0%, rgba(254, 226, 75, 1) 100%);
}

.backgrounds-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.no-decoracion {
    text-decoration: none;
}

.list-style-none {
    list-style: none;
}

.sombra {
    -webkit-box-shadow: 6px 6px 15px -3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 6px 6px 15px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 6px 6px 15px -3px rgba(0, 0, 0, 0.2);
}

.w-fit-content {
    width: fit-content;
}

.border-radius-20 {
    border-radius: 20px;
}

.border-radius-70 {
    border-radius: 70px;
}

.border-radius-100 {
    border-radius: 100px;
}

.padding-40 {
    padding: 40px;
}

/* ----------------------- BOTON ----------------------- */

.boton-1 {
    position: relative;
    padding: 12px 24px;
    width: fit-content;
    border: 2px solid transparent;
    border-radius: 50px;
    color: white;
    background: var(--color-1);
    background-clip: padding-box;
    font-family: var(--font-3);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.boton-1::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;

    z-index: -1;
    transition: opacity 0.3s ease;
}

.boton-1:hover {

    background: white;
    color: var(--color-1)
}

.boton-1:hover::before {
    opacity: 1;
}

.boton-2 {
    position: relative;
    padding: 12px 24px;
    width: fit-content;

    border-radius: 50px;
    color: var(--color-1);
    background: transparent;
    background-clip: padding-box;
    font-family: var(--font-3);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.boton-2::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;

    z-index: -1;
}

.boton-2:hover {

    background: #032C52;
    color: white !important;
}

.boton-2:hover::before {
    opacity: 0;
}

.boton-2-flecha {
    padding: 12px 10px;
}

.boton-2-flecha::before {
    background: unset;
}

.boton-2-flecha:hover i {
    color: white !important;
}


.boton-3 {
    position: relative;
    padding: 12px 24px;
    width: fit-content;
    border: 2px solid transparent;
    border-radius: 50px;
    color: black;
    background: linear-gradient(71deg, rgba(245, 245, 245, 1) 0%, rgba(254, 226, 75, 1) 100%);
    background-clip: padding-box;
    font-family: var(--font-3);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.boton-3::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(71deg, rgba(245, 245, 245, 1) 0%, rgba(254, 226, 75, 1) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.boton-3:hover {
    border: 2px solid rgba(254, 226, 75, 1);
    background: transparent;
    color: var(--color-black);
}

.boton-3:hover::before {
    opacity: 1;
}

/* ----------------------- BOTON ----------------------- */

.cards {

    min-height: 478px;
    border-radius: 20px;
    position: relative;
}

.card-div {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 20px;
    min-height: 372px;
}



/* ---------------------------------------------- HEADER ---------------------------------------------- */

.logo img {
    width: 100%;
    max-width: 310px;
}

.navbar-collapse {
    flex-basis: unset;
    flex-grow: unset;
    align-items: center;
}

nav .boton-2 {
    background: white;
}

@media (max-width: 992px) {

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
    }

}

/* ---------------------------------------------- HEADER ---------------------------------------------- */

/* ---------------------------------------------- HOME ---------------------------------------------- */

/* ----------------------- seccion 1 ----------------------- */



.section-1-home img {
    width: unset;
}

.section-1-home img:nth-of-type(1) {
    right: 17%;
    bottom: 0;
}

.section-1-home img:nth-of-type(2) {
    right: 47%;
    top: 7%;
}

.section-1-home img:nth-of-type(3) {
    bottom: 36px;
    right: 0;
}

@media (max-width: 1400px) {

    .section-1-home img:nth-of-type(1) {
        right: 20%;
    }

    .section-1-home img:nth-of-type(2) {
        right: 54%;
        top: 7%;
    }

}

@media (max-width: 1200px) {

    .section-1-home img:nth-of-type(1) {
        height: 90%;
        bottom: 0;
        right: 16%;
    }

    .section-1-home img:nth-of-type(2) {
        height: 30%;
        right: 59%;
        top: 30%;
    }

    .section-1-home img:nth-of-type(3) {
        height: 17%;
    }

}

@media (max-width: 992px) {

    .section-1-home {
        height: 370px;
    }

    .section-1-home img:nth-of-type(1) {
        right: initial;
        left: 10px;
        bottom: 10px;
        height: 60%;
    }

    .section-1-home img:nth-of-type(2) {
        right: 75%;
        top: 29%;
        height: 30%;
    }

    .section-1-home img:nth-of-type(3) {
        bottom: 24px;
        right: 0px;
        height: 16%;
    }

}

@media (max-width: 767px) {

    .section-1-home {
        height: unset;
    }

}

/* ----------------------- seccion 1 ----------------------- */

/* ----------------------- seccion 2 ----------------------- */
.buscador-negocio {
    position: absolute;
    z-index: 1;
    background-color: #EFF8FF
}

.buscador-negocio .select2-container--default .select2-selection--single {
    background-color: unset;
    border: unset;
    border-radius: 4px;
}

.buscador-negocio .select2-container:nth-of-type(1) {
    width: 289px !important;
}

.buscador-negocio .select2-container:nth-of-type(2) {
    width: 225px !important;
}

.buscador-negocio .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.buscador-negocio .select-field {
    position: relative;
}

.buscador-negocio .select-field select {
    height: 50px;
    border: 1px solid black;
    background: transparent;
    color: var(--color-black);
    padding-left: 45px;
}

.buscador-negocio .select2-container--default .select2-selection--single {
    background-color: white;
    border-radius: 10px;
    height: 48px;
}

.buscador-negocio .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-black);
    line-height: 28px;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: var(--font-3);
    font-weight: var(--font-w-800);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
}

.buscador-negocio .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 12px 24px 12px 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buscador-negocio .select-field label {
    position: absolute;
    left: 15px;
    top: -10px;
}

.buscador-negocio .maletin {
    top: 10px;
    left: 20px;
}

.buscador-negocio .flecha-dropdown {
    top: 16px;
    right: 20px;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* ----------------------- seccion 2 ----------------------- */

/* ----------------------- seccion 3 ----------------------- */

/* ----------------------- seccion 3 ----------------------- */

/* ----------------------- seccion 4 ----------------------- */

.contenedor-categoria {
    /* width: 300px;
    height: 425px;
    background-color: var(--color-black);
    padding: 40px;
    border-radius: 20px; */
}

.contenedor-categoria {
    background-color: #032c52;
    width: 100%;
    min-height: fit-content;
    filter: drop-shadow(-9px 11px 19px rgba(0, 0, 0, 0.05));
    clip-path: path("M80.6895 51.9027C62.6356 51.9027 48 65.3789 48 82.0025V359.097C48 372.298 59.6224 383 73.9593 383H471.041C485.378 383 497 372.298 497 359.097V51.9027C497 38.7016 485.378 28 471.041 28L293.171 28C275.117 28 259.669 45.6647 242.484 50.7577C239.975 51.5012 237.3 51.9027 234.522 51.9027L80.6895 51.9027Z");
    padding: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.contenedor-categoria img {
    max-width: 150px;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li.slick-active button:before {
    color: var(--color-1);
}

.slick-dots li button:before {
    font-size: 10px;
    opacity: 0.6;
}

@media (max-width: 767px) {

    .contenedor-categoria {
        width: 100%;
    }

}

/* ----------------------- seccion 4 ----------------------- */

/* ----------------------- seccion 5 ----------------------- */

.section-5-home .contenedor-publicar {
    height: 370px;
}

.contenedor-publicar {
    background-image: url(../img/recursos/recurso-7.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ----------------------- seccion 5 ----------------------- */

/* ----------------------- seccion 6 ----------------------- */

.section-6-home img {
    border-radius: 190px 190px 0 0;
}

@media (max-width: 992px) {

    .section-6-home img {
        border-radius: 70px;
        -webkit-box-shadow: 8px 8px 15px -3px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 8px 8px 15px -3px rgba(0, 0, 0, 0.2);
        box-shadow: 8px 8px 15px -3px rgba(0, 0, 0, 0.2);
    }

}

@media (max-width: 767px) {

    .section-6-home img {
        border-radius: 20px;
        -webkit-box-shadow: 8px 8px 15px -3px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 8px 8px 15px -3px rgba(0, 0, 0, 0.2);
        box-shadow: 8px 8px 15px -3px rgba(0, 0, 0, 0.2);
    }

}

/* ----------------------- seccion 6 ----------------------- */

/* ---------------------------------------------- HOME ---------------------------------------------- */

/* ---------------------------------------------- NEGOCIOS ---------------------------------------------- */

.section-negocios .border-radius-70 {
    border-radius: 70px 70px 0 0;
}

.section-negocios .contenedor-publicar {
    height: 413px;
}

.page-item:last-child .page-link {
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

.page-item:first-child .page-link {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}

.page-item .page-link {
    padding: 0 7px;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--color-black);
    background-color: unset;
    border-color: var(--color-black);
    border: 1px solid;
    border-radius: 3px !important;
}

.page-link {
    position: relative;
    display: block;
    padding: unset;
    font-size: var(--bs-pagination-font-size);
    color: var(--color-black);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: unset;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.page-link:hover {
    z-index: 2;
    color: unset;
    background-color: unset;
    border-color: unset;
}

.gap-57 {
    gap: 57px 0;
}

/* ---------------------------------------------- NEGOCIOS ---------------------------------------------- */

/* ---------------------------------------------- FICHA-NEGOCIO ---------------------------------------------- */

.section-ficha-negocios {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.carrusel-negocio .slick-list {
    border-radius: 20px;
}

.section-ficha-negocios .contenedor-publicar {
    height: 334px;
}

.section-ficha-negocios .flecha-der {
    z-index: 1;
    bottom: 30px;
    right: 30px;
}

.section-ficha-negocios .flecha-izq {
    z-index: 1;
    bottom: 30px;
    right: 90px;
}

.img-negocio {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.redes-sociales {
    border-radius: 12px;
}

.redes-sociales a {
    color: var(--color-1);
    width: 50px;
    font-size: 30px;
    margin: 0 5px;
    border-radius: 100%;
    display: inline-block;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.redes-sociales a:hover {
    transform: scale(1.1);
}

/* ---------------------------------------------- FICHA-NEGOCIO ---------------------------------------------- */

/* ---------------------------------------------- SERVICIOS ---------------------------------------------- */

.section-1-servicios .border-radius-70 {
    border-radius: 70px 70px 0 0;
}

.section-1-servicios .contenedor-servicios {
    width: 413px;
}

.seccion-2-servicios {
    height: 370px;
    background-image: url(../img/recursos/recurso-16.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ---------------------------------------------- SERVICIOS ---------------------------------------------- */

/* ---------------------------------------------- CONTACTO ---------------------------------------------- */

.section-1-contacto form {
    width: 100%;
    max-width: 650px;
}

/* ---------------------------------------------- CONTACTO ---------------------------------------------- */

/* -------------------------------------------------- CONTACTO -------------------------------------------------- */

.section-1-contacto {
    position: relative;
}

.section-1-contacto input {
    height: 50px;
    border: none;
    background: var(--color-white);
    color: var(--color-black);
    padding-left: 40px;
    border-radius: 50px;
}

.section-1-contacto textarea {
    border: none;
    background: var(--color-white);
    color: var(--color-black);
    padding-left: 40px;
    border-radius: 50px;
    padding: 25px 40px;
}

.section-1-contacto input::placeholder {
    font-family: var(--font-3);
    font-weight: var(--font-w-400);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
}

.section-1-contacto textarea::placeholder {
    font-family: var(--font-3);
    font-weight: var(--font-w-400);
    font-size: var(--font-s-16);
    line-height: var(--lh-140);
}

.seccion-2-contacto .contacto-movil,
.seccion-2-contacto .contacto-whatsapp {
    gap: 40px;
    padding: 0 30px;
}

.seccion-2-contacto .contacto-mail {
    gap: 50px;
    margin-top: 10px;
}

@media (max-width: 767px) {

    .border-radius-100 {
        border-radius: unset;
    }

}


/* -------------------------------------------------- CONTACTO -------------------------------------------------- */



/* ---------------------------------------------- FOOTER ---------------------------------------------- */

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------- FOOTER ---------------------------------------------- */

.nav-link.active {
    color: var(--color-1) !important;
}

/* Opcional: hover sobre enlaces inactivos */
.nav-link:not(.active):hover {
    color: var(--color-1);
}

.carousel-indicators [data-bs-target] {
    background-color: #032C52;
    opacity: 1;
}

.carousel-indicators .active {
    opacity: 0.6;
}

.carousel-indicators {
    margin-bottom: 0;
}

.text-cortado {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-max-lines: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 400px;
}

.btn-2 {
    border: 2px solid var(--color-1);
    border-radius: 10px;
    background-color: var(--color-2);
    color: var(--color-1);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
}

.negocios .buscador-negocio {
    position: relative;
}

@media(max-width:992px) {

    :root {
        --font-s-60: 40px;
        --font-s-50: 35px;
        --font-s-40: 30px;
        --font-s-36: 26px;
        --font-s-30: 20px;
        --font-s-28: 18px;
        --font-s-25: 18px;
        --font-s-22: 18px;
        --font-s-20: 16px;
        --font-s-18: 16px;
        --font-s-16: 16px;
        --font-s-14: 14px;
        --font-s-12: 12px;
    }

    .card-div {
        position: relative;
        top: initial;
        right: initial;
        transform: initial;
        min-height: fit-content;
        background: rgba(255, 255, 255, 0.5);
    }

    .cards {
        background-size: contain !important
    }

    .section-1-contacto img {
        display: none;
    }

    .buscador-negocio div {
        width: 100%;
    }

    .form-control {
        width: 100% !important;
    }

    .buscador-negocio .select2-container:nth-of-type(1) {
        width: 100% !important;
    }
    .navbar-brand.logo{
        max-width: 50%;
    }
}