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

:root {
    --btn-principal:  #df1178;
    --btn-segundaro: #8b436d;  
    --fondo-general: #e6cede;
}
body {
    padding-top: 70px;
}

/* =========================
   NAVBAR
========================= */
.nav{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: linear-gradient(180deg, #ffffff, #e6cede);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .03);
    opacity: .95;
}
/* =========================
   LOGO
========================= */
.logo-contenedor{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 30px;
    color: #111;
}

.logo-contenedor img{
    width: 100px;
    height: 100px;
}
/* =========================
   MENÚ
========================= */
.nav-menu{
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a{
    position: relative;
    color: #111;
    transition: var(--transicion);
}

.nav-menu a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1.5px;
    background: var(--h1);
    transition: var(--transicion);
}

.nav-menu a:hover{
    opacity: .75;
}

.nav-menu a:hover::after{
    width: 100%;
}
.btn-principal{
    color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 15px;
    background: var(--btn-principal);
    border: 1px solid transparent;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
}

.btn-principal:hover{
    background: var(--hover-boton);
    transform: translateY(-2px);
}
/* =========================
   MENÚ MOBILE
========================= */
.boton-menu{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.boton-menu span{
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px;
    background:#111;
    border-radius: 999px;
    transition: .3s;
}
.boton-menu.active span:nth-child(1){
        transform: rotate(45deg) translate(5px, 5px);
    }
.boton-menu.active span:nth-child(2){
        opacity: 0;
    }
.boton-menu.active span:nth-child(3){
        transform: rotate(-45deg) translate(5px, -5px);
    }

@media (max-width: 768px){
    .logo-contenedor{
        font-size: 20px;
    }
    .logo-contenedor img{
        width: 70px;
        height: 70px;
    }
    .boton-menu{
        display: block;
        z-index: 1000;
    }

    .nav-menu{
        position: fixed;
        top: 0;
        right: -100%;

        width: 75%;
        height: 100vh;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;

        background: #111;
        transition: .35s ease;
    }

    .nav-menu.active{
        right: 0;
    }
    .boton-menu span{
        background: var(--btn-principal);
    }
    .nav-menu a{
        color: #fff;
        font-size: 20px;
    }
    .nav-menu a::after{
        background: #fff;
    }
    .nav .btn-principal{
        display: none;
    }
}

.imagen-principal{
    display: flex;
    position: relative;
    height: 86vh;
    background-image: url("../img/portada.avif");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    align-items: center;
}
.imagen-principal::before{
    content: "";

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to right,
        var(--fondo-general),
        rgba(255, 255, 255, 0.39) 25%,
        rgba(255, 255, 255, 0.233) 40%,
        rgba(255,255,255,0) 50%
    );

    z-index: 1;
}
.contenido {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    width: 100%;
    height: 86vh;
    gap: 80px;
    background: var(--fondo-general);
}
.titulo-portada {
    padding: 50px 50px;

}
.titulo-portada span {
    font-size: 14px;
    color: #49163c;
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.titulo-portada h1 {
    font-size: 50px;
    font-weight: bold;
    color : #8b436d;
    
}
.titulo-portada h2 {
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
    color: #8b436d;
}
.titulo-portada p {
    font-size: 17px;
    margin-top: 20px;
    line-height: 1.5;
    color: #49163c;
}
@media (max-width: 768px) {

    .contenido {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
    }
    .titulo-portada {
        padding: 20px 15px;
    }
    .titulo-portada h1 {
        font-size: 25px;
    }
    .titulo-portada h2 {
        font-size: 18px;
    }
    .titulo-portada p {
        font-size: 14px;
    }
}


.boton-entrada {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}
.btn-primario {
    background: var(--btn-principal);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 10px;
}
.btn-primario:hover {
    opacity: 0.75;
    transition: 0.5s;
    color: #49163c;
}
.btn-segundario {
    background: var(--btn-segundaro);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
}
.btn-segundario:hover {
    opacity: 0.75;
}
@media (max-width: 768px) {
    .titulo-portada  {
        text-align: center;
    }
    .titulo-portada h1 {
        font-size: 35px;
        padding-top: 40px;
    }
    .titulo-portada h2 {
        font-size: 17px;
    }
    .titulo-portada p {
        font-size: 14px;;
    }
    .boton-entrada {
    }
    
}
.bienvenida {
    width: 100%;
    height: 470px;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 80px;
}
.texto-bienvenida h2 {
    font-size: 40px;
    font-weight: bold;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.texto-bienvenida p {
    font-size: 17px;
    line-height: 1.5;
    color: #49163c;
    margin-bottom: 20px;
    text-align: center;
}
.texto-bienvenida h3 {
    font-size: 25px;
    font-weight: bold;
    color: #8b436d;
    text-align: center;
}
.formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    text-align: center;
    padding: 20px;
}
.formulario input {
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    width: 60%;
    background-color: #f0a8d9;

}
.formulario input:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}
.formulario button {
    background: #8b436d;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 25px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 20px;
}
.formulario button:hover {
    background: #df1178;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .bienvenida {
        padding: 20px;
        height: auto;
    }
    .texto-bienvenida h2 {
        font-size: 25px;
    }
    .texto-bienvenida p {
        font-size: 14px;
    }
    .texto-bienvenida h3 {
        font-size: 18px;
    }
    .formulario input {
        font-size: 14px;
        width: 90%;
        padding: 10px 15px;
    }
    .formulario button {
        font-size: 14px;
        padding: 10px 15px;
    }
}
.servicios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e6cede;
    padding: 80px;
}
.servicios h2 {
    font-size: 40px;
    font-weight: bold;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.servicios p {
    font-size:17px;
    line-height: 1.5;
    color: #49163c;
    margin-bottom: 40px;
    text-align: center;
}
.lista-servicios {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(150px, 1fr));
    gap: 30px;
    width: 100%;
    justify-content: space-between;

}
.servicio {
    background: #f0a8d9;
    box-shadow: 0 10px 25px rgba(180, 120, 160, 0.25);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 15px;
    height: auto;
}
.servicio:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(180, 120, 160, 0.35);
}

