@charset "UTF-8";

/*============ VARIABLES ============*/
:root {
    --black: #000000;
    --white: #FFFFFF;
    --text-white: #FCF8F8;
    --whitea: #ffffff4d;
    --gray: #433A3F;
    --color-1: #59E58A;
    --color-1a: #59e58ab3;
    --color-1b: #59e58a4d;
    --color-2: #A61A75;
    --color-2a: #a61a75b3;
    --color-2b: #a61a754d;
    --color-3: #151515;

    --fw-xthinner: 100;
    --fw-thinner: 200;
    --fw-thin: 300;
    --fw-normal: 400;
    --fw-bold: 500;
    --fw-bolder: 600;
    --fw-xbolder: 700;

    --heading-1: 60px;
    --heading-2: 48px;
    --heading-2a: 42px;
    --heading-3: 32px;
    --heading-4: 24px;
    --heading-5: 20px;
    --heading-6: 18px;

    --xxs: 5px;
    --xs: 10px;
    --sm: 20px;
    --md: 30px;
    --lg: 40px;
    --xl: 60px;
    --xxl: 120px;
    --xxxl: 240px;

    --font: 'Public Sans', sans-serif;

    --letter-spacing: -.07em;
}

/*============ KEYFRAMES START ============*/
@keyframes reveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes reveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*============ KEYFRAMES START ============*/

/*============ GENERAL START ============*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

html,
body {
    min-width: 380px;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

html:has(body.modal-open),
body.modal-open {
    overflow-x: hidden;
    overflow-y: hidden;
}

body {
    margin: 0;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font);
    font-weight: var(--fw-thin);
    line-height: 1.1;
    letter-spacing: var(--letter-spacing);
}

h2 {
    font-size: var(--heading-1);
}

h3 {
    font-size: var(--heading-2);
}

h4 {
    font-size: var(--heading-3);

}


h5 {
    font-size: var(--heading-4);
}

h6 {
    font-size: var(--heading-5);
}

li,
span,
p,
label,
input,
input::placeholder,
select,
button,
a {
    color: var(--black);
    font-family: var(--font);
    font-weight: var(--fw-normal);
    line-height: 1.1;
    letter-spacing: var(--letter-spacing);
}

a {
    text-decoration: none;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgb(0 0 0 / 0%) !important;
}

::-webkit-scrollbar {
    display: none;
}

.form-control,
.form-select {
    font-variant-numeric: lining-nums;
    padding: 0 var(--sm);
    border-radius: 100px;
    border-color: var(--white);
    background-color: #FCF8F8;
    height: 43px;
}

.form-control:focus,
.form-select:focus {
    background-color: white;
    border-color: var(--white);
    outline: 0;
    box-shadow: 0 0 0 0.0rem rgba(0, 0, 0, 0.0);
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.0rem rgb(0 0 0 / 0%) !important;
    opacity: 1;
}

.form-check-input:checked {
    background-color: var(--) !important;
    border-color: transparent !important;
}

.nav-mobile .btn-close {
    background-image: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
}

.nav-mobile .btn-close i {
    font-size: 25px;
    color: var(--) !important;
}

.imagen-cabecera {
    margin-bottom: 3rem;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--) !important;
    color: var(--) !important;
    font-family: var(--font) !important;
    font-weight: 400;
}

button:focus-visible {
    outline: none !important;
    border: 0 !important;
}

.btn {
    display: flex;
    align-items: center;
    gap: var(--xs);
    height: 60px;
    padding: 0 15px;
    font-family: var(--font);
    font-weight: var(--fw-thin);
    font-size: var(--heading-4);
    line-height: 1.1;
    white-space: nowrap;
    border-radius: 100px;
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: background-color .8s;
    -o-transition: background-color .8s;
    -moz-transition: background-color .8s;
    -webkit-transition: background-color .8s;
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 0%;
    opacity: 0;
    aspect-ratio: 1/1;
    border-radius: 100%;
    transition: width .8s ease-out, opacity .5s;
    -o-transition: width .8s ease-out, opacity .5s;
    -moz-transition: width .8s ease-out, opacity .5s;
    -webkit-transition: width .8s ease-out, opacity .5s;
    z-index: -1;
}

.btn:hover::before,
.btn:focus::before {
    width: 100%;
    opacity: 1;
}

.btn img {
    height: 20px;
    aspect-ratio: 1/1;
}

.btn-outline-b {
    font-size: 16px;
    height: 44px;
    background-color: #fcf8f84f;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-b::before {
    background-color: #1BA0A6;
}

.btn-outline-b:hover,
.btn-outline-b:focus {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-w {
    border-color: none;
    color: var(--white);
    font-family: "Public sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    background-color: #A61A75;
    padding: 12px 15px 12px 15px;
    height: 40px;
}

.btn-outline-w::before {
    background-color: #f052b96b;
    color: #000000;
}

.btn-outline-w:hover,
.btn-outline-w:focus {
    color: #f0059eaf;
    border-color: #000000;
    color: #000000;
}

.bg-green {
    background-color: var(--color-1);
}

/* Button Two Start */
.button-two {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    border: 2px solid;
    border-color: var(--white);
    width: 50px;
    height: 50px;
    padding: 0 !important;
}

.header-min .button-two {
    border-color: var(--black);
    background: transparent;
}

.button-two svg {
    stroke: var(--white);
}

.header-min .button-two svg {
    stroke: var(--black);
}

.button-two:focus {
    box-shadow: none;
}

.button-two .hamburger {
    transition: transform 1s;
    -o-transition: transform 1s;
    -moz-transition: transform 1s;
    -webkit-transition: transform 1s;
}

