@charset "UTF-8";

body#home .banner {
    padding: 4vw 0;
    background: var(--third-color) center / cover no-repeat url("../images/background-green.svg");
}

#quick_easy {
    padding: max(4rem, 4vw) 0;
}

#quick_easy h2 {
    color: var(--main-text-color);
    font-family: var(--main-font);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#quick_easy nav {

}

#quick_easy ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: max(2vw, 1em);
    font-size: 1rem;
    margin: max(1vw+1rem) 0;
    padding: 2em 0
}

#quick_easy ul li a,
#quick_easy ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .25em;
    text-align: center;
    color: var(--main-text-color)
}

#quick_easy ul li a:after {
    content: '';
    display: inline-block;
    width: 2.5em;
    height: 3px;
    background: black;
    border-radius: 4px;
    opacity: 0;
}

#quick_easy ul li a.selected:after,
#quick_easy ul li a:hover:after {
    opacity: .5
}

#quick_easy ul li img {
    height: 2em;
    opacity: .5;
}

#quick_easy ul li:hover img {
    opacity: 1;
}

#quick_easy ul li span {
    text-align: center;
}

#quick_swiper article {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

#quick_easy article h3 a,
#quick_easy article h3 {
    color: var(--main-text-color);
    font-family: var(--main-font);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0;
}

#quick_easy article h3 a {
    display: block;
}

#quick_easy article h3 a:hover {
    padding-left: .5em;
    color: white !important;
    background: var(--main-color) !important;
    cursor: pointer;
}

#quick_easy .reviews {
    --star-size: 1em;
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
}

#quick_easy .reviews div.text {
    /* flex:2; */
    text-align: left
}


#quick_easy .reviews span {
    display: inline-block;
    width: 100%;
    height: 1em;
    background-image: url("../images/reviews-value-5.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

#quick_easy .reviews span[data-rating="0"] {
    background-image: url("../images/reviews-value-0.svg");
}

#quick_easy .reviews span[data-rating="1"] {
    background-image: url("../images/reviews-value-1.svg");
}

#quick_easy .reviews span[data-rating="2"] {
    background-image: url("../images/reviews-value-2.svg");
}

#quick_easy .reviews span[data-rating="3"] {
    background-image: url("../images/reviews-value-3.svg");
}

#quick_easy .reviews span[data-rating="4"] {
    background-image: url("../images/reviews-value-4.svg");
}

#quick_easy .reviews span[data-rating="5"] {
    background-image: url("../images/reviews-value-5.svg");
}


#quick_swiper article figure img,
#quick_swiper article figure {
    padding: 0;
    margin: 0;
    border-radius: 1.5vw;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    object-fit: cover;
    width: 100%
}

#quick_easy .swiper-button-next.outside,
#quick_easy .swiper-button-prev.outside {
    color: var(--main-color)
}

#quick_swiper {
    max-width: var(--main-max-width);
}

#quick_easy .swiper-contener {
    --swiper-navigation-size: 2rem;
    --this-buttons-separation: .5rem;
    position: relative;
    max-width: calc(var(--main-max-width) + calc(2 * calc(var(--swiper-navigation-size) + var(--this-buttons-separation))));
    margin: 0 auto;
}

#featured_destinations {
    padding-bottom: max(4rem, 4vw);
}

#featured_destinations .container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1em;
}

#featured_destinations .container article {
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
}

#featured_destinations .container article figure {
    margin: 0;
    padding: 0;
    /* border-radius: .5rem; */
    background: none;
}

#featured_destinations .container article figure:before {
    display: block;
    content: '';
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .5) 100%);
    position: absolute;
    z-index: 10;
    inset: 0 0 0 0;
    border-radius: 1vw;
}

#featured_destinations .container article:hover {
    cursor: pointer;
}

#featured_destinations .container article:hover figure:before {
    background-image: linear-gradient(180deg, rgba(0, 203, 191, 0.75) 0%, rgba(0, 164, 154, .9) 100%);
}

#featured_destinations .container article figcaption {
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    color: white;
    box-sizing: border-box;
}

#featured_destinations .container article figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1vw;
    /* overflow: hidden; */
    /* background: none; */
    display: block;
    width: 100%;
}

#featured_destinations footer {
    margin: 1em 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#featured_destinations footer .container {
}

#featured_destinations footer .container a {
}

#quick_easy .swiper.inside {
    --swiper-navigation-size: 1rem;
}

#quick_easy .swiper-button-next.inside,
#quick_easy .swiper-button-prev.inside {
    color: var(--main-text-color);
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(0, 0, 0, .25);
    opacity: 0;
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    border-radius: 100vh;
    padding: .5em;
    margin-top: 0;
    transform: translateY(-50%)
}