.servicio img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}
.servicio h3 {
    font-size: 22px;
    font-weight: bold;
    color: #8b436d;
    margin-top: 20px;
}
.servicio p {
    font-size: 17px;
    color: #49163c;
    margin-top: 10px;
}
.servicio button {
    background: #8b436d;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.servicio button:hover {
    background: #df1178;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .servicios {
        width: 100%;
        height: auto;
        padding: 15px;
    }
    .servicios h2 {
        font-size: 25px;
    }
    .servicios p {
        font-size: 14px;
    }
    .lista-servicios {
       display: block;
       align-content: center;
       align-items: center;

    }
    .servicio img {
        width: 100%;
        height: 400px;
        border-radius: 20px;
    }
    .servicio h3 {
        font-size: 18px;
    }
    .servicio p {
        font-size: 14px;
    }
    .servicio button {
        font-size: 14px;
        padding: 8px 15px;
    }
}
.elegirnos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 80px;
}
.elegirnos h2 {
    font-size: 40px;
    font-weight: bold;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;

}
.elegirnos h3{
    font-size: 25px;
    font-weight: bold;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.elegirnos p {
    font-size: 17px;
    line-height: 1.5;
    color: #49163c;
    margin-bottom: 40px;
    text-align: center;
}
.razones {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(150px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
}
.razon {
    background: #f0a8d9;
    border: none;
    border-radius: 25px;
    text-align: center;
}
.razon:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(180, 120, 160, 0.35);
}
.razon h3 {
    font-size: 20px;
    font-weight: bold;
    color: #8b436d;
    margin: 20px;
}
.razon p {
    font-size: 17px;
    color: #49163c;
    margin: 10px 20px 20px 20px;
}
@media (max-width: 768px) {
    .elegirnos {
        padding: 25px;
    }
    .elegirnos h2 {
        font-size: 25px;
    }
    .elegirnos h3 {
        font-size: 18px;
    }
    .elegirnos p {
        font-size: 14px;
    }
    .razones {
       display: block;
       align-content: center;
       align-items: center;
    }
    .razon h3 {
        font-size: 17px;
        padding: 15px;
        margin: 5px;
    }
    .razon p {
        font-size: 14px;
        
    }
    .compromiso h2 {
        font-size: 25px;
    }
}
.compromiso {
    margin-top: 40px;
    width: 100%;
    height: 200px;
    justify-content: center;
    align-items: center;
}
.compromiso h2 {
    color: #8b436d;
    margin-bottom: 30px;
}
.compromiso p {
    font-size: 17px;
    color: #49163c;
    text-align: center;
    line-height: 3;
}
.pensando {
    display: flex;
    background: #ffffff;
    width: 100%;
    height: auto;
    margin-top: 150px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 10px 50px;
}
.pensando h3 {
    font-size: 30px;
    font-weight: 800;
}
.pensando h4 {
    text-align: center;
    font-size: 17px;
    color: #49163c;
}
.pensando img {
    width: 300px;
    height: auto;
    border: none;
    border-radius: 30px;
}
.pensando a {
    margin-top: 40px;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
}
.pensando button {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 15px;
    border: none;
    background: #8b436d;
    cursor: pointer;
}
.pensando button:hover {
    background: #df1178;
    transition: 0.5s;
}
@media (max-width:768px) {
    .pensando {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .pensando h3{
        font-size: 25px;
    }
    .pensando h4 {
        font-size: 18px;
    }
    .pensando button {
        margin-bottom: 10px;
        font-size: 16px;

    }
    .pensando img {
        width: 100%;
        height: auto;
    }
}
.accion {
    display: block;
    width: 100%;
    height: auto;
    padding: 80px 50px;
    background: #e6cede;
    justify-items: center;
    justify-content: center;
}
.accion h2 {
    font-size: 40px;
    color: #8b436d;
}
.accion h3 {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #8b436d;
}
.accion p {
    font-size: 17px;
    color: #49163c;
    text-align: center;

}
.accion a{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    margin-top: 50px;  
}
.accion button{
    padding: 10px 25px;
    border-radius: 15px;
    border: none;
    background: #8b436d;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff
}
.accion button:hover {
    background:#df1178;
    transition: 0.5s;
}
.ubicacion {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 30px 30px;
}
.ubicacion h2 {
    font-size: 40px;
    color: #8b436d;
}
.ubicacion h3 {
    font-size: 25px;
    color: #8b436d;
    margin-top: 20px;
    margin-bottom: 20px;
}
.ubicacion p{
    font-size: 17px;
    color: #49163c;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    
}
.gmap_canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ubicacion h4 {
    color:#8b436d;
    font-size: 17px;
}
.ubicacion h5 {
    color:#000000;
    margin-bottom: 10px;
}
@media(max-width: 768px) {
    .ubicacion {
        width: 100%;
        padding: 20px 10px
    }
    .titulo-ubicacion h2 {
        font-size: 25px;
    }
    .titulo-ubicacion h3 {
        font-size: 18px;
    }
    .titulo-ubicacion p {
        font-size: 14px;
    }
    .gmap_canvas iframe{
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }
    .accion {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 25px 15px;
    }
    .accion h2 {
        font-size: 25px;
    }
    .accion h3 {
        font-size: 18px;
    }
    .accion p{
        font-size: 14px;
    }
    .accion button {
        font-size: 17px;
    }
}
footer{
    display:flex;
    flex-direction: row;
    padding: 30px 50px;
    justify-content: space-between;
    width: 100%;
    height: auto;
    background: #000000;
    color: #ffffff;
}
.logo-footer{
    text-align: center;
   
}
.logo-footer h3{
    font-size: 18px;
    color: #dd9cdd;

}
.logo-footer img {
    width: 150px;
    height: auto;
}
.contenido-info {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    text-align: center;
}
.contenido-info h2{
    font-size: 25px;
    color:#8b436d;
    padding-bottom: 20px;
}
.contenido-info a{
    color:#e9e9e9;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    line-height: 2;
    justify-content: center;
}
.contenido-info a:hover{
    color: #df1178;
    transition: 0.5s;
}
.copyright {
    width: 100%;
    height: 80px;
    background: #000000;
    text-align: center;
    font-size: 13px;
    color: #777;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}
@media (max-width: 768px) {
    footer{
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .logo-footer img {
        width: 100px;
        height: auto;
        margin-bottom: 10px;
    }
    .logo-footer h3 {
        font-size: 14px; 
        text-align: center;
        margin-bottom: 40px;
    }
    .contenido-info {
        flex-direction: column;
        width: 100%;
    }
    .contenido-info h2 {
        font-size: 20px;
    }

}

/*contendo de la pagina de servicios*/

.contenido-servicios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    background: #ffffff;
}
.imagen-portada-nosotros {
    width: 100%;
    height: auto;
    border-radius: 30px;
    border: 1px solid #111;
}
.texto-servicio {
    top: 30%;
    width: 100%
}
.texto-servicio h1 {
    font-size: 50px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.texto-servicio h2 {
    font-size: 25px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    
}
.lista-servicios-manicure {
    display: flex;
    width: 100%;
    height: auto;
    padding: 70px 40px;
    justify-content: center;
}
.servicio-manicure h2 {
    font-size: 40px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;

}
.servicio-manicure h4 {
    font-size: 17px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.maniypedi h3{
    font-size: 20px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 10px;

}
.maniypedi h2 {
    font-size: 25px;
    color : #8b436d;
}
.maniypedi h4 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 0px;
}
.maniypedi p {
    font-size: 17px;
    text-align: left;
    margin-bottom: 10px;
}

.lista-servicios-manicure-1{
    display: flex;
    width: 100%;
    height: auto;
    padding: 80px 50px;
    justify-content: center;

}
.servicio-manicure-1 h2 {
    font-size: 40px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.maniypedi-medio h2 {
    font-size: 25px;
    color : #8b436d;
}
.maniypedi-medio h3 {
    font-size: 20px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}
.maniypedi-medio h4 {
    font-size: 20px !important;
    text-align: left !important;
    margin-bottom: 0px !important;
}
.maniypedi-medio p {
    font-size: 17px;
    text-align: left;
    margin-bottom: 10px;
}

.servicio-manicure-1 h4 {
    font-size: 17px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.texto-manicure-1{
    display: flex;
    width: 100%;
    height: auto;
    background: #ffffff;
    justify-content:space-between;
    align-items: center;
    text-align: center;
}
.texto-manicure {
    display: flex;
    width: 100%;
    height: auto;
    background: hsl(0, 0%, 100%);
    justify-content:space-between;
    align-items: center;
    
}
.escalera-container-1{
  position: relative; /* Contenedor padre como referencia */
  width: 500px;       /* Ajusta según tu diseño */
  height: 400px;
}

.escalera-container {
  position: relative; /* Contenedor padre como referencia */
  width: 500px;       /* Ajusta según tu diseño */
  height: 400px;
  margin-right: 100px;
  
}
.img-1-1 {
  position: relative; 
  z-index: 1;
  margin-left: 50px;        /* Capa inferior */
  width: 280px;
  height: auto;
  border: 5px solid #f0a8d9;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  
}
.img-2-2 {
  position: absolute;
  top: 200px;          /* Desplazamiento vertical (el escalón) */
  right: 100px;        /* Desplazamiento horizontal para encimar */
  z-index: 2;         /* Capa superior */
  width: 280px;
  height: auto;
  border: 5px solid #f0a8d9;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-right: 30%;
}


.img-1 {
  position: relative; 
  z-index: 1;        /* Capa inferior */
  width: 280px;
  height: auto;
  border: 5px solid #f0a8d9;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  margin-left: 50%;
  
}

.img-2 {
  position: absolute;
  top: 200px;          /* Desplazamiento vertical (el escalón) */
  left: 80px;        /* Desplazamiento horizontal para encimar */
  z-index: 2;         /* Capa superior */
  width: 280px;
  height: auto;
  border: 5px solid #f0a8d9;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .contenido-servicios{
        width: 100%;
        height: auto;
        margin-top: 40px;
        background: #ffffff;
    }
    
    .texto-servicio {
    position: absolute;
    top: 25%;
    width: 100%;
    }
    .texto-servicio h1 {
    font-size: 25px;
    color : #8b436d;
    font-weight: bold;
    margin-top: -12px;
    text-align: center;
    }
    .texto-servicio h2 {
    font-size: 18px;
    color : #72144b;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    }
    .servicio-manicure h2 {
    font-size: 25px;
    }
    .servicio-manicure h4 {
    font-size: 18px;
    color: #8b436d
    }
    .maniypedi h2{
        font-size: 21px;

    }
    .maniypedi p{
        font-size: 14px;
        color:#49163c
    }
    .texto-manicure {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .escalera-container {
        width: 100%;
        height: 400px;
    }
    .img-1 {
        width: 200PX;
        height: auto;
        margin-top: 20px ;
        
    }
    .img-2 {
        width: 200PX;
        height: auto;
        
    }
    .lista-servicios-manicure-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 70px 40px;
        justify-content: center;
    }
    .texto-manicure-1{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;

    } 
    .img-1-1 {
        width: 200PX;
        height: auto;
        left: 20px;
        
    }
    .img-2-2 {
        width: 200PX;
        height: auto;
        right: 0px;
    }
    .escalera-container-1 {
        width: 100%;
        height: 500px;
    }
    .servicio-manicure-1 h2 {
        font-size: 25px;
    }
     .servicio-manicure-1 h4{
        font-size: 18px;
     } 
    .maniypedi-medio h2{ 
        font-size: 21px;

    }
    .maniypedi-medio h4{
        font-size: 18px;
    }
    .maniypedi-medio p{
        font-size: 14px;
        color:#49163c
    }

}
.somos {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 60px;
    line-height: 2;
}
.somos h2{
    font-size: 40px;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.somos p {
    font-size: 17px;
    color: #49163c;
    width: 600px
    
}

.card-somos {
  transition: all 0.3s ease;
  padding: 15px 25px;
  border-radius: 25px;
}

.card-somos:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  background:#d6d1d1;
}
@media (max-width: 768px) {

    .somos {
        width: 100%;
        height: auto;
        padding: 20px;
        text-align: center;
    }
    .somos h2 {
        font-size: 25px;
    }
    .somos p {
        font-size: 14px;
        width: 300px;
    }
}
.filosofia {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    background: #e6cede;
    padding: 60px;
}
.filosofia h2 {
    font-size: 40px;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.filosofia-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.filosofia-contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: auto;
    border: 1px solid #8b436d;
    border-radius: 25px;
    padding: 20px;
    transition: all 0.3s ease;
}
.filosofia-contenido h3 {
    font-size: 21px;
    color: #8b436d;
    margin-bottom: 20px;
}
.filosofia-contenido p {
    font-size: 17px;
    color: #49163c;
    text-align: center;
}
.filosofia-contenido:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    background:#d6d1d1;
}
@media (max-width: 768px) {
    .filosofia {
        padding: 20px;
        height: auto;
    }
    .filosofia h2 {
        font-size: 25px;
    }
    .filosofia-card {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .filosofia-contenido {
        width: 100%;
        height: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .filosofia-contenido h3 {
        font-size: 18px;
    }
    .filosofia-contenido p {
        font-size: 14px;
    }
 }
.objetivo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 40px;
    background: #ffffff;
    padding: 60px;
    text-align: center;
}
.objetivo-card  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 200px;
    background: #e6cede;
    padding: 60px;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.objetivo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    background:#d6d1d1;
}
.objetivo-card h2 {
    font-size: 25px;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.objetivo-card p {
    font-size: 17px;
    color: #49163c;
    text-align: center;
}
@media (max-width: 768px) {
    .objetivo-card{
        width: 280px;
        height: auto;
        padding: 20px 20px;

    }
    .objetivo-card h2 {
        font-size: 21px;
    }
    .objetivo-card p {
        font-size: 14px;
    }
}
.accion-nosotros {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #e6cede;
    padding: 60px 80px;
    gap: 60px;

    text-align: center;
}
.accion-nosotros h3 {
    font-size: 25px;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.accion-nosotros img {
    width: 250px;
    height: auto;
    border: none;
    border-radius: 30px;
    margin-right: 50px;
    transition: all 0.4s ease;
}
.accion-nosotros img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
    .accion-nosotros {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
        text-align: center;

    }
    .accion-nosotros h3 {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }
    .accion-nosotros img {
        width: 200px;
        height: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.contacto {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding:60px;
    text-align: center;
    gap: 40px;
}
.contacto-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: auto;
}
.contacto-texto h2 {
    font-size: 40px;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.contacto-texto h3 {
    font-size: 25px;
    color: #8b436d;
    margin-bottom: 20px;
    text-align: center;
}
.contacto-texto p {
    font-size: 17px;
    line-height: 1.5;
    color: #49163c;
    margin-bottom: 40px;
    text-align: center;
}
.contacto-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    
}
.contacto-card {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 200px;
    border: 1px solid #8b436d;
    border-radius: 25px;
    padding: 20px;
    transition: all 0.3s ease;
}
.contacto-card h2 {
    font-size: 24px;
    color: #8b436d;
    margin-bottom: 20px;
    
}
.contacto-card h3 {
    font-size: 20px;
    color: #8b436d;
}
.contacto-card p {
    font-size: 17px;
    color: #49163c;
    margin-bottom: 10px;
}
.llegar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding:60px;
    text-align: center;
    gap: 40px;
}
.llegar h2 {
    font-size: 40px;
    color: #8b436d;
    margin-bottom: 15px;
    text-align: center;
}
.llegar p{
    font-size: 17px;
    color: #49163c;
    text-align: center;
}
@media (max-width: 768px) {
    .contacto {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 15px;
    }
    .contacto-texto {
        width: 100%;
        height: auto;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .contacto-texto h2{
        font-size: 25px;
    }
    .contacto-texto h3{
        font-size: 18px;
    }
    .contacto-texto p {
        font-size: 14px;
    }
    .contacto-info {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 20px;
    }
    .contacto-card {
        width: 100%;
        height: auto;
        border: 1px solid #8b436d;
        border-radius: 25px;
    }
    .contacto-card h2 {
        font-size: 21px;
        margin-bottom: 10px;
        
    }
    .contacto-card h3 {
        font-size: 18px;
        margin-bottom: 10px;

    }
    .contacto-card p {
        font-size: 14px;

    }
    .llegar {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    .llegar h2 {
        font-size: 25px;
        text-align: center;
        margin-bottom: 5px;
    }
    .llegar p{
        font-size: 14px;
        color: #49163c;
        text-align: center;
    }
    .llegar iframe {
        width: 100%;
        height: 350px;
        margin-bottom: 20px;
        border-radius: 20px;
    }
}
/* ===== SECCIÓN CONTACTO ===== */
.contacto-formulario {
  padding: 80px 20px;
  background: #e6cede;
  display: flex;
  justify-content: center;
}

.formulario-contenedor {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== TÍTULOS ===== */
.formulario-contenedor h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1f1f1f;
}

.formulario-subtitulo {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ===== CAMPOS ===== */
.campo-formulario {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.campo-formulario label {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.campo-formulario textarea {
  resize: none;
}

/* ===== FOCUS ===== */
.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
  outline: none;
  border-color: #c9a86a;
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.15);
}

/* ===== BOTÓN ===== */
.btn-reserva {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #dd9cdd, #8b436d);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reserva:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(201, 168, 106, 0.35);
}

/* ===== NOTA ===== */
.formulario-nota {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 20px;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .formulario-contenedor {
    padding: 40px 25px;
  }

  .formulario-contenedor h2 {
    font-size: 26px;
  }
}
/* ======================================
   YAKELIN SUCCESS PAGE — LUXURY STYLE
====================================== */

/* =========================
   RESERVAS - BLOQUE AISLADO
   (no toca header/nav)
   ========================= */

.resv-main{
  padding-top: 40px;              /* ✅ lo que pediste */
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Fondo suave del bloque (sin afectar body global) */
.resv-main{
  position: relative;
}
.resv-main::before{
  content:"";
  position:absolute;
  inset: -40px 0 auto 0;
  height: 380px;
  pointer-events:none;
  background:
    radial-gradient(700px 380px at 10% 10%, rgba(240,168,217,0.32), transparent 60%),
    radial-gradient(650px 360px at 90% 0%, rgba(212,175,55,0.18), transparent 55%);
  filter: blur(0.2px);
  z-index: -1;
}

/* HERO */
.resv-hero{
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.70));
  border: 1px solid rgba(212,175,55,0.20);
  box-shadow: 0 16px 44px rgba(0,0,0,0.08);
  overflow:hidden;
  position: relative;

  transform: translateY(10px);
  opacity: 0;
  animation: resvFadeUp .6s ease forwards;
}
.resv-hero::after{
  content:"";
  position:absolute;
  right:-80px;
  top:-120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240,168,217,0.40), transparent 60%);
  filter: blur(2px);
}

.resv-hero__badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240,168,217,0.20);
  border: 1px solid rgba(240,168,217,0.35);
  color: #7a2d57;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: .88rem;
}

.resv-hero__title{
  margin: 12px 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  color: #1b1b1b;
}
.resv-hero__text{
  margin: 0;
  max-width: 70ch;
  color: rgba(0,0,0,0.72);
  font-size: 1rem;
  line-height: 1.6;
}
.resv-hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.resv-hero__note{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(0,0,0,0.62);
  font-size: .92rem;
}

.resv-dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: #d4af37;
  box-shadow: 0 0 0 6px rgba(212,175,55,0.18);
}

/* BOTONES */
.resv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.resv-btn--primary{
  color: #1a1a1a;
  background: linear-gradient(135deg, #f6e27a, #d4af37, #b8962e);
  box-shadow: 0 14px 30px rgba(212,175,55,0.26);
}
.resv-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(212,175,55,0.34);
}
.resv-btn--ghost{
  color: #7a2d57;
  background: rgba(240,168,217,0.16);
  border: 1px solid rgba(240,168,217,0.40);
}
.resv-btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(240,168,217,0.22);
  border-color: rgba(212,175,55,0.26);
}

/* GRID */
.resv-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 860px){
  .resv-grid{ grid-template-columns: 1fr; }
}

.resv-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  position: relative;

  transform: translateY(10px);
  opacity: 0;
  animation: resvFadeUp .6s ease forwards;
}
.resv-card:nth-child(2){ animation-delay: .05s; }
.resv-card:nth-child(3){ animation-delay: .10s; }
.resv-card:nth-child(4){ animation-delay: .15s; }
.resv-card:nth-child(5){ animation-delay: .20s; }
.resv-card:nth-child(6){ animation-delay: .25s; }