.button-two .line {
    transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    stroke-dasharray: 60 31 60 300;
}

.button-two[aria-expanded=true] .hamburger {
    transform: translate(3px, -3px) rotate(0.125turn);
    -o-transform: translate(3px, -3px) rotate(0.125turn);
    -moz-transform: translate(3px, -3px) rotate(0.125turn);
    -webkit-transform: translate(3px, -3px) rotate(0.125turn);
}

.button-two[aria-expanded=true] .line {
    stroke-dasharray: 60 105 60 300;
    stroke-dashoffset: -90;
}

input[type=number].telefono::-webkit-outer-spin-button,
input[type=number].telefono::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number].telefono {
    -moz-appearance: textfield;
}

.btn-primary {
    background-color: var(--color-2);
    color: var(--white);
    border: none;
    transition: background-color .3s;
    -o-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -webkit-transition: background-color .3s;
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: var(--color-2a);
}

.btn-primary:active {
    background-color: var(--color-1) !important;
}

.btn-primary:focus-visible {
    background-color: var(--color-1) !important;
    box-shadow: 0 0 0 4px var(--color-1b) !important;
}

.load-more-button {
    margin: auto;
}

.swal2-confirm {
    background-color: var(--color-2) !important;
}

.swal2-confirm:focus {
    box-shadow: 0 0 0 3px var(--color-2b) !important;
}


/*============ GENERAL END ============*/

/*============ PRELOADER START ============*/
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    z-index: 99999;
    background: var(--white);
    -webkit-transition: background-color 0s ease-in-out !important;
    -moz-transition: background-color 0s ease-in-out !important;
    transition: background-color 0s ease-in-out !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#102a63", endColorstr="#384d7a", GradientType=1);
}

.page-loader .txt {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-loader .txt svg {
    max-width: 400px;
    width: 100%;
}

/* ANIMATION */
.page-loader .txt svg path,
.page-loader .txt svg circle {
    opacity: 0;
}

.page-loader .txt svg path.animacion,
.page-loader .txt svg circle.animacion {
    animation-name: reveal;
    animation-duration: 1s;
    opacity: 1;
}

/*============ PRELOADER END ============*/

/*============ NAVBAR START ============*/
.header .navbar,
.header-min .navbar {
    height: 100%;
}

.header .navbar .navbar-nav,
.header-min .navbar .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;

}

/*============ NAVBAR END ============*/

/*============ HEADER START ============*/


#header-container {
    height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#header-container>.row {
    align-items: center;
    justify-content: center;
}

.brand-img {
    background-color: var(--white);
    padding-left: var(--md);
    padding-bottom: var(--md);
    border-bottom-left-radius: 50px;
    margin-top: -1px;
    padding-top: 1px;
}

.brand-img img {
    display: block;
    margin: 0 auto;
}

.header-title {
    background-color: #1BA0A6;
    color: var(--text-white);
    font-size: var(--heading-2);
    font-family: "Public sans", sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 30px;
    height: 120px;
    padding: 40px;
    margin-bottom: 4rem;

}

.header-title-button {
    background-color: #A61A75;
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.header-title-button:hover {
    background-color: #8F155F;
    transform: scale(1.05);
}

.header-title-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
}

.header-min {
    padding-top: var(--xl);
    background-color: var(--color-2);
}

.header-min .header-min-container {
    display: flex;
    justify-content: center;
    background-color: var(--color-2);
}

.header-min .header-min-container .header-min-column {
    background-color: var(--white);
    width: 100%;
}

.header-min .header-min-container .header-min-column>div {
    height: 100%;
}

.header-min .header-min-container .header-min-column:nth-child(2) {
    border-top-right-radius: 50px;
}

.header-min .header-min-container .header-min-column:nth-child(3) {
    width: auto;
}

.header-min .header-min-container .header-min-column:last-child {
    border-top-left-radius: 50px;
}

.header-min .brand-img {
    background-color: var(--color-2);
    border-bottom-right-radius: 50px;
    padding: 0 var(--md) var(--md) var(--md);
}

.header-min .navbar .navbar-nav {
    gap: 50px;
    margin-right: 50px;
    margin-left: 50px;
}

/*============ HEADER END ============*/

/*============ SECTIONS START ============*/
section {
    padding: 22px 0;
}

section .section-title-wrapper {
    padding-left: 15px;
    margin-bottom: 2rem;
}

section .section-title {
    font-family: "Public sans", sans-serif;
    font-weight: 100;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

section .section-title-1 {
    font-family: "Public sans", sans-serif;
    font-weight: 300;
    font-size: 48px;
    margin-bottom: 20px;

    color: #000000;
}



.new-title-style {
    font-family: "Public sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
    border: 0.5px solid #000000;
    border-radius: 50px;
    padding: 5px 15px 5px 15px;
    width: fit-content;
}

section .section-subtitle {
    font-family: "Public sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 5px 15px;
    border-radius: 100px;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
}

#buscador .container {
    background-color: #1BA0A6;
    padding: 40px;
    border-radius: 30px;
    width: 1014px;

}

#buscador .container>.row>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

#buscador .container>.row>div>div {
    flex-basis: 40%;
}

#buscador .container>.row>div>div:last-child {
    flex-basis: 20%;
}

#buscador .form-control,
#buscador .form-control::placeholder,
#buscador .form-select {
    font-family: var(--font);
    font-size: var(--heading-6);
    font-weight: var(--fw-thin);
    line-height: 1.1;
    letter-spacing: var(--letter-spacing);
}

#buscador .form-control:focus::placeholder {
    opacity: .7;
}

