@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Titulo';
    src: url(../fuentes/Titulo/WorkSans-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Parrafo';
    src: url(../fuentes/Parrafo/BarlowSemiCondensed-Regular.ttf) format('truetype');
}

:root {

    /*################ TIPOGRAFIA DE TEXTO ################*/
    /*################ TIPOGRAFIA DE TEXTO ################*/
    --title-font: "Poetsen One", sans-serif;
    --normal-font: "Roboto", sans-serif;

    /* Título principal */
    --fs-h1: clamp(1.375rem, 1.6vw + 1rem, 3.75rem);
    /* Subtítulo */
    --fs-h2: clamp(1.25rem, 1.5vw + 0.75rem, 3rem);
    /* Título menor */
    --fs-h3: clamp(1.125rem, 1.4vw + 0.5rem, 2.25rem);
    /* Encabezado pequeño */
    --fs-h4: clamp(1rem, 1.2vw + 0.25rem, 1.75rem);
    /* Texto normal */
    --fs-body: clamp(0.95rem, 1vw + 0.5rem, 1.5rem);
    /* Texto pequeño */
    --fs-small: clamp(0.875rem, 0.8vw + 0.25rem, 1.2rem);
    /* Texto muy pequeño */
    --fs-xs: clamp(0.75rem, 0.6vw + 0.2rem, 1rem);

    /*################ NEGRILLA AL TEXTO ################*/
    /*################ NEGRILLA AL TEXTO ################*/
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    /*################## MARGENES ##################*/
    /*################## MARGENES ##################*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*################## z-index ##################*/
    /*################## z-index ##################*/
    --toolkid: 100;
    --index-1: 10;
    --index-2: 30;
    --index-3: 60;
    --index-4: 90;

    /*################ COLORES ################*/
    /*################ COLORES ################*/
    /*######## Color Fondo Principal ########*/
    /*######## Color Fondo Principal ########*/
    --body-color: #ebeff1;
    /*######## Color NavBar ########*/
    /*######## Color NavBar ########*/
    --navbar-color: #405069;
    /*######## Colores Texto ########*/
    /*######## Colores Texto ########*/
    --color-one: #2c2c2c;
    --color-two: #ffffff;
    --color-tree: #89b0d9;
    /*######## Color Botones Consultar Y Ver Mas ########*/
    /*######## Color Botones Consultar Y Ver Mas ########*/
    --btn-tabs: #ff7750;
    --btn-consultar: #009100;
}

/*########################## PÁGINA PRINCIPAL ##########################*/
/*########################## PÁGINA PRINCIPAL ##########################*/
/*########################## PÁGINA PRINCIPAL ##########################*/
/*########################## PÁGINA PRINCIPAL ##########################*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    font-family: var(--normal-font);
    background: var(--body-color);
    overflow-x: hidden;
}

.animate-item {
    opacity: 0;
    visibility: hidden;
}

.animate-item.is-animated {
    opacity: 1;
    visibility: visible;
}


/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
/*###################### SECCION DEL NAVBAR ######################*/
.header {
    width: 100%;
    background: var(--navbar-color);
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1800px;
}

