* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Made Infinity Light';
    src: url('../fonts/MADEINFINITYPersonalUse-Light.otf') format('opentype');     
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Made Infinity Regular';
    src: url('../fonts/MADEINFINITYPersonalUse-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Lemon Mocktail";
    src: url('../fonts/Lemon\ Mocktail\ .ttf') format('opentype');
    font-weight: normal;
    font-size: normal;
}

body {
    font-family: 'Made Infinity Light', sans-serif;
    background-color: #f5efc4;
    background-repeat: repeat; /* o 'no-repeat' si querés que no se repita */
    background-size: auto; /* o 'contain' o 'auto' según lo que prefieras */
    background-position: center; /* centra la imagen */
    background-image: url("../img/fondo\ de\ la\ pagina.jpg");
    background-blend-mode: luminosity; /*overlay, soft-light, luminosity y multiply*/
}

:root {
    scroll-behavior: smooth;
}

/*header {
    height: 100vh;
    background-image: linear-gradient(to top, rgba(161, 140, 209, 0.404) 0%, rgba(251, 193, 234, 0.404) 100%), url("../img/deer\ fondo\ 2.JPG");
    background-repeat: no-repeat;
    background-attachment: fixed; /*antes fixed ahora scroll*/
    /*background-position: center;
    background-size: cover;
}*/