#buscador .form-control,
#buscador .form-select {
    height: 64px;
    width: 394px;
    color: var(--black);
    height: 3rem;

}

#buscador .form-control::placeholder {
    color: var(--gray);
}

.category-carousel-wrapper {
    padding: 2rem;
    padding-bottom: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
    cursor: grab;
}

.category-carousel-wrapper:not(.active) {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}


/*BOTONES NO VISIBLES EN LA ACTUALIZACIÓN */

.category-carousel-prev,
.category-carousel-next {
    border: 0;
    border-radius: 50%;
    padding: 0 5px;
    background-color: var(--color-2);
    color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.category-carousel-prev {
    left: -20px;
}

.category-carousel-next {
    right: -20px;
}

.category-carousel {
    display: flex;
}

.category-carousel .category-card-wrapper {
    scroll-snap-align: start;
}

.category-carousel .category-card-wrapper {
    padding-left: 10px;
    padding-right: 10px;
}

.category-carousel .category-card-wrapper:first-of-type {
    padding-left: 20px;
}

.category-carousel .category-card-wrapper:last-of-type {
    padding-right: 20px;
}

.category-carousel .category-card {
    min-width: 300px;
    max-width: 300px;
    height: 450px;
    padding: var(--sm);
    background-color: transparent;
    border: 2px solid #000000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    position: relative;
}

.category-carousel .category-card::after {
    pointer-events: none;
    border-radius: 15px;
    border: 4px solid #1BA0A6;
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 107%;
    height: 107%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: opacity .5s, width .5s, height .5s;
    -o-transition: opacity .5s, width .5s, height .5s;
    -moz-transition: opacity .5s, width .5s, height .5s;
    -webkit-transition: opacity .5s, width .5s, height .5s;
}

.category-carousel .category-card:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.category-carousel .category-card .category-card-title {
    color: #1BA0A6;
    transition: color .3s;
    -o-transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s;
}

.category-carousel .category-card:hover .category-card-title {
    color: #000000;
}

.category-carousel .category-card .category-card-img {
    margin: var(--xs);
    border-radius: 100%;
    overflow: hidden;
    width: calc(100% - var(--xs) * 2);
    aspect-ratio: 1/1;
}

.category-carousel .category-card .category-card-img img {
    width: 100%;
    transition: transform .3s;
    -o-transition: transform .3s;
    -moz-transition: transform .3s;
    -webkit-transition: transform .3s;
}

.category-carousel .category-card:hover .category-card-img img {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.category-carousel .category-card .category-card-link {
    text-align: end;
}

.category-carousel .category-card .category-card-link img {
    width: 42px;
    transition: transform .3s;
    -o-transition: transform .3s;
    -moz-transition: transform .3s;
    -webkit-transition: transform .3s;
}

.category-carousel .category-card .category-card-link img {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

#negocios-destacados .negocios-destacados-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--lg);
}

#negocios-destacados .negocios-destacados-image {
    border-radius: 30px;
    max-height: 500px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#negocios-destacados .negocios-destacados-desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#negocios-destacados .negocios-destacados-info {
    display: flex;
    gap: 15px;
}

#negocios-destacados .negocios-destacados-info:not(:last-of-type) {
    margin-bottom: 50px;
}

.negocio-card .negocio-card-info span,
#negocios-destacados .negocios-destacados-info span {
    padding: 5px 15px;
    border-radius: 100px;
    border: 1px solid var(--black);
    width: 150px;
    display: flex;
    align-items: center;
    gap: var(--xs);
    font-size: var(--heading-5);
    font-weight: var(--fw-xbolder);
}

#negocios-destacados .negocios-destacados-info .negocios-destacados-info-content h4 {
    margin-bottom: 0;
}

#negocios-destacados .negocios-destacados-link {
    text-align: center;
}

#negocios-destacados .negocios-destacados-link a {
    font-size: 20px;
    background-color: var(--color-1);
    color: var(--color-3);
    padding: 5px 15px;
    border-radius: 100px;
    display: inline-block;
    width: auto;
    transition: opacity .3s;
    -o-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -webkit-transition: opacity .3s;
}

#negocios-destacados .negocios-destacados-link a:hover {
    opacity: .7;
}

#negocios-destacados .negocios-destacados-link a:focus {
    outline: none;
}

.bg-green #negocios-destacados .negocios-destacados-link a {
    background-color: var(--color-2);
    color: var(--white);
}

#negocios-destacados-slider:not(.slick-initialized) {
    /* max-height: 540px; */
    /* overflow: hidden;
} */
}

#negocios-destacados-slider .slick-dots li {
    width: auto;
    height: auto;
}

#negocios-destacados-slider .slick-dots li button {
    width: 40px;
    height: 10px;
    border-radius: 100px;
    background-color: #D9D9D9;
}

#negocios-destacados-slider .slick-dots li.slick-active button {
    background-color: var(--color-2);
}

#negocios-destacados-slider .slick-dots li button::before {
    content: unset;
}

#negocios-destacados-slider .slick-prev:before,
#negocios-destacados-slider .slick-next:before {
    color: var(--color-2);
}

#nuestros-servicios .nuestros-servicios-container {

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1320/572;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 10px;
}

#nuestros-servicios .nuestros-servicios-container>div {
    display: flex;
    gap: var(--xl);
    align-items: center;
}

#nuestros-servicios .nuestros-servicios-container>div h3 {
    font-family: "Public sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    background: rgba(252, 248, 248, 0.3);
    /* Tu fondo original */
    border-radius: 50px;
    padding: 12px 27px;
    color: #FCF8F8;
    /* Tu texto original */
    border: 0.5px solid var(--white);

    /* TRUCO PARA LIGHTHOUSE: Sombra sutil que crea contraste en el texto */
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.7);
}