.resv-card__title{
  margin: 0 0 10px;
  color: #1b1b1b;
  font-size: 1.1rem;
}
.resv-card__text{
  margin: 0;
  color: rgba(0,0,0,0.70);
  line-height: 1.6;
}

.resv-card--wide{
  grid-column: 1 / -1;
}

/* LISTAS */
.resv-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,0.70);
  line-height: 1.7;
}
.resv-list li{
  margin: 6px 0;
}

/* highlight */
.resv-highlight{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.28);
  background: linear-gradient(180deg, rgba(246,226,122,0.18), rgba(240,168,217,0.10));
  color: rgba(0,0,0,0.76);
}

/* pills */
.resv-pillbox{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.resv-pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240,168,217,0.18);
  border: 1px solid rgba(240,168,217,0.35);
  color: #7a2d57;
  font-weight: 700;
  font-size: .92rem;
}

/* footer */
.resv-footer{
  margin-top: 14px;
  border-radius: 22px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.06);
}
.resv-footer__text{
  margin: 0;
  color: rgba(0,0,0,0.66);
  line-height: 1.65;
}

/* Acciones card */
.resv-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

/* Animación */
@keyframes resvFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===========================
   TERMINOS & CONDICIONES
   =========================== */

.term-main{
  padding-top:40px;
  padding-left:16px;
  padding-right:16px;
  padding-bottom:60px;
  max-width:1100px;
  margin:0 auto;
  position:relative;
}