#quick_easy .swiper.inside:hover .swiper-button-next.inside,
#quick_easy .swiper.inside:hover .swiper-button-prev.inside {
    opacity: 1
}

.our-services .service {
    border-radius: 13px;
    min-height: 280.88px;
}

.row.service .image {
    border-radius: 0 13px 13px 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
}

.row.service {
    background: var(--secondary-color);
}

.row.service .content {
    padding: 1.5rem 3rem;
}

.business {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: var(--bs-border-radius);
    padding: 1.5rem 1.5rem 1rem;
    height: 100%;
}

.business .header h3, .business .header p {
    margin-bottom: 0px;
}

.business .header h3 {
    font-size: 1.37rem;
    font-weight: 800;
}

.business .header p {
    font-size: 0.87rem;
    font-weight: 500;
    color: #666666;
}

.business .content p {
    font-size: 0.94rem;
}

.public-business {
    background: center / cover url(../images/background-publica-tu-negocio.webp);
    background-attachment: fixed;
    color: var(--main-bg);
}

.public-business .pretitle {
    color: var(--main-bg);
}

section.public-business::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #000, transparent);
}

section.public-business {
    position: relative;
}

section.public-business .container:first-child {
    z-index: 9;
    position: relative;
}

.container.ml-5.markers {
    max-width: max(30vw, 530px);
    margin-left: 3vw;
    margin-top: 2rem;
}

.container.markers h3 {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 800;
}

.container.markers p {
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: var(--main-bg);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0 .5rem 0;
}

.container.markers p::before {
    content: url(../images/icons/marker.svg);
}

.post-card {
    min-height: 450px;
    background: var(--bg-image) center / cover no-repeat;
    padding: 4rem;
    border-radius: 13px;
    position: relative;
}

.post-card::before {
    content: " ";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1;
    opacity: .5;
    border-radius: 13px;
}

.post-card .post-body,
.post-card a {
    position: relative;
    z-index: 2;
}

.post-card .post-body {
    color: var(--main-bg);
}

.post-card .post-body h3 {
    font-weight: 800;
}

section.blog {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.card img {
    border-radius: calc(var(--bs-border-radius) - 2px) calc(var(--bs-border-radius) - 2px) 0 0;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.banner h2 {
    margin-bottom: 1rem;
}

.features .card {
    height: 100%;
    transition: 0.3s all ease-in-out;
    border-width: 2px;
    border-color: var(--primary-color);
}

.business {
    transition: 0.3s all ease-in-out;
}

.business img {
    border-radius: 3px;
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.features .card .categories {
    margin-top: 2rem;
}

.features .card.dark-blue:hover,
.business.dark-blue:hover {
    background: var(--primary-color);
    color: var(--main-bg);
    border-color: var(--third-color);
}

.business.dark-blue:hover .direction {
    color: var(--light-gray);
}

.business.orange:hover .direction {
    color: var(--main-bg);
}

.features .card.orange:hover,
.business.orange:hover {
    background: var(--third-color);
    color: var(--main-bg);
    border-color: var(--primary-color);
}

.features .card.light-blue:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.features .card.light-blue:hover h3 {
    color: var(--primary-color);
}

.features .card.dark-blue:hover .category,
.features .card.orange:hover .category,
.business:hover .category{
    color: var(--main-bg);
    border-color: var(--main-bg);
}

.features .card.light-blue:hover .category {
    color: var(--third-text-color);
    border-color: var(--third-text-color);
}

.service.dark-blue {
    background: var(--primary-color);
    color: var(--main-bg);
}

.service.orange {
    background: var(--third-color);
    color: var(--main-bg);
}

.service.light-blue {
    background: var(--secondary-color);
    color: var(--main-text-color);
}

.service.light-blue h3 {
    color: var(--primary-color);
}

.card h3 {
    font-weight: 800;
}

/* Flechas de navegación en color negro */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    border-radius: 50%; /* Opcional: hace que las flechas tengan un borde redondeado */
    width: 40px; /* Ajusta el tamaño según prefieras */
    height: 40px;
}

/* Indicadores (bullets) en negro */
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 12px; /* Ajusta el tamaño según prefieras */
    height: 12px;
    border-radius: 50%;
}

/* Opcional: Indicadores activos en un color diferente */
.carousel-indicators .active {
    background-color: var(--third-color); /* Puedes cambiar el color del indicador activo si lo deseas */
}

.carousel-indicators {
    bottom: -30px;
}

@media screen and (max-width:640px) {

    .search-form {
        padding: 1rem;
    }

    .banner .container.row {
        flex-direction: column;
    }

}

@media screen and (max-width:575px) {

    .row.service .image {
        clip-path: polygon(0 18%, 100% 0, 100% 100%, 0% 100%) !important;
        height: 400px;
        border-radius: 0px 0px 13px 13px;
    }
}