#nuestros-servicios .nuestros-servicios-container>div h4 {
    font-family: "Public Sans", sans-serif;
    font-weight: light;
    font-size: 32px;
    color: var(--white);
    /* La sombra sutil garantiza contraste sobre cualquier fondo de cabecera */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}

#nuestros-servicios .nuestros-servicios-container .nuestros-servicios-destacar {
    background-color: #1BA0A6;
    padding: 35px;
    width: 100%;
    border-radius: 30px;

}

#nuestros-servicios .nuestros-servicios-container .nuestros-servicios-convertir {
    text-align: right;
    width: 100%;
    background-color: #A61A75;
    padding: 35px;
    border-radius: 30px;
    text-align: start;

}

#nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar {
    width: 100%;
    padding: 35px;
    background-color: #A6921B;
    align-items: flex-start;
    gap: var(--md);
    border-radius: 30px;

}

#nuestras-tarifas .directorio-banner-container {
    border-radius: 30px;
    background-color: var(--color-1);
    padding: var(--md);
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--md);

}

#nuestras-tarifas .directorio-banner-container h2 {
    color: var(--white);
}

#nuestras-tarifas .directorio-banner-price>* {
    display: inline;
}

#nuestras-tarifas .directorio-banner-caracteristicas>div {
    display: flex;
    gap: var(--xs);
    align-items: center;
}

.card img {
    max-height: 243px;
    object-fit: cover;
    border-radius: inherit;
}

#nuestras-tarifas .card-service {

    padding: 0;
    border-radius: 30px;
    border: 1px solid var(--black);
    background: #FCF8F8b3;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: initial;
}

#nuestras-tarifas .card-service .card-body {

    padding: var(--md);

}

#nuestras-tarifas .card-service .card-title {
    margin-bottom: var(--md);
    color: #1BA0A6;
    line-height: 1.1;
}

#nuestras-tarifas .card-service .card-service-price {
    margin-bottom: var(--md);

}

#nuestras-tarifas .card-service .card-service-price>* {
    display: inline;
}

#nuestras-tarifas .card-service .card-service-price h5 {
    font-weight: var(--fw-xbolder);
    font-size: var(--heading-6);
    margin-left: var(--xs);
}

#nuestras-tarifas .card-service .card-service-price h3 {
    font-size: 42px;
}

#nuestras-tarifas .card-service .card-service-price h4 {
    font-size: 42px;
    font-weight: 300;
}

#nuestras-tarifas .card-service .card-service-price h5 {
    font-size: 26px;
    font-weight: 500;
}



#nuestras-tarifas .card-service .card-body p {
    margin-bottom: 0;
    font-size: 18px;
}

#nuestras-tarifas .card-service .card-body p:not(:last-of-type) {
    margin-bottom: 5px;
}

#contactanos .contact-form-container {
    background-color: none;
    padding: var(--lg);
    border: 2px solid #000000;
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    max-height: 517px;
    margin-top: 2rem;

}

#contactanos .contact-form-container h3,
#contactanos .contact-form-container h4,
#contactanos .contact-form-container h5 {
    color: #000000;
    margin: 0;
}

#contactanos .contact-form-container a {
    font-size: var(--heading-4);
    color: var(--color-1) !important;
    white-space: nowrap;
    position: relative;

}

#contactanos .contact-form-container a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 0%;
    height: 2px;
    transition: width .5s;
    -o-transition: width .5s;
    -moz-transition: width .5s;
    -webkit-transition: width .5s;
    background-color: var(--color-1);
}

#contactanos .contact-form-container a:hover::after {
    width: 100%;
}

#contactanos .contact-form-wrapper {
    position: relative;
}

#contactanos .contact-form-wrapper .spinner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
    display: none;
}

#contactanos .contact-form-wrapper .spinner>div {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: var(--xs);
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}

#contactanos .contact-form-wrapper .spinner i {
    font-size: 40px;
    color: var(--color-1);
}

#contactanos .contact-form-wrapper .spinner h6 {
    text-align: center;
    margin-top: var(--sm);
    color: var(--color-1);
}

#contact-form.loading {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

#contact-form.loading+.spinner {
    display: block;
}

#contact-form .form-input {
    margin-bottom: var(--sm);


}

#contact-form .form-check {
    margin-top: var(--lg);
    padding-left: 2em;
}

#contact-form .form-check .form-check-input {
    border: 1px solid #000000;
    background-color: var(--white);
    height: 20px;
    width: 20px;
    border-radius: 5px;
    margin-left: -2em;
    transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}

#contact-form .form-check .form-check-input:focus {
    box-shadow: 0 0 0 3px #1BA0A6;
}

#contact-form .form-check .form-check-input:checked {
    background-color: #1BA0A6;
}

#contact-form .form-check .form-check-label,
#contact-form .form-check .form-check-label h5 {
    margin-bottom: 0;
    font-size: 16px;
}

/* #contact-form button[type="submit"] {
    margin-top: var(--lg);
} */

#contactanos .contact-green-bg {
    background-color: var(--color-1);
    border-radius: 30px;
    height: 100px;
    margin-bottom: var(--md);
}

#contactanos .contact-info {
    background-color: none;
    border-radius: 30px;
    padding: var(--lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--lg);
}

#contactanos .contact-info h3,
#contactanos .contact-info h4,
#contactanos .contact-info h5 {
    color: #000000;
}