/* fondo suave */
.term-main::before{
  content:"";
  position:absolute;
  inset:-40px 0 auto 0;
  height:340px;
  background:
    radial-gradient(600px 360px at 15% 0%, rgba(240,168,217,.30), transparent 60%),
    radial-gradient(600px 360px at 90% 0%, rgba(212,175,55,.20), transparent 55%);
  z-index:-1;
}

/* HERO */
.term-hero{
  background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(255,255,255,.75));
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(212,175,55,.25);
  box-shadow:0 18px 44px rgba(0,0,0,.08);

  opacity:0;
  transform:translateY(12px);
  animation:termUp .6s ease forwards;
}

.term-badge{
  display:inline-block;
  background:rgba(240,168,217,.25);
  border:1px solid rgba(240,168,217,.45);
  padding:7px 12px;
  border-radius:999px;
  font-weight:700;
  color:#7a2d57;
}

.term-title{
  margin:12px 0 8px;
  font-size:clamp(1.7rem,2.8vw,2.3rem);
}

.term-intro{
  margin:0;
  color:rgba(0,0,0,.72);
  line-height:1.65;
}

/* GRID */
.term-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
@media(max-width:860px){
  .term-grid{grid-template-columns:1fr;}
}

/* CARD */
.term-card{
  background:rgba(255,255,255,.82);
  border-radius:22px;
  padding:18px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 32px rgba(0,0,0,.06);

  opacity:0;
  transform:translateY(10px);
  animation:termUp .6s ease forwards;
}
.term-card h2{margin-top:0;}
.term-card ul{padding-left:18px;}
.term-card li{margin:6px 0;color:rgba(0,0,0,.7);}