.header {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

@supports (height: 100dvh) {
    .swiper-container {
      height: 100dvh;
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background-color: #aaa !important; /* gris claro */
    opacity: 0.5;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    margin: 0 6px !important;
}
  
.swiper-pagination-bullet-active {
    background-color: #f5efc4 !important; /* lila fuerte */
    opacity: 1;
}

.swiper-button-next {
    right: 20px !important; /* más separado del borde derecho */
}
  
.swiper-button-prev {
    left: 20px !important;  /* más separado del borde izquierdo */
}
  

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #f5efc4 !important; /* flecha lila */
  font-size: 30px !important;
  font-weight: bold !important;
}

.swiper-button-next,
.swiper-button-prev {
  background: none !important;  /* saca el fondo */
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: none !important;
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-slide .balm {
    object-fit: cover;
    object-position: bottom center;
}

.swiper-slide .mercadop {
    object-fit: cover;
    object-position: center center;
}

.swiper-slide .calavera {
    object-fit: cover;
    object-position: top center;
}

.menu-navegacion {
    position: fixed;   /* Cambiar de fixed a sticky */
    top: 0;     /* Fijar la barra de navegación en la parte superior */
    width: 100%;
    height: 13%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /*border: solid thin;*
    border-bottom: solid thin;*/
    background-color: #f5efc4;
    background-repeat: repeat; 
    background-size: auto; 
    background-position: center; 
    background-image: url("../img/fondo\ de\ la\ pagina.jpg");
    background-blend-mode: luminosity;
    font-family: 'Made Infinity Light', sans-serif;
    z-index: 999; /* Asegurar que la barra esté por encima de otros elementos */
}

/*.logo {
    width: 5%;
    margin-left: 10px;
}*/

.logo-link {
    display: flex;
    align-items: center;
}
  
.logo {
    width: 70px; /* ajustá según necesites */
    height: auto;
}

.menu-navegacion a {
    color: #111;
    text-decoration: none;
    letter-spacing: 5px;
    font-family: 'Made Infinity Light', sans-serif;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.hamburger img {
    width: 30px;
    height: auto;
}

.menu-navegacion.show {
    flex-direction: column;
    align-items: flex-end;
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

.menu-navegacion.show a {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: right;
}

.menu-navegacion.show .logo {
    display: block;
    width: 70px;
    height: auto;
    margin: 15px 0;
    padding: 0 10px;
}

/*.menu-navegacion.show .menu-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}*/

.contenedor {
    width: 90%;
    max-width: 1200px;
    /*overflow: hidden;*/
    margin: auto;
    padding: 60px 0;
}

.head {
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: rgb(255, 255, 255);
    text-align: center;
}

/*.titulo {
    font-size: 60px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}*/

.copy {
    font-weight: 300;
    font-size: 25px;
}

/*.spread {
    transform: translate(0);
}*/

/*SERVICIO*/

.subtitulo {
    text-align: center;
    font-weight: normal;
    margin-bottom: 40px;
    font-size: 60px;
    font-family: 'Lemon Mocktail', sans-serif;
}

/*.subrayado {
    text-decoration: underline;
    text-underline-offset: 15px;
}*/

.subrayado {
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 60px;
    text-decoration: none; /* sacamos el subrayado original */
}
  
.subrayado::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px; /* distancia entre texto y línea */
    transform: translateX(-50%);
    width: 120%; /* más largo que el texto */
    height: 3px;
    background-color: #000; /* podés cambiar el color */
    border-radius: 2px;
}

.contenedor-servicio {
    display: flex;
    justify-content: center; /* antes space-between ahora center*/
    align-items: stretch; /*antes center ahora stretch*/
    /*text-align: center;*/
    flex-wrap: wrap; /*nuevo*/
    gap: 40px;
    margin-bottom: 40px; /*nuevo antes 50px ahora 40*/ 
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
} 

.cont-cuidados {
    position: relative;
    width: 45%; /*antes 40*/
    min-width: 320px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.cont-cuidados img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.texto-hover {
    position: absolute;   /*absolute*/ /*agregado recien*/
    /* Cambio a posición absoluta */
    bottom: 0;
    /* Mover el texto al fondo */
    left: 0;
    width: 100%;
    max-height: 100%; /*nuevo*/
    padding: 25px;  /*antes 20px ahora 25*/
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    transform: translateY(30%); /*antes 100% ahora 30%*/
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    overflow-y: auto;
}

.cont-cuidados:hover .texto-hover {
    opacity: 1;
    transform: translateY(0);
}

/*GALERIA*/
.gallery {
    background-color: #f5efc4;
    background-repeat: repeat; /* o 'no-repeat' si querés que no se repita */
    background-size: auto; /* o 'contain' o 'auto' según lo que prefieras */
    background-position: center; /* centra la imagen */
    background-image: url("../img/fondo\ de\ la\ pagina.jpg");
    background-blend-mode: luminosity; /*overlay, soft-light, luminosity y multiply*/
}

.contenedor-galeria {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
    cursor: grab;
    margin-bottom: 40px; /*antes 50 ahora 40*/
}

.contenedor-galeria:active {
    cursor: grabbing;
}

.grupo-imagenes {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 25px;
    animation: fadeIn 0.5s ease-in-out;
}

.img-galeria {
    width: 30%;
    display: block;
    /*margin-top: 25px;*/
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    object-fit: cover;
    border-radius: 10px;
}

.navegacion-galeria {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transform: translateY(-50%);
    z-index: 10;
}

.flecha {
    margin-top: -450px; /*antes -360 ahora -450px*/
    background-color: transparent;
    border: none;
    font-size: 48px;
    cursor: pointer;
    color: #333;
    padding: 0;
    transition: transform 0.2 ease;
}

.flecha:hover {
    transform: scale(1.1);
}

.flecha:first-of-type {
    margin-left: -15px;
}

.flecha:last-of-type {
    margin-right: -15px;
}

.paginacion {
    position: absolute;
    bottom: 0px; /*antes -60px ahora 0px*/
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.circulo {
    width: 16px;
    height: 16px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2 ease;
}

.circulo:hover {
    transform: scale(1.2);
}

.circulo.activo {
    background-color: #333;
}

/*animacion al cambiar*/
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-light {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .2s ease-in-out;
    opacity: 0;
    pointer-events: none; /* Evita que bloquee la interacción */
    z-index: 1000; /* Debe estar debajo de la X y el menú */
}

.image-light.show {
    opacity: 1;
    pointer-events: auto; /* Permite clics solo cuando está visible */
}

.agregar-imagen {
    object-fit: cover;
    width: 45%;
    border-radius: 10px;
    transform: scale(0);
    transition: transform .3s .2s;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
    z-index: 1002 !important; /* Más alto que .image-light */
    background-color: transparent;
    pointer-events: auto !important; /* Activa los clics */
}

.showImage {
    transform: scale(1);
}

.show {
    transform: translate(0);
}

/*RAMAS DE LA ROBOTICA*/

/* Estilos para las secciones de los artistas */
.artistas {
    display: flex;
    justify-content: center; /*antes space-evenly ahora center*/ 
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 40px; /*Espacio entre tarjetas (?*/
    max-width: 90%;
    /* Ajusta el ancho máximo según tu diseño */
    /*max-height: 80vh;*/
    /* Ajusta la altura máxima según tu diseño */
    margin: auto;
    /* Centra el contenedor horizontalmente */
    margin-bottom: 40px; /*antes 50 ahora 40*/
    
}

.cont-artistas {
    position: relative;
    /* Cambio a posición relativa */
    width: 40%; /*antes 30% ahora 45%*/
    text-align: center;
    /*margin-bottom: 20px;*/
    cursor: pointer;
    overflow: hidden;
    /* Añadido para ocultar el texto que sobresale */
    
    
}

.cont-artistas img {
    width: 100%;
    height: 250px;
    object-fit: block;
    /* Cambia el ancho de la imagen al 120% del contenedor */
    display: block;
    border-radius: 10px;
}

.n-artistas {
    position: absolute;   /*absolute*/ /*agregado recien*/
    /* Cambio a posición absoluta */
    bottom: 0;
    /* Mover el texto al fondo */
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    transform: translateY(100%);
    border-radius: 10px;
}

.cont-artistas:hover .n-artistas {
    opacity: 1;
    transform: translateY(0);
}


/*ABOUT US*/

.responsive-container-block {
    min-height: 75px;
    /*height: fit-content;*/
    width: 100%;
    /*padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;*/
    display: flex;
    flex-wrap: wrap;
    /*margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;*/
    margin: 0 auto;
    justify-content: flex-start;
}
  
.text-blk {
    /*margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;*/
    margin: 0;
    /*padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;*/
    padding: 10px;
    line-height: 25px;
}
  
.responsive-container-block.bigContainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;*/
    padding: 10px 50px;
    margin-bottom: 0;
}
  
/*.text-blk.headingText {
    /*font-size: 23px;
    font-weight: 700;
    line-height: 28px;
    color: rgb(0, 135, 177);
    /*margin-top: 0px;
    margin-right: 0px;*/
    /*margin-bottom: 10px;*/
    /*margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;*/
    /*padding: 0 10px;
    font-family: "Made Infinity, sans-serif"
}*/
  
.allText {
    /*padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;*/
    padding: 0;
    width: 68%; /* pone 100% antes 50%*/
    max-width: 800px;
    /*margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;*/
    margin: 0 auto;
}
  
.text-blk.subHeadingText {
    /*color: rgb(102, 102, 102);
    font-size: 32px;
    /*line-height: 40px;*/
    /*font-weight: 700;*/
    /*margin-top: 0px;
    margin-right: 0px;*/
    /*margin-bottom: 15px;*/
    /*margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;*/
    /*padding: 0 10px;*/

    text-align: center;
    font-weight: normal;
    /*color: #9f8ad0;*/
    margin-bottom: 40px;
    font-size: 60px;
    font-family: 'Lemon Mocktail', sans-serif;
}
  
.text-blk.description {
    font-size: 18px;
    line-height: 28px;
    /*color: rgb(153, 153, 153);*/
    /*padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;*/
    padding: 0 10px;
    /*margin-top: 0px;
    margin-right: 0px;*/
    margin-bottom: 50px;
    /*margin-left: 0px;*/
}
  
.explore {
    font-size: 18px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    background-color: rgb(244, 152, 146);
    /*border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-color: rgb(244, 152, 146);
    border-right-color: rgb(244, 152, 146);
    border-bottom-color: rgb(244, 152, 146);
    border-left-color: rgb(244, 152, 146);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;*/
    cursor: pointer;
    box-shadow: rgba(244, 152, 146, 0.25) 0px 10px 20px;
    /*border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;*/
    border-radius: 10px;
    /*padding-top: 9px;
    padding-right: 45px;
    padding-bottom: 9px;
    padding-left: 45px;*/
    padding: 9px 45px;
    border: none;
}
  
.explore:hover {
    /*background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: repeat-x;
    background-repeat: repeat-y;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;*/
    background-color: rgb(255, 235, 234);
    color: rgb(244, 152, 146);
}
  
.responsive-container-block.Container {
    /*margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;*/
    margin: 80px auto 50px auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    /*padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;*/
    padding: 10px;
}
  
.responsive-container-block.Container.bottomContainer {
    flex-direction: row;
    /*margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;*/
    margin: 50px auto;
}
  
.allText.aboveText {
    /*margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;*/
    margin: 0 40px;
}
  
.allText.bottomText {
    /*margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 0px;*/
    margin: 50px 10px;
}
  
.mainVideo {
    width: 100%; /* pone 100% antes 93% o 85*/
    height: 450px;
    margin-top: -30px;
    /*margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;*/
    border-radius: 10px;
}
  
.videoContainer {
    width: 100%;   /* pone 100% width saca height y pone auto el height de 600px a auto*/
    height: auto;
    display: flex;
    justify-content: center; /*pone center antes flex-start*/
    align-items: center;
    position: relative;
    /*padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;*/
    padding: 0 10px;
}
  
.mainVideo {
    z-index: 10;
}
  
/*.dotsImg {
    position: absolute;
    width: 80%;
    height: 600px;
    top: 0;       /*antes 0px ahora 0
    right: 0;*/     /*antes 0px ahora 0*/
    /*object-fit: cover;
}*/

/*UBICACION*/
/*seccion ubi*/
.ubicacion {
    text-align: center;
    margin-top: 40px; /*antes 50 ahora 40*/
    margin-bottom: 50px;
    padding: 0 20px;
}

/*contenedor princi*/
.contenedor-ubicacion {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1250px;
    margin: auto;
    gap: 30px;
}

/*info*/
.info-ubicacion {
    width: 40%;
    text-align: left;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.info-ubicacion h3 {
    margin-bottom: 10px;
    color: #333;
}

.mapa {
    max-width: 800px;
    /*margin: auto;*/
    width: 50%;
}

.mapa iframe {
    height: 343px; /*por ahora*/
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/*FOOTER*/

footer {
    background-color: white;
    background-repeat: repeat;
    background-size: auto; 
    background-position: center;
    background-image: url("../img/fondo\ de\ la\ pagina.jpg");
    background-blend-mode: luminosity;
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
    border: solid thin rgba(108, 134, 60, 0.404);
}

.datos-footer {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    align-items: center; /*nuevo*/
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #271b1be5;
    flex-wrap: wrap; /*nuevo*/
}

.datos-footer i{
    color: black;
    transition: color 0.3s ease-in-out;
}

.item-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.texto-footer {
    margin-top: 10px;
    font-size: 17px;
    color: #271b1be5;
}

.border-icon {
    height: 70px; /*aumenta a 50 no se si va igual antes 24px*/
    width: 70px; /*aumenta a 50 no se si va igual antes 24px*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem; /*pone 1.5 rem antes 2.5*/
    border: solid thin white;
    border-radius: 50%;
    font-size: 2.0rem; /*pone 1.5 rem antes 1.75*/
    transition: all .3s ease-in;
}

.border-icon:hover {
    background-color: black;
    cursor: pointer;
}

.border-icon:hover i {
    color: white;
}

.titulo-final {
    text-align: center;
    font-size: 14px; /*baja a 20px antes 24px*/
    margin: 20px 0 0 0;
    color: #271b1be5;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 40px; /* tamaño del icono */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
  
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

.whatsapp-float {
    text-decoration: none;
}
  
.whatsapp-float i {
    text-decoration: none;
}

/*SCREEN*/

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

    /*header {
        height: 70vh;
        background-image: linear-gradient(to top, rgba(161, 140, 209, 0.404) 0%, rgba(251, 193, 234, 0.404) 100%), url("../img/deer\ fondo\ 2.JPG");
        background-size: cover;
        background-attachment: scroll;
    }*/

    .header {
        width: 100%;
        height: 58vh;
        overflow: hidden;
    }

    @supports (height: 58dvh) {
        .header {
          height: 58dvh;
        }
    }
    

    /* Swiper */
    .swiper-container {
        width: 100% !important;
        height: 100% !important;
        position: relative;
    }
    
    .swiper-wrapper,
    .swiper-slide {
        width: 100% !important;
        height: 100% !important;
    }
    
    .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    .swiper-slide video {
        object-fit: cover;
        height: 100% !important;
        width: 100% !important;
        display: block;
    }

    .menu-navegacion {
        /*width: 50vw;
        flex-direction: column;
        height: auto;*/
        background-image: none; /*para que no se vea barra nav*/
        background-color: transparent;
        /*padding-top: 60px; /* Añade un relleno superior */
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        /* Mostrar en pantallas pequeñas */
        /*order: -1;*/
        /* Mover al comienzo del contenedor */
    }

    .menu-navegacion a,
    .menu-navegacion .logo-link {
        /*width: 100%;
         Ocupar todo el ancho del contenedor 
        text-align: center;
        /* Centrar texto */
        /*padding: 10px 0;*/
        /* Añadir espacio entre enlaces */
        display: none;
    }

    .menu-navegacion.show a,
    .menu-navegacion.show .logo-link {
        display: block;
        text-align: right;
        /*margin-top: 20px; /*añade un margen superior*/
    }

    .menu-navegacion.show {
        width: 40%;
        background-color: #f5efc4;
        background-repeat: repeat;
        background-size: auto; 
        background-position: center; 
        background-image: url("../img/fondo\ de\ la\ pagina.jpg");
        background-blend-mode: luminosity;
        flex-direction: column;
        align-items: flex-end;
        height: 100vh;
        padding: 20px;
    }

    .menu-navegacion.show .logo-link {
        display: flex;
        justify-content: flex-end;
        margin-bottom: -20px;
    }

    .menu-navegacion.show .logo {
        width: 100px;
        margin: 10px 0;
        height: auto;
    }

    .circulo {
        display: none;
    }
    /* Ocultar enlaces por defecto en pantallas pequeñas */
    /*.menu-navegacion a:not(.hamburger) {
        display: none;
    }*/


    /*.titulo {
        font-size: 40px;
    }*/

    .subrayado {
        font-size: 40px;
    }
    
    .subrayado::after {
        width: 130%;
        bottom: -5px;
    }

    .contenedor-servicio {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    
    .cont-cuidados {
        width: 90%;
    }
    
    .texto-hover {
        font-size: 15px;
        padding: 20px;
    }
    
    .agregar-imagen {
        width: 80%;
    }

    .img-galeria {
        width: 45%;
    }

    .cont-artistas {
        width: 80%; /* antes 80% ahora 100%*/
        margin-bottom: 20px;
    }

    .cont-artistas img {
        height: 300px;
    }

    .responsive-container-block.bigContainer,
    .videoContainer,
    .allText {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .allText {
        padding: 0 30px; /* Un poco más de espacio que en mobile chico */
        font-size: 18px;
        line-height: 28px;
        width: 100%;
    }

    .text-blk.subHeadingText {
        font-size: 40px;
        text-align: center;
    }

    .text-blk.description {
        font-size: 18px;
        line-height: 28px;
        text-align: justify;
    }

    .videoContainer {
        width: 100%;
        padding: 30px 30px;
        display: flex;
        justify-content: center;
    }

    .mainVideo {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }


    /*Ubicacion*/

    .contenedor-ubicacion {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-ubicacion, .mapa {
        width: 100%;
    }

    /*.mapa {
        max-width: 80%;
    }

    .mapa iframe {
        height: 400px;
    }*/

    .datos-footer {
        /*justify-content: center;*/
        flex-wrap: wrap; /*cambia a flex wrap: wrap antes flex direction*/
        gap: 20px;     /*agrega esto*/
    }

    /*.midato-foot {
        width: 80%;
        justify-content: space-evenly;
    }*/

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 32px;
        bottom: 15px;
        right: 15px;
    }
}

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

    /*header {
        height: 50vh;
        background-image: linear-gradient(to top, rgba(161, 140, 209, 0.404) 0%, rgba(251, 193, 234, 0.404) 100%), url("../img/deer\ fondo\ 2.JPG");
        background-size: cover;
        background-attachment: scroll;
    }*/

    .header {
        width: 100%;
        height: 35vh;
        overflow: hidden;
    }

    @supports (height: 35dvh) {
        .header {
          height: 35dvh;
        }
    }

    .swiper-container {
        width: 100% !important;
        height: 100% !important;
        position: relative;
    }

    .swiper-wrapper,
    .swiper-slide {
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    .swiper-slide video {
        object-fit: cover;
        height: 100% !important;
        width: 100% !important;
        display: block;
    }

    .menu-navegacion {
        width: 100%; /*pone 100% antes 65vw*/
    }

    .agregar-imagen {
        width: 95%;
    }

    /*.hamburger {
        top: 20px;
        right: 20px;
    } */

    /*.titulo {
        font-size: 30px;
        position: relative;
        z-index: 1;
    }*/

    .cont-cuidados {
        width: 100%;
    }
    
    .texto-hover {
        font-size: 14px;
        line-height: 1.4;
        padding: 15px;
    }

    .subtitulo {
        font-size: 30px;
    }

    .subrayado {
        font-size: 30px;
    }
    
    .subrayado::after {
        width: 120%;
        bottom: -4px;
    }

    .img-galeria {
        width: 95%;
    }

    /*.paginacion {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 200px;
        margin: 0 auto;
        gap: 8px;
        row-gap: 10px;
        bottom: -80px;
    }*/

    .paginacion {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 10px;
        row-gap: 12px;
        justify-content: center;
        align-items: center;
        margin: 20px auto 0 auto;
        max-width: 260px; /* Ajustá si hace falta para que no se pase del ancho */
    }

    .circulo {
        display: none;
        width: 12px;
        height: 12px;
    }

    .cont-artistas {
        width: 100%;
    }

    .cont-artistas img {
        height: 250px;
    }

    .responsive-container-block.bigContainer,
    .videoContainer,
    .allText {
      width: 100%;
      padding: 0;
      margin: 0;
    }

    .allText {
      padding: 0 10px; /* Solo un poco de aire a los lados */
      font-size: 16px;
      line-height: 26px;
      width: 100%;
    }

    .text-blk.subHeadingText {
      font-size: 28px;
      text-align: center;
    }

    .text-blk.description {
      font-size: 16px;
      line-height: 26px;
      text-align: justify;
    }

    .videoContainer {
      width: 100%;
      padding: 20px 10px;
      display: flex;
      justify-content: center;
    }

    .mainVideo {
      width: 100%;
      max-width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }

    /*.dotsImg {
        width: 90%;
        height: 400px;
        top: -100px;
        z-index: -1;
    }*/

    /*agrega esto*/
    .menu-navegacion.show {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 50%; /* Reduce the width of the menu */
        background-color: #f5efc4;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    }

    /*ubicacion*/
    /*.mapa {
        max-width: 95%;
    }*/

    .mapa iframe {
        height: 350px;
    }

    .datos-footer {
        flex-wrap: wrap; /* Permite que se reacomoden en filas */
        justify-content: center;
        gap: 15px;
    }

    .item-footer {
        flex: 1 1 40%; /* Ocupa ~40% del contenedor, permite quepan 2 por fila */
        min-width: 100px; /* Mínimo para que no colapsen */
        max-width: 45%; /* Evita que se estiren demasiado */
    }

    .border-icon {
        height: 50px;
        width: 50px;
        font-size: 1.5rem;
        padding: 1rem;
    }

    .texto-footer {
        font-size: 14px;
    }

    .titulo-final {
        font-size: 13px;
        padding: 0 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 12px;
        right: 12px;
    }
}
