* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: "Montserrat";
background-color: #000000;

}

header {
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 11%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to top, #0f0f0f00, #090909);
    backdrop-filter: blur(5px);
}

.logo img {
    width: 170px;
    display: flex;
    justify-content: center;
}

.hamburguesa {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburguesa .linea {
    height: 3px;
    background: azure;
    border-radius: 5px;
}

.redes {
    position: fixed;
    display: flex;
    flex-direction: column;
    margin-top: 20vh;
    right: 0;
    padding: 1rem;
    z-index: 1000;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    backdrop-filter: blur(10px);
}

.redes a {
    margin-bottom: 1rem;
}

.redes a img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease-out;
}

.redes a img:hover {
    transform: scale(1.3);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cont-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
}

.cont-menu div {
    margin: 0 0.5rem;
}

.nav-item a{
    text-decoration: none;
    color: white;
}

nav .nav-item:nth-child(3) {
    position: relative;
    border: 3px solid #f9a1a9;
    border-radius: 8px;
    padding: .4rem;
}

nav .nav-item:nth-child(3):hover {
    background: #f9a1a9;
    cursor: pointer;
}



.nav-item p{
  color: white;
}


.nav-item {
    position: relative;
}



.nav-item:hover {
    cursor: pointer;
}

.nav-item a:hover{
  color: #f8f8f8;
}

.nav-item p:hover{
 color: #f9a1a9;
}

.submenu-parent {
    position: relative;
    margin: 0;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #090909;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
    min-width: 180px;
    z-index: 100;
    flex-direction: column;
    overflow: hidden;
}

.submenu a {
    color: azure;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #cd8417 0%, #f9a1a9 100%);
    z-index: -1;
    transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

.submenu a:hover {
    color: #0d0d0d;
}

.submenu a:hover::before {
    width: 100%;
}

.submenu-parent:hover .submenu {
    display: flex;
}

.banner {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: #0d0d0d; /* fondo negro como en la imagen */
  color: #fff;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Imagen */
.banner__image {
  position: relative;
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen encima del círculo */
.banner__image img {
  position: relative;
  z-index: 1;
  max-width: 70%;
  height: auto;
  object-fit: contain;
}


/* Contenido de texto */
.banner__content {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.banner__content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.banner__content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Botones */
.main-buttons {
  display: flex;
  gap: 15px;
}

.main-buttons button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

/* Asignación correcta de color de borde */
.btn-1 {
  border: 2px solid #f9a1a9;
}

.btn-2 {
  border: 2px solid #cd8417;
}

.btn-1:hover {
  background-color: #f9a1a9;
  color: #000;
}

.btn-2:hover {
  background-color: #cd8417;
  color: #000;
}

/* Sección de servicios */
.servicios {
  padding: 60px 20px;
  background-color: #0d0d0d; /* similar al fondo de la imagen */
  color: #fff;
  text-align: center;
}

.servicios h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

.servicio__contenido {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  text-align: center;
  align-items: center;
}

.servicio__contenido p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fafafa;
  max-width: 800px;
  margin: 0 auto;
}


/* Cada bloque de servicio */
.servicio {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 15vh auto;
  flex-wrap: wrap;
  background-color: transparent;
  text-align: center;
  justify-content: center;
}

/* Alternar orden para pares */
.servicio:nth-child(even) {
  flex-direction: row-reverse;
}

.servicio img {
  width: 400px;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Contenedor del texto y botones */
.servicio h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #cd8417;
  display: inline-block;
  padding-bottom: 35px;
  width: 70%;
  text-align: center;
}

.servicio p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 500px;
  text-align: center;
}

.btn-1,
.btn-2 {
  padding: 10px 20px;
  font-weight: bold;
  border: 2px solid;
  background-color: transparent;
  color: #ffff;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
  margin-right: 15px;
}

.btn-1 {
  border-color: #f9a1a9;
}

.btn-1:hover {
  background-color: #f9a1a9;
  color: #000;
}

.btn-2 {
  border-color: #f7b243;
}

.btn-2:hover {
  background-color: #f7b243;
  color: #000;
}

/* Footer */
footer {
  background: #000000;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  color: #f9a1a9;
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 5rem;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.derechos {
  flex: 1;
  text-align: left;
  color: #cd8417;
  font-size: 1.1rem;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 10%;
}

.derechos p {
  margin: 0;
  width: 60%;
  font-size: 0.9rem;
}

.foot-links {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 30%;
}

.foot-links .footLogo {
  width: 100%;
  height: 60px;
  margin-bottom: 0.5rem;
}

.foot-links-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
  justify-items: left;
  max-width: 400px;
}

.foot-links-list a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  margin: 0.1rem 0;
  width: 100%;
}

.foot-links-list a:hover {
  color: #cd8417;
}

.redes-footer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 3rem;
  gap: 0.5rem;
}