/*############# Estilos De Los LINKS #############*/
/*############# Estilos De Los LINKS #############*/
a {
    text-decoration: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.ZasWeb-logo img {
    width: 140px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
}


/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
/*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
.datos-business {
    height: max-content;
    position: relative;
    margin-bottom: -0.3rem;
}

.datos-business .portada-business {
    width: 100%;
}

/*######## LOGO DE LA EMPRESA ########*/
.datos-business .logo-nombre-business {
    display: flex;
    max-width: 660px;
    position: absolute;
    right: 32.6%;
    bottom: -142px;
    transform: translate(50%, 50%);
    padding: 1rem 3rem;
    border-radius: 20px;
    background-color: var(--navbar-color);
    /* box-shadow: 0px 5px 15px #72a7ce; */
    box-shadow: 0px 5px 15px rgba(114, 167, 206, 0.8);
}

.logo-nombre-business .home-logo {
    width: 100%;
}

/*###################### ESTILOS SLOGAN EMPRESA ######################*/
/*###################### ESTILOS SLOGAN EMPRESA ######################*/
/*###################### ESTILOS SLOGAN EMPRESA ######################*/
/*###################### ESTILOS SLOGAN EMPRESA ######################*/
/*###################### ESTILOS SLOGAN EMPRESA ######################*/
/*###################### ESTILOS SLOGAN EMPRESA ######################*/
.section-slogan-business {
    background-color: var(--color-one);
    width: 100%;
    padding: 220px 0px 80px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-business {
    width: 34%;
    text-align: center;
}

.detail-business p {
    font-size: var(--fs-body);
    color: var(--color-two);
    text-align: center;
    font-family: 'Parrafo';
}


/*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
/*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
/*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
/*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
/*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
/*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
.section-character-business {
    margin: 0 1rem;
    padding: 4rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-character-business {
    font-size: var(--fs-h2);
    font-family: 'Titulo';
    color: var(--navbar-color);
}

.detail-character-business {
    width: 60%;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 200px;
    list-style-type: none;
}

.card-business {
    width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-bottom: 8px;
    border-bottom: solid 5px rgba(137, 176, 217, 0.4);
}

.card-business img {
    width: 100px;
}

.card-business p {
    font-family: 'Parrafo';
    font-size: var(--fs-h4);
    color: var(--color-one);
}




/*###################### ESTILOS PREGUNTA CLIENTE ######################*/
/*###################### ESTILOS PREGUNTA CLIENTE ######################*/
/*###################### ESTILOS PREGUNTA CLIENTE ######################*/
/*###################### ESTILOS PREGUNTA CLIENTE ######################*/
/*###################### ESTILOS PREGUNTA CLIENTE ######################*/
/*###################### ESTILOS PREGUNTA CLIENTE ######################*/
.section-ask-client {
    background-color: var(--color-one);
    margin: 0 0rem;
    padding: 1rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.section-ask-client .title-ask-client {
    font-size: var(--fs-h2);
    font-family: 'Titulo';
    margin-bottom: var(--mb-4);
    color: var(--color-tree);
}

.section-ask-client .description-ask-client {
    width: 60%;
    text-align: center;
    font-size: var(--fs-body);
    margin-bottom: var(--mb-5);
    color: var(--body-color);
    font-family: 'Parrafo';
}

/*###################### ESTILOS NUESTROS SERVICIOS ######################*/
/*###################### ESTILOS NUESTROS SERVICIOS ######################*/
/*###################### ESTILOS NUESTROS SERVICIOS ######################*/
/*###################### ESTILOS NUESTROS SERVICIOS ######################*/
/*###################### ESTILOS NUESTROS SERVICIOS ######################*/
/*###################### ESTILOS NUESTROS SERVICIOS ######################*/
.section-nuestro-serv {
    margin: 0 1rem;
    padding: 4rem 0rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Estilo del tooltip */
.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    /* Fondo oscuro para mayor contraste */
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    /* Aumento del tamaño del texto para mayor legibilidad */
    font-family: 'Arial', sans-serif;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    /* Sombra para un toque profesional */
    text-align: center;
    max-width: 200px;
    /* Aseguramos que no se salga de la pantalla */
    visibility: hidden;
    /* Inicialmente oculto */
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Animación suave */
    z-index: 1000;
}

/* Flecha del tooltip */
.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

/*########## Estilo Del Nav De Botones ##########*/
.tabs {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.tab-list {
    display: flex;
}

.tab-button {
    background: none;
    width: 20%;
    padding: 25px 20px 25px 15px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-radius 0.2s ease;
    border-radius: 20px 20px 0px 0px;
    font-size: var(--fs-body);
    font-family: 'Parrafo';
}

/* Animación de pulsación */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Estilo para los botones desactivados */
.tab-button:not(.activo) {
    animation: pulse 1.5s ease-in-out infinite;
}

.tab-button.activo {
    border-radius: 20px 20px 0px 0px;
    font-weight: bold;
    background-color: var(--btn-tabs);
    color: #ffffff;
    font-family: 'Parrafo';
}

/*############ Evita que aparezca el borde al hacer clic ############*/
.tab-list button:focus {
    outline: none;
}

/*############ ESTILO DE LAS FOTOGRAFIAS ############*/
.galeria-fotografica {
    background-color: #ffffff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0px 20px 20px 20px;
    width: 100%;
    margin: auto;
    padding: 26px 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galeria-fotografica figure {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    display: inline-block;
}

.galeria-fotografica .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: SclAnimation 0.3s ease-in-out forwards;
    cursor: pointer;
}

/*####### Animacion De Las Imagenes #######*/
@keyframes SclAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

/*########### Fondo oscuro Lightbox #######*/
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*###### Imagen dentro del Lightbox ######*/
.lightbox-content {
    max-width: 90%;
    max-height: 94vh;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/*###### Ajuste específico para imágenes horizontales ######*/
.lightbox.horizontal img {
    max-height: 94vh;
    max-width: 90%;
}

/*### Botón de cerrar ###*/
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/*######## Bloquear el desplazamiento ########*/
.no-scroll {
    overflow: hidden;
}


/*###################### ESTILOS DE NUESTROS PLANES ######################*/
/*###################### ESTILOS DE NUESTROS PLANES ######################*/
/*###################### ESTILOS DE NUESTROS PLANES ######################*/
/*###################### ESTILOS DE NUESTROS PLANES ######################*/
/*###################### ESTILOS DE NUESTROS PLANES ######################*/
/*###################### ESTILOS DE NUESTROS PLANES ######################*/
.section-nuestros-planes {
    margin: 0 1rem;
    padding: 1rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.section-nuestros-planes .title-nuestros-planes {
    text-align: center;
    font-size: var(--fs-h1);
    position: relative;
    font-family: 'Titulo';
    color: var(--navbar-color);
}

.section-nuestros-planes .title-nuestros-planes-hr {
    border: none;
    width: 420px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.44);
    margin-bottom: var(--mb-5);
}

/*################ ESTILOS DE LOS CARDS PLANES ###############*/
/*################ ESTILOS DE LOS CARDS PLANES ###############*/
.section-nuestros-planes .detalle-planes {
    width: 100%;
    display: flex;
    align-items: center;
    font-family: 'Parrafo';
}

.detalle-planes ul {
    display: grid;
    grid-template-columns: 0.25rem 1fr;
    grid-auto-columns: max-content;
    column-gap: 2rem;
    list-style: none;
    width: min(80rem, 90%);
    margin-inline: auto;
}

.detalle-planes ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 20;
    background: rgb(225, 225, 225);
    border-radius: 0.125rem;
}

.detalle-planes ul li:not(:last-child) {
    margin-bottom: 8rem;
}

.detalle-planes ul li {
    grid-column: 2;
    margin-inline: 1.5rem;
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
}

.detalle-planes ul li .title-nuestros-planes-card {
    height: 3.4rem;
    margin-inline: -1.5rem;
    text-align: center;
    background-color: var(--accent-color);
    color: white;
    font-size: var(--fs-h4);
    font-weight: 700;
    display: grid;
    place-content: center;
    position: relative;
    border-radius: 1.5rem 0 0 1.5rem;
}

.detalle-planes ul li .title-nuestros-planes-card::before {
    content: "";
    width: 1.5rem;
    aspect-ratio: 1;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

.detalle-planes ul li .title-nuestros-planes-card::after {
    content: "";
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    background: rgba(245, 245, 245);
    border: 0.3rem solid var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    right: calc(100% + 2rem + 0.125rem);
}

.descripcion-nuestros-planes *,
.descripcion-nuestros-planes *::before,
.descripcion-nuestros-planes *::after {
    margin: 0;
    padding: 0;
}

.detalle-planes ul li .title,
.detalle-planes ul li .descripcion-nuestros-planes {
    background: rgba(245, 245, 245);
    position: relative;
    padding-inline: 1.4rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.detalle-planes ul li .descripcion-nuestros-planes {
    padding-block-end: 1.5rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detalle-planes ul li .title::before,
.detalle-planes ul li .descripcion-nuestros-planes::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    left: 50%;
    border-radius: 50%;
    filter: blur(4px);
    transform: translate(-50%, 50%);
}

.detalle-planes ul li .title::before {
    bottom: calc(100% + 0.125rem);
}

.detalle-planes ul li .descripcion-nuestros-planes::before {
    z-index: -1;
    bottom: 0.2rem;
}

.detalle-planes {
    display: flex;
    gap: 14px;
    padding-top: 20px;
}

.detalle-planes i {
    font-size: var(--fs-body);
    color: var(--navbar-color);
}

.detalle-planes p {
    font-size: var(--fs-body);
}

.detalle-planes p strong {
    font-weight: var(--fw-bold);
}


.descripcion-nuestros-planes button {
    background-color: var(--btn-consultar);
    border: 0;
    border-radius: 5px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: var(--fs-body);
    font-family: 'Parrafo';
    padding: 12px 20px;
    cursor: pointer;
    transition: .5s;
    margin: 34px 0px 10px 0px;
}

/*###################### ESTILOS RESERVA DE SESIÓN ######################*/
/*###################### ESTILOS RESERVA DE SESIÓN ######################*/
/*###################### ESTILOS RESERVA DE SESIÓN ######################*/
/*###################### ESTILOS RESERVA DE SESIÓN ######################*/
/*###################### ESTILOS RESERVA DE SESIÓN ######################*/
/*###################### ESTILOS RESERVA DE SESIÓN ######################*/
.section-date-information {
    padding: 4rem 0rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-date-information .title-date-information {
    font-size: var(--fs-h1);
    font-family: 'Titulo';
    margin-bottom: var(--mb-3);
    color: var(--navbar-color);
}

.description-date-info {
    background-image: url(../../img/recursos-prayni/Praini-Redes.webp);
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.date-inf-opaciti {
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
}

.date-inf-opaciti .detail-date-info {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.date-inf-opaciti .detail-date-info h3 {
    font-size: var(--fs-h3);
    font-family: 'Titulo';
    text-align: center;
    color: white;
    margin-bottom: var(--mb-3);
}

.detail-date-info li {
    list-style: none;
    font-size: var(--fs-h4);
    font-family: 'Parrafo';
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 30px;
    color: white;
}

.date-redes-info {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.date-redes-info h3 {
    font-size: var(--fs-h3);
    font-family: 'Titulo';
    color: white;
}

.social-card {
    height: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 25px;
    border-radius: 14px;
}

.svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all 0.3s;
    z-index: 2;
}

.Btn {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
}

.svgContainer i {
    color: white;
    font-size: 30px;
}

.BG {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
    transition: all 0.3s;
    font-size: 0px;
}

.whatsApp .BG {
    background: #25D366;

}

.gmail .BG {
    background: #D93025;
}

.Btn:hover .BG {
    transform: scale(1.3);
}

.Btn:hover .svgContainer {
    background-color: rgba(209, 209, 209, 0.466);
    backdrop-filter: blur(4px);
}


/*################# ESTILO SECCION FOOTER Y COPY ################*/
/*################# ESTILO SECCION FOOTER Y COPY ################*/
/*################# ESTILO SECCION FOOTER Y COPY ################*/
/*################# ESTILO SECCION FOOTER Y COPY ################*/
.section-footer {
    width: 100%;
    background-color: /*#535252*/ #0a192f;
    font-family: 'Parrafo';
}

.section-footer .seccion_detalle_footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seccion_detalle_footer .detalles_footer {
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px 0px;
}

.detalles_footer .logo_footer figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detalles_footer .logo_footer figure img {
    width: 250px;
}

.detalles_footer .detalle_footer {
    width: 40%;
    padding: 60px 30px 60px 30px;
}

.detalles_footer .detalle_footer h2 {
    color: hsla(0, 0%, 100%, 0.6);
    margin-bottom: 25px;
    font-size: var(--fs-h3);
}

.detalles_footer .detalle_footer p {
    color: hsla(0, 0%, 100%, 0.5);
    margin-bottom: 10px;
    text-align: justify;
    font-size: var(--fs-body);
}

.detalles_footer .redes_footer {
    width: 20%;
    display: none;
}

.detalles_footer .redes_footer h2 {
    color: hsla(0, 0%, 100%, 0.6);
    margin-bottom: 25px;
    font-size: var(--fs-h3);
}

.detalles_footer .redes_footer .iconos_redes a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: white;
    margin-right: 10px;
    background-color: var(--barra-color);
    text-align: center;
}

.detalles_footer .iconos_redes a:hover {
    color: var(--navbtn-color);
}

.section-footer .seccion_copy {
    background-color: #f68421;
    padding: 15px 10px;
    text-align: center;
    color: white;
}

.section-footer .seccion_copy small {
    font-size: var(--fs-small);
}


/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
/*#################### SECCION DEL DISEÑO RESPONSIVO ####################*/
@media (max-width: 1919px) {
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav{
        padding: 0 1rem;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .portada-business {
        width: 100%;
    }
    
    .datos-business .logo-nombre-business {
        max-width: 580px;
        right: 32.6%;
        bottom: -120px;
    }

    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 230px 0px 70px 0px;
    }
    
    .detail-business{
        width: 36%;
        text-align: center;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 4rem 0rem;
    }
    
    .title-character-business{
        margin-bottom: var(--mb-4);
    }
    
    .detail-character-business{
        width: 64%;
    }

    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    .section-ask-client .description-ask-client{
        width: 64%;
    }

    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /* .section-nuestro-serv {
        margin: 0 1rem;
        padding: 4rem 0rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
     */
    .tooltip {
        padding: 10px 18px;
    }
    /*########## Estilo Del Nav De Botones ##########*/
    .tabs {
        width: 80%;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .tab-list {
        display: flex;
    }
    
    .tab-button {
        background: none;
        width: 20%;
        padding: 25px 20px 25px 15px;
        text-align: center;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease, border-radius 0.2s ease;
        border-radius: 20px 20px 0px 0px;
        font-size: var(--fs-body);
        font-family: 'Parrafo';
    }
}






@media (max-width: 1439px) {
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 90px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .logo-nombre-business {
        max-width: 500px;
        right: 27.6%;
        bottom: -120px;
    }

    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 200px 0px 40px 0px;
    }
    
    .detail-business{
        width: 40%;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 4rem 0rem;
    }
    
    .title-character-business{
        margin-bottom: var(--mb-1);
    }
    
    .detail-character-business{
        width: 80%;
        padding-top: 40px;
        gap: 60px 160px;
    }
    
    .card-business{
        width: 36%;
        gap: 40px;
        padding-bottom: 4px;
        border-bottom: solid 4px rgba(137, 176, 217, 0.4);
    }

    .card-business img{
        width: 80px;
    }

    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    .section-nuestro-serv {
        margin: 0 1rem;
        padding: 4rem 0rem 1rem;
    }

    .tabs {
        width: 84%;
    }

    .tab-button {
        width: 20%;
        padding: 20px 0px 20px 15px;
    }

    .galeria-fotografica {
        border-radius: 0px 20px 20px 20px;
        width: 100%;
        padding: 20px 20px;
    }

    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    .descripcion-nuestros-planes button {
        padding: 10px 20px;
        margin: 34px 0px 2px 0px;
    }

    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    .description-date-info{
        height: 480px;
    }
    
    .date-inf-opaciti{
        gap: 40px;
    }
    
    .date-inf-opaciti .detail-date-info{
        width: 40%;
    }
    
    .date-redes-info{
        width: 40%;
    }

    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    .seccion_detalle_footer .detalles_footer {
        gap: 30px;
        padding: 20px 0px;
    }

    .detalles_footer .logo_footer figure {
        width: 100%;
        height: 100%;
    }

    .detalles_footer .logo_footer figure img {
        width: 180px;
    }


    .detalles_footer .redes_footer h2 {
        margin-bottom: 16px;
    }

    .detalles_footer .redes_footer .iconos_redes a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 8px;
    }
}






@media (max-width: 1023px) {
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 80px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .logo-nombre-business {
        max-width: 350px;
        right: 27.6%;
        bottom: -80px;
    }

    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 130px 0px 40px 0px;
    }
    
    .detail-business{
        width: 46%;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 4rem 0rem;
    }
    
    .title-character-business{
        margin-bottom: var(--mb-1);
        text-align: center;
    }
    
    .detail-character-business{
        width: 80%;
        padding-top: 40px;
        gap: 60px 90px;
    }
    
    .card-business{
        width: 40%;
        gap: 20px;
        padding-bottom: 4px;
        border-bottom: solid 4px rgba(137, 176, 217, 0.4);
    }

    .card-business img{
        width: 60px;
    }

    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    .section-ask-client .description-ask-client{
        width: 70%;
        margin-bottom: var(--mb-2);
        line-height: 1.5em;     
    }


    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    .tabs {
        width: 90%;
    }

    .tab-button {
        width: 22%;
        padding: 20px 14px 20px 14px;
    }

    .galeria-fotografica {
        border-radius: 0px 20px 20px 20px;
        width: 100%;
        padding: 20px 20px;
        gap: 14px;
    }

    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    .section-nuestros-planes {
        margin: 0 1rem;
        padding: 3rem 0rem;
    }

    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    .section-date-information .title-date-information{
        padding: 0px 36px 0px 36px;
        text-align: center;
    }

    .description-date-info{
        height: 360px;
    }

    .social-card {
        gap: 30px;
    }

    .Btn {
        width: 60px;
        height: 60px;
    }

    .svgContainer i {
        font-size: 24px;
    }

    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    /*################# ESTILO SECCION FOOTER Y COPY ################*/
    .seccion_detalle_footer .detalles_footer {
        flex-direction: column;
        gap: 0px;
        padding: 40px 0px;
    }

    .detalles_footer .logo_footer figure img {
        width: 160px;
    }

    .detalles_footer .detalle_footer {
        width: 100%;
        padding: 30px 60px 14px 60px;
    }

    .detalles_footer .detalle_footer h2 {
        margin-bottom: 14px;
    }

    .detalles_footer .detalle_footer p {
        line-height: 20px;
    }

    .detalles_footer .redes_footer {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .detalles_footer .redes_footer h2 {
        margin-bottom: 25px;
    }

    .section-footer .seccion_copy {
        padding: 10px 10px;
    }

    .section-footer .seccion_copy small {
        font-size: var(--fs-xs);
    }
}






@media (max-width: 767px) {
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 70px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .logo-nombre-business {
        max-width: 300px;
        right: 26.8%;
        bottom: -70px;
        padding: 0.4rem 1.4rem;
        box-shadow: 0px 2px 6px rgba(114, 167, 206, 0.8);
    }

    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 110px 0px 30px 0px;
    }
    
    .detail-business{
        width: 55%;
        line-height: 1.4em;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 2rem 0rem 3rem;
    }
    
    .title-character-business{
        text-align: center;
        margin-bottom: var(--mb-1);
        padding: 0px 36px 0px 36px;
    }
    
    .detail-character-business{
        width: 90%;
        gap: 60px 64px;
    }
    
    .card-business img{
        width: 48px;
    }

    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    .section-ask-client{
        padding: 2rem 0rem;
    }
    .section-ask-client .description-ask-client{
        width: 84%;
        margin-bottom: var(--mb-1);
        line-height: 1.5em;     
    }

    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    .section-nuestro-serv {
        padding: 2rem 0rem 1rem;
    }

    .tabs {
        width: 94%;
    }

    .tab-button {
        width: 26%;
        padding: 18px 14px 18px 14px;
    }

    .galeria-fotografica {
        padding: 14px 14px;
        gap: 10px;
    }

    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    .section-nuestros-planes {
        margin: 0 1rem;
        padding: 2rem 0rem;
    }

    .section-nuestros-planes .title-nuestros-planes-hr {
        width: 260px;
        margin-bottom: var(--mb-1);
    }
    .detalle-planes ul li:not(:last-child) {
        margin-bottom: 4rem;
    }

    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    .section-date-information .title-date-information{
        margin-bottom: var(--mb-3);
        padding: 0px 40px 0px 40px;
        text-align: center;
    }

    .description-date-info{
        height: 260px;
    }

    .social-card {
        gap: 30px;
    }

    .Btn {
        width: 50px;
        height: 50px;
    }

    .svgContainer i {
        font-size: 20px;
    }
}

















@media (max-width: 599px) {
    /*###################### SECCION DEL NAVBAR ######################*/
    /*###################### SECCION DEL NAVBAR ######################*/
    .nav {
        padding: 0 1rem;
    }

    .ZasWeb-logo img {
        width: 60px;
        padding-bottom: 6px;
    }

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .portada-business {
        width: 100%;
        height: 28vh;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }
    
    .datos-business .logo-nombre-business {
        max-width: 240px;
        right: 27.8%;
        bottom: -58px;
        padding: 0.2rem 1rem;
        box-shadow: 0px 2px 6px rgba(114, 167, 206, 0.8);
    }

    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 94px 0px 20px 0px;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 1.6rem 0rem 3rem;
    }
    
    .title-character-business{
        text-align: center;
        padding: 0px 36px 0px 36px;
    }
    
    .detail-character-business{
        width: 100%;
        gap: 50px 40px;
        padding-top: 20px;
    }
    
    .card-business{
        width: 40%;
        gap: 10px;
    }

    .card-business img{
        width: 40px;
    }

    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    /*###################### ESTILOS PREGUNTA CLIENTE ######################*/
    .section-ask-client{
        padding: 2rem 0rem;
    }

    .section-ask-client .title-ask-client{
        margin-bottom: var(--mb-2);
    }

    .section-ask-client .description-ask-client{
        width: 84%;
        margin-bottom: var(--mb-1);
        line-height: 1.5em;     
    }

    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    .section-nuestro-serv {
        padding: 2rem 0rem 1rem;
    }

    .tabs {
        width:100%;
    }

    .tab-button {
        width: 26%;
        padding: 8px 10px 8px 10px;
    }

    .galeria-fotografica {
        padding: 10px 10px;
        gap: 10px;
    }

    

    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    .section-date-information{
        padding: 2.2rem 0rem 0rem;
    }

    .Btn {
        width: 40px;
        height: 40px;
    }

    .svgContainer i {
        font-size: 18px;
    }
}






@media (max-width: 511px) {

    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .portada-business {
        height: 26vh;
    }
    .datos-business .logo-nombre-business {
        max-width: 180px;
        right: 28.4%;
        bottom: -46px;
        padding: 0.2rem 0.6rem;
        border-radius: 10px;
        box-shadow: 0px 2px 6px rgba(114, 167, 206, 0.8);
    }

    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 74px 0px 20px 0px;
    }

    .detail-business{
        width: 80%;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 1.6rem 0rem 2rem;
    }
    
    .title-character-business{
        padding: 0px 36px 0px 36px;
    }
    
    .detail-character-business{
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 40px 0px;
        padding-top: 20px;
    }
    
    .card-business{
        width: 60%;
        gap: 20px;
    }

    .card-business p{
        font-size: var(--fs-h3);
    }

    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    /*###################### ESTILOS NUESTROS SERVICIOS ######################*/
    .section-nuestro-serv {
        padding: 2rem 0rem 1rem;
    }
    .tab-button {
        padding: 8px 10px 8px 10px;
        border-radius: 12px 12px 0px 0px;
    }

    .tab-button.activo {
        border-radius: 12px 12px 0px 0px;
    }

    .galeria-fotografica {
        border-radius: 0px 10px 10px 10px;
        width: 100%;
        padding: 16px 16px;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    .section-nuestros-planes .title-nuestros-planes-hr {
        width: 220px;
    }

    .detalle-planes ul li:not(:last-child) {
        margin-bottom: 4rem;
    }

    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    .section-date-information .title-date-information{
        margin-bottom: var(--mb-3);
        padding: 0px 40px 0px 40px;
        text-align: center;
    }

    .description-date-info{
        height: 260px;
    }

    .date-inf-opaciti{
        gap: 20px;
    }
    .social-card {
        gap: 24px;
    }
}






@media (max-width: 424px) {
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    /*###################### ESTILOS DEL BANNER DE LA EMPRESA ######################*/
    .datos-business .portada-business {
        height: 26vh;
    }
    .datos-business .logo-nombre-business {
        max-width: 190px;
        right: 25%;
        bottom: -42px;
        padding: 0.2rem 0.6rem;
        border-radius: 10px;
        box-shadow: 0px 2px 6px rgba(114, 167, 206, 0.8);
    }
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    /*###################### ESTILOS SLOGAN EMPRESA ######################*/
    .section-slogan-business{
        width: 100%;
        padding: 64px 0px 24px 0px;
    }

    .detail-business{
        width: 90%;
    }

    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    /*###################### ESTILOS CARACTERISTICAS EMPRESA ######################*/
    .section-character-business{
        margin: 0 1rem;
        padding: 1.6rem 0rem 2rem;
    }
    
    .title-character-business{
        padding: 0px 10px 0px 10px;
    }
    
    .detail-character-business{
        width: 100%;
        gap: 40px 0px;
        padding-top: 20px;
    }
    
    .card-business{
        width: 66%;
        gap: 20px;
    }

    .card-business p{
        font-size: var(--fs-h3);
    }


    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    /*###################### ESTILOS DE NUESTROS PLANES ######################*/
    .section-nuestros-planes .title-nuestros-planes-hr {
        width: 210px;
    }

    .detalle-planes ul li:not(:last-child) {
        margin-bottom: 4rem;
    }

    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    /*###################### ESTILOS RESERVA DE SESIÓN ######################*/
    .section-date-information .title-date-information{
        margin-bottom: var(--mb-3);
        padding: 0px 40px 0px 40px;
        text-align: center;
    }

    .description-date-info{
        height: 260px;
    }

    .date-inf-opaciti{
        gap: 40px;
    }
    .social-card {
        gap: 24px;
    }





    
}






@media (max-width: 374px) {
}




@media screen and (min-width: 768px) {

    /*############# ESTILO NUESTROS PLANES #############*/
    /*############# ESTILO NUESTROS PLANES #############*/
    /*############# ESTILO NUESTROS PLANES #############*/
    /*############# ESTILO NUESTROS PLANES #############*/
    .detalle-planes ul {
        grid-template-columns: 1fr 0.25rem 1fr;
    }

    .detalle-planes ul::before {
        grid-column: 2;
    }

    .detalle-planes ul li:nth-child(odd) {
        grid-column: 1;
    }

    .detalle-planes ul li:nth-child(even) {
        grid-column: 3;
    }

    .detalle-planes ul li:nth-child(2) {
        grid-row: 2/4;
    }

    .detalle-planes ul li:nth-child(odd) .title-nuestros-planes-card::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    .detalle-planes ul li:nth-child(odd) .title-nuestros-planes-card::after {
        transform: translate(-50%, -50%);
        left: calc(100% + 2rem + 0.125rem);
    }

    .detalle-planes ul li:nth-child(odd) .title-nuestros-planes-card {
        border-radius: 0 1.5rem 1.5rem 0;
    }
}