#contactanos .contact-info .contact-horario h4 {
    margin-bottom: 0;
    line-height: 1.1;
}

#contactanos .contact-info .contact-horario h4:not(:last-of-type) {
    margin-bottom: 5px;
}

#contactanos .contact-info .contact-content a h5 {
    line-height: 1.1;
    margin-bottom: 0;
    transition: color .3s;
    -o-transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s;
}

#contactanos .contact-info .contact-content a:not(:last-of-type) h5 {
    margin-bottom: var(--xs);
}

#contactanos .contact-info .contact-content a:hover h5 {
    color: #1BA0A6;
}

#contactanos .contact-info .contact-icons {
    display: flex;
    justify-content: start;
    align-items: center;
}

#contactanos .contact-info .contact-icons .contact-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

#contactanos .contact-info .contact-icons .contact-social a {
    color: #000000;
    font-size: 48px;
}

.facebook,
.instagram,
.whatsapp,
.twitter,
.website {
    transition: color .3s, transform .3s;
    -o-transition: color .3s, transform .3s;
    -moz-transition: color .3s, transform .3s;
    -webkit-transition: color .3s, transform .3s;
}

.facebook:hover,
.instagram:hover,
.whatsapp:hover,
.twitter:hover,
.website:hover {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.facebook:hover {
    color: #3b5998 !important;
}

.instagram:hover {
    color: #d62a76 !important;
}

.whatsapp:hover {
    color: #25d366 !important;
}

.twitter:hover {
    color: #00acee !important;
}

.website:hover {
    color: var(--color-2) !important;
}

#negocios .negocios-resultado-subtitle b,
#negocios .negocios-resultado-subtitle b span {
    color: var(--color-2);
    font-weight: var(--fw-xbolder);
}

#negocios .negocios-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm);
}

#negocios .negocios-container .card.negocio-card {
    flex-basis: calc(33% - var(--xs));
    padding: 15px;
    border: none;
    border-radius: 0;
    position: relative;
    display: block;
    border: 2px solid var(--black);
    background-color: #FCF8F8;
    max-height: 520px;
    border-radius: 30px;
}

#negocios .negocios-container .card.negocio-card::after {
    pointer-events: none;
    border-radius: 30px;
    border: 4px solid #1BA0A6;
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 107%;
    height: 107%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: opacity .3s, width .3s, height .3s;
    -o-transition: opacity .3s, width .3s, height .3s;
    -moz-transition: opacity .3s, width .3s, height .3s;
    -webkit-transition: opacity .3s, width .3s, height .3s;
}

#negocios .negocios-container .card.negocio-card:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

#negocios .negocios-container .card.negocio-card .card-body {
    padding: 0;
}

#negocios .negocio-card .negocio-card-image,
#negocios .negocio-card .negocio-card-title,
#negocios .negocio-card .negocio-card-desc,
#negocios .negocio-card .negocio-card-info:not(:last-of-type) {
    margin-bottom: var(--sm);
}

#negocios .negocio-card .negocio-card-image {
    max-height: 245px;
    overflow: hidden;
    border-radius: 30px;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
}

#negocios .negocio-card .negocio-card-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: transform .5s;
    -o-transition: transform .5s;
    -moz-transition: transform .5s;
    -webkit-transition: transform .5s;
}

#negocios .negocio-card:hover .negocio-card-image img {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

#negocios .negocio-card .negocio-card-title {
    font-weight: var(--fw-xbolder);
}

#negocios .negocio-card .negocio-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#negocios .negocio-card .negocio-card-info .negocio-card-info-icon {
    margin-bottom: var(--xs);
}

#negocios .load-more-button-row {
    margin-top: var(--md);
}

#negocio {
    padding-top: var(--xxl);
}

#negocio .negocio-ficha-img {
    height: 670px;
    background-color: var(--gray);
    margin-bottom: 50px;
    text-align: center;
}

#negocio .negocio-ficha-img img {
    object-fit: contain;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
}

#negocio .negocio-ficha-content {
    padding: var(--xs) 0 var(--xl);
}

#negocio .negocio-ficha-content .negocio-ficha-categoria {
    margin-bottom: var(--sm);
}

#negocio .negocio-ficha-content .negocio-ficha-categoria span {
    background-color: var(--color-3);
    color: var(--white);
    padding: 5px var(--sm);
    border-radius: 100px;
}

.categorias {
    padding-top: 70px;
}

#negocio .negocio-ficha-content .negocio-ficha-title {
    margin-bottom: var(--md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#negocio .negocio-ficha-contacto,
#negocio .negocio-ficha-horario,
#negocio .negocio-ficha-redes {
    border-radius: 30px;
    padding: var(--md);
    margin-bottom: var(--md);
    border: 2px solid;
}

#negocio .negocio-ficha-contacto h4,
#negocio .negocio-ficha-horario h4,
#negocio .negocio-ficha-redes h4 {
    padding: 5px 0;
    background-color: var(--color-2);
    color: var(--white);
    margin-bottom: var(--md);
    text-align: center;
}

#negocio .negocio-ficha-contacto p,
#negocio .negocio-ficha-horario p,
#negocio .negocio-ficha-redes p,
#negocio .negocio-ficha-contacto a,
#negocio .negocio-ficha-horario a,
#negocio .negocio-ficha-redes a,
#negocio .negocio-ficha-contacto th,
#negocio .negocio-ficha-horario th,
#negocio .negocio-ficha-redes th,
#negocio .negocio-ficha-contacto td,
#negocio .negocio-ficha-horario td,
#negocio .negocio-ficha-redes td {
    color: #1BA0A6;
}