.term-wide{grid-column:1/-1;}

.term-highlight{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(246,226,122,.25),rgba(240,168,217,.12));
  border:1px solid rgba(212,175,55,.3);
  font-weight:600;
}

/* tags */
.term-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.term-tags span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(240,168,217,.22);
  border:1px solid rgba(240,168,217,.4);
  font-weight:700;
  color:#7a2d57;
}

/* BOTONES */
.term-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.term-btn{
  text-decoration:none;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  transition:.2s;
}

.term-primary{
  background:linear-gradient(135deg,#f6e27a,#d4af37,#b8962e);
  color:#111;
  box-shadow:0 14px 30px rgba(212,175,55,.3);
}
.term-primary:hover{transform:translateY(-2px);}

.term-outline{
  background:rgba(240,168,217,.18);
  border:1px solid rgba(240,168,217,.45);
  color:#7a2d57;
}
.term-outline:hover{background:rgba(240,168,217,.28);}

/* FOOTER */
.term-footer{
  margin-top:16px;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(0,0,0,.05);
  text-align:center;
  color:rgba(0,0,0,.65);
}

/* animación */
@keyframes termUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ===========================
   PRIVACIDAD (aislado)
   =========================== */

.priv-main{
  padding-top:40px;
  padding-left:16px;
  padding-right:16px;
  padding-bottom:60px;
  max-width:1100px;
  margin:0 auto;
  position:relative;
}

.priv-main::before{
  content:"";
  position:absolute;
  inset:-40px 0 auto 0;
  height:360px;
  background:
    radial-gradient(640px 380px at 14% 0%, rgba(240,168,217,.32), transparent 60%),
    radial-gradient(620px 360px at 92% 0%, rgba(212,175,55,.22), transparent 55%);
  z-index:-1;
}

/* HERO */
.priv-hero{
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.78));
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(212,175,55,.25);
  box-shadow:0 18px 44px rgba(0,0,0,.08);

  opacity:0;
  transform:translateY(12px);
  animation:privUp .6s ease forwards;
}