.redes-footer {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.redes-footer a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s, filter 0.2s;
}

.redes-footer a img:hover {
  transform: scale(1.2);
}

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #f9a1a9;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animación al activar */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

@media (max-width: 1280px){
    .main-serv{
        top: 0;
        margin-top: 11vh !important;
    }

    .body-inicio .main-serv .banner-text-cont {
        width: 100% !important;
    }

    .body-inicio .main-serv .banner-text-cont h2{
        font-size: 1.5rem;
    }

    .body-inicio .main-serv .banner-text-cont h3{
        margin: .7rem 0;
    }

    .body-inicio .main-serv .banner-text-cont p{
        font-size: .9rem;
    }

    .body-inicio .main-serv .banner-text-cont li{
        margin: 1.3rem 0;
    }

    .body-inicio .main-serv .banner-text-cont h2{
        margin-bottom: 1rem;
    }
    .comentario {
        min-width: 45vw !important;
    }
}

@media (max-width: 768px) {

  header {
        padding: 0;
    }

    .logo img{
        width: 150px;
        display: flex;
        justify-content: center;
    }

    .hamburguesa {
        display: flex;
        z-index: 1001;
        margin: 10px 10px 0 0;
    }

    .hamburguesa .linea {
        border-radius: 0;
        transition: ease-in-out 0.3s;
    }

    .hamburguesa .linea-activa:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburguesa .linea-activa:nth-child(2) {
        opacity: 0;
    }

    .hamburguesa .linea-activa:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }

    nav {
        position: absolute;
        background-color: #090909;
        backdrop-filter: blur(20px);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        top: 0;
        right: 100vw;
        justify-content: center;
        font-size: 2rem;
        transition: ease-in-out 0.3s;
        overflow: hidden;
    }

    .cont-menu {
        width: 100%;
        flex-wrap: wrap;
        font-size: 1.6rem;
    }

    .submenu-parent {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        margin: 3rem 0 !important;
    }

    nav::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #09090900;
        backdrop-filter: blur(25px);
        z-index: -1;
    }

    .submenu-parent p{
        display: none;
    }

    .submenu {
    display: flex;
    position: relative;
    top: 100%;
    left: 0;
    background: #09090900;
    box-shadow: none;
    border-radius: 0 0 8px 8px;
    min-width: 180px;
    z-index: 100;
    flex-direction: column;
    overflow: hidden;
}

    nav.menu-active {
        right: 0;
    }
    .cuadrado:nth-child(2) {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #cd8417e3;
        position: absolute;
        top: 50px;
        left: 70vw;
        z-index: -1;
        animation: burbuja2 ease-in-out 18s infinite;
    }

    @keyframes burbuja2 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        15% {
            transform: translate(-60px, 100px) scale(1.1);
            opacity: 0.95;
        }
        30% {
            transform: translate(-120px, 120px) scale(1.2);
            opacity: 0.92;
        }
        50% {
            transform: translate(-80px, 120px) scale(1.15);
            opacity: 0.96;
        }
        70% {
            transform: translate(-30px, 180px) scale(1.05);
            opacity: 0.98;
        }
        85% {
            transform: translate(0px, 150px) scale(1.09);
            opacity: 0.97;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .cuadrado:nth-child(3) {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f9a1a9;
        position: absolute;
        top: 200px !important;
        left: 40vw;
        z-index: -1;
        animation: burbuja3 ease-in-out 22s infinite;
    }

    @keyframes burbuja3 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        20% {
            transform: translate(80px, -60px) scale(1.13);
            opacity: 0.96;
        }
        35% {
            transform: translate(160px, -120px) scale(1.18);
            opacity: 0.93;
        }
        55% {
            transform: translate(100px, -180px) scale(1.08);
            opacity: 0.97;
        }
        75% {
            transform: translate(40px, -120px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, -160px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .cuadrado:nth-child(4) {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #cd8417;
        position: absolute;
        top: 100px !important;
        left: 10vw;
        z-index: -1;
        animation: burbuja4 ease-in-out 25s infinite !important;
    }

    @keyframes burbuja4 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        10% {
            transform: translate(100px, 60px) scale(1.12) !important;
            opacity: 0.96;
        }
        30% {
            transform: translate(100px, -20px) scale(1.18) !important;
            opacity: 0.93;
        }
        50% {
            transform: translate(150px, -180px) scale(1.08) !important;
            opacity: 0.97;
        }
        70% {
            transform: translate(80px, 120px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, 60px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }
    .cuadrado:nth-child(1) {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #f9a1a9;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        animation: burbuja1 ease-in-out 20s infinite;
    }

    @keyframes burbuja1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    10% {
        transform: translate(120px, 80px) scale(1.12);
        opacity: 0.96;
    }
    25% {
        transform: translate(220px, 100px) scale(1.18);
        opacity: 0.93;
    }
    40% {
        transform: translate(320px, 100px) scale(1.08);
        opacity: 0.97;
    }
    55% {
        transform: translate(180px, 100px) scale(1.52);
        opacity: 0.92;
    }
    70% {
        transform: translate(60px, 120px) scale(1.15);
        opacity: 0.95;
    }
    85% {
        transform: translate(0px, 150px) scale(1.09);
        opacity: 0.98;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    
}
   
    .redes {
        margin-top: 20vh;
        padding: 0.5rem;
        right: -1px;
        backdrop-filter: blur(10px);
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 100;
    }


  /* Ajuste de layout para secciones de servicios */
  .servicio,
  .servicio:nth-child(even) {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .servicio img {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
  }

  .servicio__contenido,
  .servicio p,
  .servicio__contenido p {
    text-align: center;
    align-items: center;
  }

  /* Banner ajustado */
  .banner {
    flex-direction: column;
    height: auto;
    padding: 2rem;
    text-align: center;
    justify-content: center;
  }

  .banner__image {
    width: 100%;
    margin-top: 1rem;
  }

  .banner__content {
    align-items: center;
    text-align: center;
    
  }

  .banner__content h1 {
    font-size: 2.4rem;
  }

  .banner__content p {
    font-size: 1rem;
  }

  /* Botones principales en columna */
  .main-buttons {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
  }

  .galeria {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
        overflow: hidden;
    }

    .galeria-track img {
        width: 90vw;
        max-width: 100%;
    }


  .main-buttons .btn-1,
  .main-buttons .btn-2 {
    width: 100%;
  }

  /* Footer en columna */
  footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0 1rem 0;
        font-size: 1rem;
    }

    .derechos, .foot-links, .redes-footer {
        width: 100%;
        text-align: center;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .foot-links-list {
        grid-template-columns: 1fr;
        max-width: 90vw;
        gap: 0.5rem;
    }

    .redes-footer {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        padding-right: 0;
    }

    .foot-links {
        order: 1;
    }
    .redes-footer {
        order: 2;
    }
    .derechos {
        order: 3;
        text-align: center;
        padding-left: 0;
        width: 100%;
        font-size: 0.9rem;
        gap: 0.3rem;
    }

  .servicio__contenido {
    margin-bottom: 90px;
  }

}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
body.loading .transition-overlay {
    opacity: 1;
    pointer-events: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: azure;
}

body {
    background-color: #0d0d0d;
    font-family: "Montserrat";
}

.body-servicios main {
    margin-top: 10vh;
}

main {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5vh;
    height: 85vh;
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(20px) !important;
    top: 0;
}

.main-contacto {
    margin-top: 10vh;
}

.main-serv {
    margin-top: 10vh;
}

.banner-img {
    width: 35%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.serv-banner-img {
    max-height: 75vh;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.banner-text-cont {
    width: 40%;
    padding: 2rem;
    text-align: left;
}

.banner-text-cont h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.banner-text-cont h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.banner-text-cont p {
    margin-bottom: 3rem;
}
.banner-text-cont ul li {
    margin-bottom: 2rem;
    list-style-type: disc;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.banner-text-cont ul li::marker {
    color: #cd8417;
    font-size: 1.9em;
}

.body-contacto main {
    height: 90vh;
    justify-content: flex-start;
    min-height: 70vh;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-ama {
    color: white;
    border: 2px solid #cd8417;
    background-color: #f9a1a800;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 7rem;
}

.btn-ama a {
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.btn-ama:hover {
    background-color: #cd8417;
    color: azure;
}

.jump-arrow {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.jump-arrow img {
    width: 50px;
    height: 50px;
    animation: rebote 3s infinite;
}

@keyframes rebote {
    0%, 40%, 65%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-30px);
    }
    20% {
        transform: translateY(5px);
    }
    28% {
        transform: translateY(-15px);
    }
    
    
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.galeria img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.galeria-carrusel {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background: transparent;
    padding: 0 2rem;
    position: relative;
}

.galeria-carrusel::before,
.galeria-carrusel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.galeria-carrusel::before {
    left: 0;
    background: linear-gradient(to right, #0d0d0d 80%, transparent);
}
.galeria-carrusel::after {
    right: 0;
    background: linear-gradient(to left, #0d0d0d 80%, transparent);
}

.galeria-track {
    display: flex;
    width: max-content;
    animation: galeria-scroll 60s linear infinite;
    gap: 1.5rem;
    margin-top: 5rem;
}

.galeria-track img {
    width: 320px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes galeria-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cont-comentarios {
    width: 100%;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 12rem;
    display: flex;
    justify-content: space-around;
    margin-bottom: 10rem;
}

.comentario {
    background: linear-gradient(90deg, #cd8417 0%, #f9a1a9 100%);
    background-size: 200% 200%;
    animation: comentario-gradient-move 4s linear infinite alternate;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    width: 35%;
    display: flex;
}

@keyframes comentario-gradient-move {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.comentario img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.comentario h4 {
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1.9rem;
}

.coment-txt {
    margin: 0 2rem;
}

.coment-txt p {
    margin: 2rem 0;
}

.cont-stars {
    display: flex;
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.comentario .cont-stars img {
    width: 50px;
    height: 50px;
}

footer {
    background: #000000;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    color: #f9a1a9;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 5rem;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.derechos {
    flex: 1;
    text-align: left;
    color: #cd8417;
    font-size: 1.1rem;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 10%;
}

.derechos p {
    margin: 0;
    width: 60%;
    font-size: 0.9rem;
}

.foot-links {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: 30%;
}

.foot-links .footLogo {
    width: 100%;
    height: 60px;
    margin-bottom: 0.5rem;
}

.foot-links-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    width: 100%;
    margin-top: 0.5rem;
    justify-items: left;
    max-width: 400px;
}

.foot-links-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    margin: 0.1rem 0;
    width: 100%;
}

.foot-links-list a:hover {
    color: #cd8417;
}

.redes-footer {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 3rem;
    gap: 0.5rem;
}

.redes-footer {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.redes-footer a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s, filter 0.2s;
}

.redes-footer a img:hover {
    transform: scale(1.2);
}

@media (max-width: 480px) {

    header {
        padding: 0;
    }

    .body-servicios .banner-text-cont {
        width: auto !important;
    }

    .logo img{
        width: 150px;
        display: flex;
        justify-content: center;
    }

    .hamburguesa {
        display: flex;
        z-index: 1001;
        margin: 10px 10px 0 0;
    }

    .hamburguesa .linea {
        border-radius: 0;
        transition: ease-in-out 0.3s;
    }

    .hamburguesa .linea-activa:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburguesa .linea-activa:nth-child(2) {
        opacity: 0;
    }

    .hamburguesa .linea-activa:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }


    .main-contacto {
        margin-top: 0;
    }

    .main-serv {
        margin-top: 2vh !important;
    }

    nav {
        position: absolute;
        background-color: #090909;
        backdrop-filter: blur(20px);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        top: 0;
        right: 100vw;
        justify-content: center;
        font-size: 2rem;
        transition: ease-in-out 0.3s;
        overflow: hidden;
    }

    .cont-menu {
        width: 100%;
        flex-wrap: wrap;
        font-size: 1.6rem;
    }

    .submenu-parent {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        margin: 3rem 0 !important;
    }

    nav::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #09090900;
        backdrop-filter: blur(25px);
        z-index: -1;
    }

    .submenu-parent p{
        display: none;
    }

    .submenu {
    display: flex;
    position: relative;
    top: 100%;
    left: 0;
    background: #09090900;
    box-shadow: none;
    border-radius: 0 0 8px 8px;
    min-width: 180px;
    z-index: 100;
    flex-direction: column;
    overflow: hidden;
}

    nav.menu-active {
        right: 0;
    }
    .cuadrado:nth-child(2) {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #cd8417e3;
        position: absolute;
        top: 50px;
        left: 70vw;
        z-index: -1;
        animation: burbuja2 ease-in-out 18s infinite;
    }

    @keyframes burbuja2 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        15% {
            transform: translate(-60px, 100px) scale(1.1);
            opacity: 0.95;
        }
        30% {
            transform: translate(-120px, 220px) scale(1.2);
            opacity: 0.92;
        }
        50% {
            transform: translate(-80px, 320px) scale(1.15);
            opacity: 0.96;
        }
        70% {
            transform: translate(-30px, 180px) scale(1.05);
            opacity: 0.98;
        }
        85% {
            transform: translate(0px, 350px) scale(1.09);
            opacity: 0.97;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .cuadrado:nth-child(3) {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f9a1a9;
        position: absolute;
        top: 300px;
        left: 40vw;
        z-index: -1;
        animation: burbuja3 ease-in-out 22s infinite;
    }

    .servicio p {
        max-width: 300px !important;
    }

    @keyframes burbuja3 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        20% {
            transform: translate(80px, -60px) scale(1.13);
            opacity: 0.96;
        }
        35% {
            transform: translate(160px, -120px) scale(1.18);
            opacity: 0.93;
        }
        55% {
            transform: translate(100px, -180px) scale(1.08);
            opacity: 0.97;
        }
        75% {
            transform: translate(40px, -220px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, -260px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .cuadrado:nth-child(4) {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #cd8417;
        position: absolute;
        top: 400px;
        left: 10vw;
        z-index: -1;
        animation: burbuja4 ease-in-out 25s infinite;
    }

    @keyframes burbuja4 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        10% {
            transform: translate(100px, 60px) scale(1.12);
            opacity: 0.96;
        }
        30% {
            transform: translate(200px, 120px) scale(1.18);
            opacity: 0.93;
        }
        50% {
            transform: translate(150px, 180px) scale(1.08);
            opacity: 0.97;
        }
        70% {
            transform: translate(80px, 220px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, 260px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }
    .cuadrado:nth-child(1) {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #f9a1a9;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        animation: burbuja1 ease-in-out 20s infinite;
    }

    @keyframes burbuja1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    10% {
        transform: translate(120px, 80px) scale(1.12);
        opacity: 0.96;
    }
    25% {
        transform: translate(220px, 200px) scale(1.18);
        opacity: 0.93;
    }
    40% {
        transform: translate(320px, 100px) scale(1.08);
        opacity: 0.97;
    }
    55% {
        transform: translate(180px, 300px) scale(1.52);
        opacity: 0.92;
    }
    70% {
        transform: translate(60px, 220px) scale(1.15);
        opacity: 0.95;
    }
    85% {
        transform: translate(0px, 350px) scale(1.09);
        opacity: 0.98;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

    main {
        flex-direction: column;
        padding: 0 1rem;
        align-items: stretch;
        position: relative;
    }

    .contact-banner-image {
        max-width: 100%;
        height: 50vh !important;
    }

    .banner-text-cont {
        width: 100%;
        padding: 1rem;
        text-align: left;
    }

    .banner-text-cont h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .banner-text-cont p {
        padding: 0 5%;
    }

    .banner-text-cont h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1.2rem;
    }

    .banner-text-cont ul li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding-left: 1rem;
    }

    .btn-ama {
        width: 100%;
        font-size: 1rem;
        margin-top: 2rem;
        padding: 0.7rem;
    }

    .jump-arrow img {
        margin-top: 20px;
    }

    .galeria {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .galeria-track img {
        width: 90vw;
        max-width: 100%;
    }

    .cont-comentarios {
        flex-direction: column;
        padding: 1rem;
        margin-top: 5rem;
        margin-bottom: 4rem;
        gap: 1.5rem;
    }

    .comentario {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 0.7rem;
    }

    .comentario img {
        width: 80px;
        height: 80px;
    }

    .comentario h4 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    .coment-txt {
        margin: 0.5rem 0;
    }

    .coment-txt p {
        margin: 1rem 0;
        padding: 0 1rem 0 0;
        font-size: 0.95rem;
    }

    .cont-stars img {
        width: 30px !important;
        height: 30px !important;
    }

    footer {
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 0 0.7rem 0;
        font-size: 0.9rem;
        gap: 1rem;
    }

    .foot-links {
        order: 1;
    }
    .redes-footer {
        order: 2;
    }
    .derechos {
        order: 3;
        text-align: center;
        padding-left: 0;
        width: 100%;
        font-size: 0.9rem;
        gap: 0.3rem;
    }

    .servicio {
        margin-bottom: 5vh !important;
    }

  .servicio__contenido {
    margin-bottom: 90px;
  }

  .redes-contacto {
    backdrop-filter: blur(10px);
}

.main-serv {
    padding-top: 15vh !important;
    height: auto !important;
}

}

/* Fade transition overlay */
#transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.77,0,.175,1);
}

/* Fade in overlay (cover) */
body.loading #transition-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Fade out overlay (uncover) */
body.loaded #transition-overlay {
    opacity: 0;
    pointer-events: none;

        width: 100%;
        margin-top: 0.7rem;
        gap: 0.7rem;
    }

    .redes-footer a img {
        width: 28px;
        height: 28px;
    }

    .galeria-carrusel::before,
    .galeria-carrusel::after {
        display: none;
    }


.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
body.loading .transition-overlay {
    opacity: 1;
    pointer-events: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: azure;
}

body {
    background-color: #0d0d0d;
    font-family: "Montserrat";
}

.main-txt-cont {
    width: 30%;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    z-index: 50;
}

.main-txt-cont h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.main-txt-cont p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.jump-arrow {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.jump-arrow img {
    width: 50px;
    height: 50px;
    animation: rebote 3s infinite;
}

@keyframes rebote {
    0%, 40%, 65%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-30px);
    }
    20% {
        transform: translateY(5px);
    }
    28% {
        transform: translateY(-15px);
    }
    
    
}

.precios {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    width: 40%;
    margin: 2rem auto;
}

.serv-titulo{
    font-weight: bold;
    font-size: 1.8rem;
    color: #cd8417;
    margin-top: 1.7rem;
}

.serv-precio {
    font-size: 1.8rem;
    color: #cd8417;
    margin-top: 1.7rem;
    font-weight: bold;
}

h5 {
    font-size: 2.2rem;
    margin: 1rem 0;
}

ul {
    text-align: left;
    list-style: none;
    margin: 0 2rem;
}

li {
    margin: 1rem 0;
    font-size: 1.2rem;
}

h5 {
    width: 100%;

}

form {
    width: 100%;
    max-width: 600px;
    margin: 5rem auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

#nombre, #selec-servicio, #mensaje {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background-color: #0d0d0d;
    color: azure;
    font-size: 1rem;
    border-bottom: 2px solid #cd8417;
    margin: 5rem 0;

}

#correo, #telefono, #fecha, #hora {
    width: 45%;
    padding: 0.8rem;
    border: none;
    background-color: #0d0d0d;
    color: azure;
    font-size: 1rem;
    border-bottom: 2px solid #cd8417;
}

#mensaje {
    height: 50px;
}

option:checked,
option:active,
option:hover {
  color: #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #1a1a1a00 inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}


.btn-ama {
    color: white;
    border: 2px solid #cd8417;
    background-color: #f9a1a800;
    padding:  1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
    width: 200px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.btn-ama:hover {
    background-color: #cd8417;
    color: azure;
}
iframe {
    width: 50%;
    height: 400px;
    border: none;
    margin: 2rem auto 0 auto;
    display: block;
}

footer {
    background: #000000;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    color: #f9a1a9;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 5rem;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.derechos {
    flex: 1;
    text-align: left;
    color: #cd8417;
    font-size: 1.1rem;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 10%;
}

.derechos p {
    margin: 0;
    width: 60%;
    font-size: 0.9rem;
}

.foot-links {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: 30%;
}

.foot-links .footLogo {
    width: 100%;
    height: 60px;
    margin-bottom: 0.5rem;
}

.foot-links-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    width: 100%;
    margin-top: 0.5rem;
    justify-items: left;
    max-width: 400px;
}

.foot-links-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    margin: 0.1rem 0;
    width: 100%;
}

.foot-links-list a:hover {
    color: #cd8417;
}

.redes-footer {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 3rem;
    gap: 0.5rem;
}

.redes-footer {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.redes-footer a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s, filter 0.2s;
}

.redes-footer a img:hover {
    transform: scale(1.2);
}

@media (max-width: 480px) {

    header {
        padding: 0;
    }

    .logo img{
        width: 150px;
        display: flex;
        justify-content: center;
    }

    .hamburguesa {
        display: flex;
        z-index: 1001;
        margin: 10px 10px 0 0;
    }

    .hamburguesa .linea {
        border-radius: 0;
        transition: ease-in-out 0.3s;
    }

    .hamburguesa .linea-activa:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburguesa .linea-activa:nth-child(2) {
        opacity: 0;
    }

    .hamburguesa .linea-activa:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }

    nav {
        position: absolute;
        background-color: #090909;
        backdrop-filter: blur(20px);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        top: 0;
        right: 100vw;
        justify-content: center;
        font-size: 2rem;
        transition: ease-in-out 0.3s;
        overflow: hidden;
    }

    .cont-menu {
        width: 100%;
        flex-wrap: wrap;
        font-size: 1.6rem;
    }

    .submenu-parent {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        margin: 3rem 0 !important;
    }

    nav::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #09090900;
        backdrop-filter: blur(25px);
        z-index: -1;
    }

    .submenu-parent p{
        display: none;
    }

    .submenu {
    display: flex;
    position: relative;
    top: 100%;
    left: 0;
    background: #09090900;
    box-shadow: none;
    border-radius: 0 0 8px 8px;
    min-width: 180px;
    z-index: 100;
    flex-direction: column;
    overflow: hidden;
}

    nav.menu-active {
        right: 0;
    }
    .cuadrado:nth-child(2) {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #cd8417e3;
        position: absolute;
        top: 50px;
        left: 70vw;
        z-index: -1;
        animation: burbuja2 ease-in-out 18s infinite;
    }

    @keyframes burbuja2 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        15% {
            transform: translate(-60px, 100px) scale(1.1);
            opacity: 0.95;
        }
        30% {
            transform: translate(-120px, 220px) scale(1.2);
            opacity: 0.92;
        }
        50% {
            transform: translate(-80px, 320px) scale(1.15);
            opacity: 0.96;
        }
        70% {
            transform: translate(-30px, 80px) scale(1.05) !important;
            opacity: 0.98;
        }
        85% {
            transform: translate(0px, 350px) scale(1.09);
            opacity: 0.97;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .cuadrado:nth-child(3) {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f9a1a9;
        position: absolute;
        top: 300px;
        left: 40vw;
        z-index: -1;
        animation: burbuja3 ease-in-out 22s infinite;
    }

    @keyframes burbuja3 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        20% {
            transform: translate(80px, -60px) scale(1.13);
            opacity: 0.96;
        }
        35% {
            transform: translate(160px, -120px) scale(1.18);
            opacity: 0.93;
        }
        55% {
            transform: translate(100px, -180px) scale(1.08);
            opacity: 0.97;
        }
        75% {
            transform: translate(40px, -220px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, -260px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .cuadrado:nth-child(4) {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #cd8417;
        position: absolute;
        top: 400px;
        left: 10vw;
        z-index: -1;
        animation: burbuja4 ease-in-out 25s infinite;
    }

    @keyframes burbuja4 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        10% {
            transform: translate(100px, 60px) scale(1.12);
            opacity: 0.96;
        }
        30% {
            transform: translate(200px, 120px) scale(1.18);
            opacity: 0.93;
        }
        50% {
            transform: translate(150px, 180px) scale(1.08);
            opacity: 0.97;
        }
        70% {
            transform: translate(80px, 220px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, 260px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }
    .cuadrado:nth-child(1) {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        animation: burbuja1 ease-in-out 20s infinite;
    }

    @keyframes burbuja1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    10% {
        transform: translate(120px, 80px) scale(1.12);
        opacity: 0.96;
    }
    25% {
        transform: translate(220px, 200px) scale(1.18);
        opacity: 0.93;
    }
    40% {
        transform: translate(320px, 100px) scale(1.08);
        opacity: 0.97;
    }
    55% {
        transform: translate(180px, 300px) scale(1.52);
        opacity: 0.92;
    }
    70% {
        transform: translate(60px, 220px) scale(1.15);
        opacity: 0.95;
    }
    85% {
        transform: translate(0px, 350px) scale(1.09);
        opacity: 0.98;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}
    
    .redes {
        margin-top: 20vh;
        padding: 0.5rem;
        right: -1px;
        backdrop-filter: blur(10px);
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 100;
    }

    main {
        padding-top: 5rem;
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 2rem;
        backdrop-filter: blur(10px) !important;
        position: relative;
    }

    main img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .main-txt-cont {
        width: 90%;
        min-width: unset;
        padding: 1rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .main-txt-cont h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .main-txt-cont p {
        font-size: 1rem;
        line-height: 1.3;
    }

    form {
        max-width: 95vw;
        margin: 2rem auto;
        gap: 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    #nombre, #selec-servicio, #mensaje,
    #correo, #telefono, #fecha, #hora {
        width: 100%;
        margin: 1rem 0;
        font-size: 1rem;
    }

    #mensaje {
        height: 50px;
    }

    .btn-ama {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem;
    }

    iframe {
        width: 100%;
        height: 400px;
        border: none;
        margin-top: 2rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0 1rem 0;
        font-size: 1rem;
    }

    .derechos, .foot-links, .redes-footer {
        width: 100%;
        text-align: center;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .foot-links-list {
        grid-template-columns: 1fr;
        max-width: 90vw;
        gap: 0.5rem;
    }

    .redes-footer {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        padding-right: 0;
    }

    .foot-links {
        order: 1;
    }
    .redes-footer {
        order: 2;
    }
    .derechos {
        order: 3;
        text-align: center;
        padding-left: 0;
        width: 100%;
        font-size: 0.9rem;
        gap: 0.3rem;
    }

    .precios {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap !important;
    text-align: center;
    width: 100% !important;
    margin: 0 !important;
}

.precios h5 {
    width: 100% !important;
}

.serv-titulos {
    font-size: 1rem;
    color: #cd8417;
    margin: 0;
    max-width: 85vw;
}

.serv-titulos li{
    font-size: 1rem;
}

.serv-precios {
    max-width: 55vw;
    margin: 0;
}

.serv-precios li{
    font-size: 1rem;
}

.circulo:nth-child(2){
        left: 40vw !important;
    }
}

@media (max-width: 255px) {
    .serv-titulos li {
        font-size: 0.7rem;
    }

    .serv-precios {
        max-width: 100%;
    }

    .serv-precios li {
        font-size: 0.7rem;
    }

    .body-contacto {
        overflow-x: hidden !important;
    }

    .circulo:nth-child(2){
        left: 30vw !important;
    }
}

.circulo:nth-child(2) {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #cd8417e3;
        position: absolute;
        top: 50px;
        left: 70vw;
        z-index: -1;
        animation: burbuja2 ease-in-out 18s infinite;
    }

    @keyframes burbuja2 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        15% {
            transform: translate(-60px, 100px) scale(1.1);
            opacity: 0.95;
        }
        30% {
            transform: translate(-120px, 180px) scale(1.2);
            opacity: 0.92;
        }
        50% {
            transform: translate(-80px, 320px) scale(1.15);
            opacity: 0.96;
        }
        70% {
            transform: translate(-30px, 180px) scale(1.05);
            opacity: 0.98;
        }
        85% {
            transform: translate(0px, 250px) scale(1.09);
            opacity: 0.97;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .circulo:nth-child(3) {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f9a1a9;
        position: absolute;
        top: 300px;
        left: 40vw;
        z-index: -1;
        animation: burbuja3 ease-in-out 22s infinite;
    }

    @keyframes burbuja3 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        20% {
            transform: translate(80px, -60px) scale(1.13);
            opacity: 0.96;
        }
        35% {
            transform: translate(160px, -120px) scale(1.18);
            opacity: 0.93;
        }
        55% {
            transform: translate(100px, -180px) scale(1.08);
            opacity: 0.97;
        }
        75% {
            transform: translate(40px, -120px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, -200px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }

    .circulo:nth-child(4) {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #cd8417;
        position: absolute;
        top: 200px;
        left: 10vw;
        z-index: -1;
        animation: burbuja4 ease-in-out 25s infinite;
    }

    @keyframes burbuja4 {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        10% {
            transform: translate(100px, 60px) scale(1.12);
            opacity: 0.96;
        }
        30% {
            transform: translate(100px, 120px) scale(1.18);
            opacity: 0.93;
        }
        50% {
            transform: translate(150px, 180px) scale(1.08);
            opacity: 0.97;
        }
        70% {
            transform: translate(80px, 170px) scale(1.15);
            opacity: 0.95;
        }
        90% {
            transform: translate(0px, 190px) scale(1.09);
            opacity: 0.98;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
    }
    .circulo:nth-child(5) {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #f9a1a9; /* rosa plano */
        position: absolute;
        top: 100px;
        left: 10vw;
        z-index: -1;
        animation: burbuja1 ease-in-out 25s infinite;
    }

    @keyframes burbuja1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    10% {
        transform: translate(120px, 80px) scale(1.12);
        opacity: 0.96;
    }
    25% {
        transform: translate(120px, 200px) scale(1.18);
        opacity: 0.93;
    }
    40% {
        transform: translate(190px, 100px) scale(1.08);
        opacity: 0.97;
    }
    55% {
        transform: translate(180px, -200px) scale(1.52);
        opacity: 0.92;
    }
    70% {
        transform: translate(60px, 220px) scale(1.15);
        opacity: 0.95;
    }
    85% {
        transform: translate(0px, 50px) scale(1.09);
        opacity: 0.98;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}


@media (max-width: 1280px){


    .body-servicios .banner-text-cont {
        width: 60%;
    }

    .body-servicios .banner-text-cont h3 .banner-text-cont h2,.body-servicios .banner-text-cont p{
        margin-bottom: 1rem;
     }

     .body-servicios .banner-text-cont p {
        font-size: .8rem;
     }

     .body-servicios .banner-text-cont h2{
        font-size: 2rem;
     }

    .body-servicios main {
        margin-top: 0;
    }

    .body-servicios main img {
        width: auto;
        height: 60vh;
        border-radius: 30px;
        object-fit: cover;
    }

    .body-servicios .servicios-lista li{
        margin: .3rem 0;
        font-size: .8rem;
    }

    .btn-ama {
        margin-top: 2rem;
    }

    .btn-ama:hover {
        background-color: #f9a1a9;
    }
}

 .redes-contacto {
    backdrop-filter: none;
}

html {
  scroll-behavior: smooth;
}

.body-contacto main{
    padding-top: 10vh !important;
    margin-top: 0 !important;
    justify-content: space-around;
    padding-top: 10vh !important;
}

.contact-banner-image{
    width: auto;
    height: 75vh;
    max-height: 75vh;
}

.body-contacto {
    overflow-x: hidden !important;
}