#negocio .negocio-ficha-contacto p {
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#negocio .negocio-ficha-contacto p a i {
    margin-right: 8px;
}

#negocio .negocio-ficha-contacto p a {
    transition: color .3s;
    -o-transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s;
}

#negocio .negocio-ficha-contacto p a:hover {
    color: var(--white);
}

#negocio table {
    width: 100%;
}

#negocio table th,
#negocio table td {
    font-size: 24px;
}

#negocio table thead tr,
#negocio table tbody tr:not(:last-child) {
    border-bottom: 1px solid #1BA0A6;
}

#negocio table thead tr th:not(:first-child) {
    text-align: center;
}

#negocio table tbody tr td {
    text-align: center;
}

#negocio .negocio-ficha-location {
    padding: 0 var(--sm);
    margin-bottom: var(--sm);
}

#negocio .negocio-ficha-map {
    border-radius: 30px;
    overflow: hidden;
}

#negocio .negocio-ficha-redes .negocio-ficha-links {
    display: flex;
    justify-content: space-evenly;
    gap: var(--sm);
}

#negocio .negocio-ficha-redes .negocio-ficha-links a {
    font-size: 40px;
}

#imagenes-carousel,
#imagenes-carousel .slick-list,
#imagenes-carousel .slick-track {
    height: 100%;
}

#imagenes-carousel .slick-prev,
#imagenes-carousel .slick-next {
    z-index: 2;
    opacity: .5;
    transition: opacity .3s;
    -o-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -webkit-transition: opacity .3s;
}

#imagenes-carousel:hover .slick-prev,
#imagenes-carousel:hover .slick-next {
    opacity: 1;
}

#imagenes-carousel .slick-prev {
    left: 10px;
}

#imagenes-carousel .slick-next {
    right: 10px;
}

#imagenes-carousel .slick-prev:before,
#imagenes-carousel .slick-next:before {
    color: var(--white);
    font-size: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-color: var(--color-3);
    padding: 14px 6px;
}

#imagenes-carousel .slick-prev:before {
    content: "\f104";
}

#imagenes-carousel .slick-next:before {
    content: "\f105";
}

#imagenes-carousel img {
    cursor: grab;
}

/*============ SECTIONS END ============*/

/*============ FOOTER START ============*/
footer p,
footer span,
footer a {
    font-size: var(--heading-6);
}

footer a {
    cursor: pointer;
    position: relative;
}

footer a:hover {
    color: var(--white) !important;
}

footer a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 0%;
    height: 2px;
    transition: width .5s;
    -o-transition: width .5s;
    -moz-transition: width .5s;
    -webkit-transition: width .5s;
}

footer a:hover::after {
    width: 100%;
}

footer .footer-top,
footer .footer-bottom {
    padding: var(--md) 0;
}

footer .footer-top {
    background-color: var(--text-white);
}

footer .footer-top .footer-links span,
footer .footer-top .footer-links a {
    color: rgba(67, 58, 63, 0.72);
}

footer .footer-top .footer-links a::after {
    background-color: var(--white);
}

footer .footer-bottom {}

footer .footer-bottom p {}

footer .footer-bottom p span,
footer .footer-bottom p a {
    font-weight: var(--fw-xbolder);
    color: #1BA0A6 !important;
}

footer .footer-bottom p a::after {
    background-color: var(--color-1);
}

/*============ FOOTER END ============*/

/*============ MODALS START ============*/
.modal-header {
    box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.2);
}

.modal-title {
    margin: 0;
}

.modal-footer {
    box-shadow: 0 -1px 10px 0px rgba(0, 0, 0, 0.2);
}

.modal-footer button {
    height: auto;
    padding: 5px 15px;
    font-size: var(--heading-6);
}

.texto-legal-body {
    padding: var(--lg) var(--md);
}

.texto-legal-body h4 {
    margin-bottom: var(--md);
}

.texto-legal-body h5,
.texto-legal-body h6 {
    margin-top: var(--md);
    margin-bottom: var(--sm);
}

.texto-legal-body h5 {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: var(--md);
}

/*============ MODALS END ============*/


.card-title-tarjeta {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-max-lines: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}

.category-card-img img {
    pointer-events: none;
}


/* NUEVOS ESTILOS PARA CARD-SERVICE */

.parent {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
    padding-bottom: 4rem;

}


/* Posiciones en grid basadas en el orden */
.parent> :nth-child(1) {
    grid-column: 1 / span 12;
    grid-row: 1 / span 2;
}

.parent> :nth-child(2) {
    grid-column: 1 / span 4;
    grid-row: 3 / span 5;
}

.parent> :nth-child(3) {
    grid-column: 5 / span 4;
    grid-row: 3 / span 5;
}

.parent> :nth-child(4) {
    grid-column: 9 / span 4;
    grid-row: 3 / span 5;
}

.parent> :nth-child(5) {
    grid-column: 1 / span 4;
    grid-row: 7 / span 4;
}

.parent> :nth-child(6) {
    grid-column: 5 / span 8;
    grid-row: 8 / span 3;
}

/*============ CATEGORY GRID START ============*/

/* Contenedor principal sin scroll ni cursores de arrastre */
.category-grid-wrapper {
    padding: 2rem 0 1rem 0;
}

/* Alineación centrada y flexible para las 3 tarjetas */
.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.category-grid .category-card-wrapper {
    padding: 0;
}

/* Tarjeta: mismas dimensiones y estructura original */
.category-grid .category-card {
    min-width: 300px;
    max-width: 400px;
    height: 100%;
    padding: var(--sm);
    background-color: transparent;
    border: 2px solid #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    position: relative;
}