.priv-badge{
  display:inline-block;
  background:rgba(240,168,217,.25);
  border:1px solid rgba(240,168,217,.45);
  padding:7px 12px;
  border-radius:999px;
  font-weight:800;
  color:#7a2d57;
}

.priv-title{
  margin:12px 0 8px;
  font-size:clamp(1.7rem,2.8vw,2.3rem);
}

.priv-intro{
  margin:0;
  color:rgba(0,0,0,.72);
  line-height:1.65;
}

.priv-updated{
  margin-top:14px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(246,226,122,.20),rgba(240,168,217,.10));
  border:1px solid rgba(212,175,55,.28);
  color:rgba(0,0,0,.75);
  font-weight:700;
}

/* GRID */
.priv-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
@media(max-width:860px){
  .priv-grid{grid-template-columns:1fr;}
}

/* CARD */
.priv-card{
  background:rgba(255,255,255,.84);
  border-radius:22px;
  padding:18px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 32px rgba(0,0,0,.06);

  opacity:0;
  transform:translateY(10px);
  animation:privUp .6s ease forwards;
}

.priv-card h2{
  margin:0 0 10px;
  font-size:1.06rem;
}

.priv-card p{
  margin:0 0 10px;
  color:rgba(0,0,0,.72);
  line-height:1.65;
}

.priv-card ul{
  padding-left:18px;
  margin:0;
}
.priv-card li{
  margin:6px 0;
  color:rgba(0,0,0,.70);
}

.priv-wide{grid-column:1/-1;}

.priv-note{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(56,217,150,.10);
  border:1px solid rgba(56,217,150,.22);
  font-weight:700;
  color:rgba(10,80,40,.9);
}

.priv-mini{
  font-size:.95rem;
  opacity:.9;
}

/* BOTONES */
.priv-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}

.priv-btn{
  text-decoration:none;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  transition:.2s;
}

.priv-primary{
  background:linear-gradient(135deg,#f6e27a,#d4af37,#b8962e);
  color:#111;
  box-shadow:0 14px 30px rgba(212,175,55,.3);
}
.priv-primary:hover{transform:translateY(-2px);}

.priv-outline{
  background:rgba(240,168,217,.18);
  border:1px solid rgba(240,168,217,.45);
  color:#7a2d57;
}
.priv-outline:hover{background:rgba(240,168,217,.28);}

/* FOOTER */
.priv-footer{
  margin-top:16px;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(0,0,0,.05);
  text-align:center;
  color:rgba(0,0,0,.65);
}

/* ANIM */
@keyframes privUp{
  to{opacity:1; transform:translateY(0);}
}

.legal-main{
  padding-top:40px;
  padding-left:16px;
  padding-right:16px;
  padding-bottom:70px;
  max-width:1100px;
  margin:0 auto;
}

.legal-hero{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(212,175,55,.25);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 44px rgba(0,0,0,.08);
}

.legal-chip{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  font-weight:900;
  color:#7a2d57;
  background:rgba(240,168,217,.22);
  border:1px solid rgba(240,168,217,.45);
}

.legal-title{margin:12px 0 6px; font-size:clamp(1.7rem,2.6vw,2.3rem);}
.legal-sub{margin:0; color:rgba(0,0,0,.70); line-height:1.6;}

/* Tabs */
.legal-tabs{
  position:sticky;
  top:12px;              /* se pega bonito */
  z-index:10;
  margin-top:14px;
  padding:10px;
  border-radius:16px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
  display:flex;
  gap:10px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

.legal-tab{
  white-space:nowrap;
  text-decoration:none;
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  color:#222;
  background:rgba(240,168,217,.12);
  border:1px solid rgba(240,168,217,.35);
  transition:.2s;
}

.legal-tab:hover{transform:translateY(-1px);}

.legal-tab.is-active{
  color:#111;
  background:linear-gradient(135deg,#f6e27a,#d4af37,#b8962e);
  border-color:rgba(212,175,55,.35);
  box-shadow:0 12px 26px rgba(212,175,55,.26);
}

/* Grid cards */
.legal-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

@media (max-width:860px){
  .legal-grid{grid-template-columns:1fr;}
}

.legal-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:18px;
  box-shadow:0 14px 32px rgba(0,0,0,.06);
}

.legal-card h2{margin:0 0 10px; font-size:1.08rem;}
.legal-card p{margin:0 0 10px; color:rgba(0,0,0,.70); line-height:1.65;}
.legal-card ul{margin:0; padding-left:18px;}
.legal-card li{margin:6px 0; color:rgba(0,0,0,.70);}

.legal-box{
  margin-top:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
}

.legal-box.pink{
  background:rgba(240,168,217,.16);
  border-color:rgba(240,168,217,.28);
}

.legal-box.gold{
  background:rgba(246,226,122,.18);
  border-color:rgba(212,175,55,.24);
}

.legal-box h3{margin:0 0 6px; font-size:1rem;}
.legal-box p{margin:0;}

/* Actions */
.legal-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}

.legal-btn{
  text-decoration:none;
  font-weight:900;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s;
}

.legal-btn.wa{
  color:#111;
  background:linear-gradient(135deg,#f6e27a,#d4af37,#b8962e);
  box-shadow:0 14px 30px rgba(212,175,55,.30);
}
.legal-btn.wa:hover{transform:translateY(-2px);}

.legal-btn.ghost{
  color:#7a2d57;
  background:rgba(240,168,217,.16);
  border:1px solid rgba(240,168,217,.40);
}

/* ================================
   BOTÓN FLOTANTE WHATSAPP
================================ */

.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  box-shadow:
    0 10px 25px rgba(37, 211, 102, 0.35),
    0 0 0 0 rgba(37, 211, 102, 0.6);

  backdrop-filter: blur(6px);

  animation: floatPulse 3.5s ease-in-out infinite;

  transition: transform 0.35s ease,
              box-shadow 0.35s ease;
}

/* Hover desktop */
.float-whatsapp:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow:
    0 15px 35px rgba(37, 211, 102, 0.55),
    0 0 0 14px rgba(37, 211, 102, 0);
}