/* Animación de borde cian al hacer hover (Exactamente igual) */
.category-grid .category-card::after {
    pointer-events: none;
    border-radius: 15px;
    border: 4px solid #1BA0A6;
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 107%;
    height: 107%;
    transform: translate(-50%, -50%);
    transition: opacity .5s, width .5s, height .5s;
}

.category-grid .category-card:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

/* Título y sus transiciones de color */
.category-grid .category-card .category-card-title {
    color: #1BA0A6;
    transition: color .3s;
}

.category-grid .category-card:hover .category-card-title {
    color: #000000;
}

/* Imagen circular con zoom en hover */
.category-grid .category-card .category-card-img {
    margin: var(--xs);
    border-radius: 100%;
    overflow: hidden;
    width: calc(100% - var(--xs) * 2);
    aspect-ratio: 1/1;
    padding: 50px;
}

.category-grid .category-card .category-card-img img {
    width: 100%;
    transition: transform .3s;
}

.category-grid .category-card:hover .category-card-img img {
    transform: scale(1.1);
}

/* Nueva sección de descripción en lugar de botón */
.category-grid .category-card .category-card-desc {
    text-align: center;
    font-size: 1rem;
    color: #333333;
    line-height: 1.4;
}

.category-grid .category-card .category-card-desc p {
    margin: 0;
}

/*============ CATEGORY GRID END ============*/
/* 
.parent> :nth-child(1) {
    grid-area: 1 / 1 / 2 / 4;
    

}

.parent> :nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
    
}

.parent> :nth-child(3) {
    grid-area: 2 / 2 / 6 / 3;
    
}

.parent> :nth-child(4) {
    grid-area: 2 / 3 / 6 / 4;
    
}

.parent> :nth-child(5) {
    grid-area: 3 / 1 / 6 / 2;
    
}

.parent> :nth-child(6) {
    grid-area: 3 / 2 / 4 / 4;
    
} */

.parent> :nth-child(1) .card-body,
.parent> :nth-child(6) .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.parent> :nth-child(1) .card-body h3 {
    font-size: var(--heading-1);
}

.parent> :nth-child(4) .card-body h3 {
    font-size: var(--heading-2);
}


.parent> :nth-child(1) .card-body .card-title,
.parent> :nth-child(6) .card-body .card-title {
    width: 30%;
}

.parent> :nth-child(1) .card-body .card-service-price,
.parent> :nth-child(6) .card-body .card-service-price {
    width: 20%;
}

.parent> :nth-child(1) .card-body .parrafos,
.parent> :nth-child(6) .card-body .parrafos {
    width: 30%;
}

.parent> :nth-child(1) .card-body .parrafos p {
    font-size: 32px !important;
}

.parent> :nth-child(6) .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carta {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 0;
}

.card-body-tarjeta {

    width: 100%;
    padding: 1rem 2rem 1rem 2rem;
    background-color: #FCF8F8;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;

}

.tarjeta {
    aspect-ratio: 4 / 3;

}

.fondo-negocios {
    background-color: #1b9fa64f;

}



/*============ BREACKPOINTS START ============*/
@media (max-width: 1399px) {
    #nuestros-servicios .nuestros-servicios-container {
        padding: 80px;
        aspect-ratio: 1320/930;
    }
}

@media (max-width: 1199px) {
    :root {
        --heading-1: 48px;
        --heading-2: 32px;
        --heading-3: 24px;
        --heading-4: 20px;
        --heading-5: 18px;
        --heading-6: 16px;
    }

    #buscador .container {
        padding: var(--md) var(--lg);
    }


    .category-carousel .category-card {
        min-width: 220px;
        max-width: 220px;
        height: 300px;
        padding: 15px;
    }

    .category-carousel .category-card .category-card-link a img {
        height: 40px;
    }

    #nuestros-servicios .nuestros-servicios-container {
        padding: 50px;
        gap: var(--md);
        aspect-ratio: unset;
        background-color: transparent;
        border-radius: 30px;
        transition: unset;
    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-destacar,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-convertir,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar {
        width: 100%;
        gap: 50px;
        flex-direction: column;
    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar {
        flex-direction: row;
        align-items: center;
    }

    #negocio .negocio-ficha-img {
        height: 600px;
    }

    #negocio .negocio-ficha-contacto p,
    #negocio table th,
    #negocio table td {
        font-size: 18px;
    }

    #negocios .negocios-container .card.negocio-card {
        flex-basis: calc(50% - var(--xs));
    }
}