/* Icono */
.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Animación flotando + pulso */
@keyframes floatPulse {
  0% {
    transform: translateY(0);
    box-shadow:
      0 10px 25px rgba(37, 211, 102, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  50% {
    transform: translateY(-6px);
    box-shadow:
      0 18px 40px rgba(37, 211, 102, 0.45),
      0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    transform: translateY(0);
    box-shadow:
      0 10px 25px rgba(37, 211, 102, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.6);
  }
}

/* Mobile tweak */
@media (max-width: 768px) {
  .float-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 18px;
    right: 16px;
  }

  .float-whatsapp svg {
    width: 24px;
  }
}

/* para que floten los botones */
.float-effect {
    animation: float-effect 5s ease-in-out infinite;
}
@keyframes float-effect {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}
.float-boton {
    animation: float-effect 2s ease-in-out infinite;
}
@keyframes float-effect {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }

}
a, a:visited {
    text-decoration: none;
}
a button, button {
    outline: none;
    border: none;
    
}
/* ======================================
   YAKELIN SUCCESS PAGE — LUXURY STYLE
====================================== */

.yk-success-wrapper{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 18px;

  background:
    radial-gradient(circle at top left,
      rgba(255,192,203,.35),
      transparent 45%),
    radial-gradient(circle at bottom right,
      rgba(255,215,150,.30),
      transparent 40%),
    linear-gradient(180deg,#fff 0%,#ffeef4 100%);
}

/* CARD */
.yk-success-card{
  max-width:560px;
  width:100%;

  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px);

  border-radius:28px;
  padding:42px 34px;

  box-shadow:
    0 35px 80px rgba(255,105,180,.25),
    inset 0 0 0 1px rgba(255,215,150,.35);

  text-align:center;

  animation:ykFadeUp .9s ease;
}

/* ICON */
.yk-success-icon{
  width:92px;
  height:92px;

  margin:0 auto 18px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:
    linear-gradient(135deg,#ff9fc9,#ffd66b);

  color:white;
  font-size:42px;
  font-weight:800;

  box-shadow:
    0 20px 40px rgba(255,160,200,.45);
}

/* TITLES */
.yk-success-title{
  font-size:2rem;
  margin:12px 0 10px;

  font-weight:700;

  background:linear-gradient(135deg,#ff5fa2,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.yk-success-subtitle{
  margin-bottom:10px;
  font-size:1.25rem;
  font-weight:600;
  color:#d4af37;
}

/* TEXT */
.yk-success-text{
  font-size:1rem;
  line-height:1.7;
  color:#6b3b52;
  margin-bottom:26px;
}

/* BOX */
.yk-success-box{
  margin:26px 0;

  padding:22px;

  border-radius:18px;

  background:
    linear-gradient(135deg,
      rgba(255,215,150,.20),
      rgba(255,192,203,.18));

  border:1px solid rgba(212,175,55,.35);
}

.yk-success-steps{
  list-style:none;
  padding:0;
  margin:0;

  display:grid;
  gap:12px;

  font-size:.95rem;
  color:#7a3f58;
}

/* ACTIONS */
.yk-success-actions{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.yk-success-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;

  padding:15px 22px;

  border-radius:999px;

  font-weight:600;
  text-decoration:none;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

/* HOME BTN */
.yk-btn-home{
  background:white;
  color:#d84f8b;

  border:2px solid rgba(255,192,203,.6);
}

.yk-btn-home:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(255,120,180,.35);
}

/* WHATSAPP BTN */
.yk-btn-whatsapp{
  background:linear-gradient(135deg,#ff5fa2,#ffd66b);
  color:white;

  box-shadow:0 14px 34px rgba(255,160,200,.5);
}

.yk-btn-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(255,160,200,.65);
}

/* FOOTER TEXT */
.yk-success-footer{
  margin-top:26px;
  font-size:.9rem;
  color:#9c5c78;
}

/* ======================================
   ANIMATION
====================================== */

@keyframes ykFadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width:520px){

  .yk-success-card{
    padding:34px 22px;
  }

  .yk-success-title{
    font-size:1.6rem;
  }

}
.btn-termino {
    background:linear-gradient(180deg,#ff5fa2,#ffd66b) !important;
    color:white;
    font-size:13px !important;
    font-weight:bold;
    padding:10px 25px;
    margin-top: 20px;
}
.btn-termino:hover {
    background:linear-gradient(180deg,#e6a5e6,#dad2bd) !important;
    color:black;
}