@media (max-width: 991px) {
    :root {
        --xxs: 5px;
        --xs: 8px;
        --sm: 18px;
        --md: 25px;
        --lg: 26px;
        --xl: 40px;
        --xxl: 80px;
        --xxxl: 160px;
    }

    #header-container>.row:first-of-type {
        align-items: flex-start;
        justify-content: center;
    }

    #buscador .form-control,
    #buscador .form-select {
        height: 64px;
        width: 250px;
        color: var(--black);
        height: 3rem;

    }

    .header-min .navbar {
        height: auto;
    }

    .header-min .navbar .navbar-nav {
        gap: var(--xs);
        margin: 0;
    }

    .header-min .header-min-container .header-min-column:first-child,
    .header-min .header-min-container .header-min-column:last-child {
        display: none;
    }

    .header-title {
        padding-left: 1rem;
        border-top-left-radius: 30px;
        height: fit-content;
        font-size: 22px;
        margin-right: 10px;
        margin-left: 10px;
        width: fit-content;
        padding: 2rem;
    }

    .navbar>.container {
        justify-content: center !important;
        gap: var(--xs);
    }

    #buscador .container>.row>div {

        gap: var(--md);
        justify-content: center;
    }

    #buscador .container>.row>div>div {
        flex-basis: calc(50% - var(--sm));
    }


    .navbar-nav {
        gap: var(--xs);
    }

    .navbar-nav .nav-item .btn {
        justify-content: center;
    }

    #negocios-destacados .negocios-destacados-image {
        margin-bottom: var(--lg);
    }

    #negocios-destacados .negocios-destacados-content {
        gap: var(--md);
    }

    #negocios-destacados .negocios-destacados-info:not(:last-of-type) {
        margin-bottom: var(--sm);
        display: block;
    }

    #negocios-destacados .negocios-destacados-info:not(:last-of-type) .negocios-destacados-info-icon {
        margin-bottom: var(--xs);
    }

    #contactanos>.container>.row>div:first-of-type {
        margin-bottom: var(--sm);
    }

    #contactanos .contact-green-bg {
        display: none;
    }

    #negocios .negocios-container .card.negocio-card {
        flex-basis: 100%;
    }

    #negocio .negocio-ficha-map {
        margin-bottom: var(--md);
    }

    section {
        padding: 10 px;
    }

    #nuestros-servicios .nuestros-servicios-container {
        padding: 0;
        gap: var(--md);
        aspect-ratio: unset;
        background-color: transparent;
        border-radius: 30px;
        transition: unset;
    }

    #nuestras-tarifas .card-service .card-service-price h3 {
        font-size: 36px;
    }

    #nuestras-tarifas .card-service .card-service-price h4 {
        font-size: 36px;
    }

    #nuestras-tarifas .card-service .card-service-price h5 {
        font-size: 26px;
    }

    #nuestras-tarifas .card-service .card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;

    }


    #nuestras-tarifas .card-service .card-body p {
        margin-bottom: 0;
        font-size: 22px;

    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar {
        flex-direction: column;
    }

    .parent {
        display: flex;
        flex-direction: column;
    }

    .parent> :nth-child(1) .card-body .card-title,
    .parent> :nth-child(6) .card-body .card-title {
        width: 100%;
    }

    .parrafos p {
        width: 20rem;
    }

    section .section-title-1 {
        margin-top: 0;
    }

    .contact-form-container {
        margin-bottom: 8rem;
    }

    .negocio-ficha-title {
        font-size: 32px;
    }

}

@media (max-width: 767px) {
    :root {
        --xxs: 5px;
        --xs: 8px;
        --sm: 12px;
        --md: 16px;
        --lg: 20px;
        --xl: 26px;
        --xxl: 40px;
        --xxxl: 80px;
    }

    section {
        padding: 12px 0;
    }


    #buscador .container {
        background-color: initial;
    }

    #buscador .container>.row>div {
        justify-content: center;
        flex-direction: column;
    }

    #buscador .container>.row>div>div {
        flex-basis: 100%;
    }

    #buscador .container {
        width: auto;

    }

    footer .footer-bottom>.container>.row>div:first-of-type {
        margin-bottom: 15px;
    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-destacar,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-convertir,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar {
        flex-direction: column;
        gap: 20px;


    }

    .card-service-price {
        width: auto;
    }

    #nuestras-tarifas .card-service .card-service-price {
        width: auto;
    }

    #buscador .form-control,
    #buscador .form-select {
        height: 64px;
        color: var(--black);
        width: 230px;

    }

    .header-title {

        font-size: 18px;
        color: #FFFFFF;
        /* La sombra sutil garantiza contraste sobre cualquier fondo de cabecera */
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);

    }



}

@media (max-width: 575px) {

    .card-title-tarjeta {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-max-lines: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 36px;
    }

    .card-text-tarjeta {
        min-height: 36px;
    }

    .brand-img {
        padding-right: 1rem;
    }

    .brand-img img {
        width: 100%;
    }


    #buscador .container {
        border-radius: 0;
    }

    #buscador .container {
        width: auto;

    }

    #negocios-destacados-slider {
        padding: 1rem;
        margin-bottom: 0;
    }

    #negocios-destacados-slider .slick-prev {
        left: -10px;
    }

    #negocios-destacados-slider .slick-next {
        right: -10px;
    }

    #negocios-destacados-slider .slick-dots {
        position: static;
        width: 100%;
        margin-top: 0rem;
    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-destacar,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-convertir,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar {
        flex-wrap: wrap;
        gap: var(--sm);

    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-destacar h3,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-convertir h3,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar h3 {
        order: 1;
        font-size: 26px;
    }

    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-destacar h4,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-convertir h4,
    #nuestros-servicios .nuestros-servicios-container .nuestros-servicios-interactuar h4 {
        order: 2;
        text-align: start;
        font-size: 22px;
    }

    #contactanos .contact-info .contact-icons {
        display: block;
    }

    #contactanos .contact-info .contact-icons .contact-brand {
        margin-bottom: var(--md);
    }

    #contactanos .contact-info .contact-icons .contact-brand img {
        display: block;
        margin: 0 auto;
    }

    #contactanos .contact-info .contact-icons .contact-social {
        justify-content: center;
    }

    section .section-title {
        font-size: 38px;
    }

    section .section-subtitle {
        font-size: 18px;
    }

    section .section-title-1 {
        font-size: 36px;
    }

    .new-title-style {
        font-size: 16px;
        padding: 15px;
    }

    .card-body {
        flex-direction: column;
        gap: 20px !important;
    }

    h3 {
        font-size: 28px;

    }

    h4 {
        font-size: 24px;
    }

    .parent {
        display: flex;
        flex-direction: column;
    }
}