*{margin: 0;
padding: 0;
box-sizing: border-box}
body {
    padding-top: 70px;
}
header {
    display: flex;
    background: #ffffff;
    justify-content: center;
    height: 80px;
    align-items: center;
    top: 0;
    width: 100%;
    position: fixed;
    left: 0;  
    z-index: 1000;  
}
.logo img{
    width: 75px;
    height: auto;
}
.container {
    display: flex;
    background: #f0a8d9;
    width: 100%;
    height: 40px;
    position: fixed;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.menu {
    display: flex;
    gap: 10px;
    color: #f0a8d9;
    font-size: 17px;
}
.menu a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    padding: 100px;
}
.menu a:hover {
    color: #ffffff;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .menu {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        margin-right: 10px;
    }
    .menu a {
        padding: 10px;
        font-size: 14px;
        margin: 0;
    }
    .titulo {
        font-size: 14px;
        margin-right: 10px;
    }
}
.contenido {
    display: flex;
    margin-top: 40px;
    width: 100%;
    height: 600px;
    justify-content: center;
    align-items: center;
    gap: 80px;
    background: #e6cede;
    padding: 20px 80px;
}
.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;
}
.imagen-portada img {
    width: 350px;
    height: auto;
    border-radius: 25px;
}

.boton-entrada {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.boton-entrada button {
    background: #8b436d;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.boton-entrada button:hover {
    background: #df1178;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .contenido {
        display: flex;
        width: 100%;
        height:380px;
        gap: 13px;
        margin:0;
    }
    .imagen-portada img {
        width: 160px;
        margin-right: 20px
    ;
    }
    .titulo-portada  {
        text-align: center;
        margin: 0 10px;
    }
    .titulo-portada h1 {
        font-size: 16px;
        padding-top: 70px;
    }
    .titulo-portada h2 {
        font-size: 14px;
    }
    .titulo-portada p {
        font-size: 13px;;
    }
    .boton-entrada {
        margin-top: 15px;
        margin-left: 95px;
    }
    .boton-entrada button {
        font-size: 12px;
        padding: 10px 15px;   
    }
}
.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;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 15px;
    height: auto;
}
.servicio img {
    width: 300px;
    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 {
        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: 300px;
        height: 400px;
        object-fit: cover;
        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 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: block;
        padding: 0;
    }
    .pensando img {
        width: 250px;
        height: auto;
        margin-left:45px ;
    

    }
    .pensando h3{
        font-size: 25px;
    }
    .pensando h4 {
        font-size: 18px;
    }
    .pensando button {
        margin-bottom: 10px;
        font-size: 16px;

    }
}
.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: 15px 20px;
    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{
        width: 16%;
        
    }
    .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 {
    width: 100%;
    height: auto;
    margin-top: 40px;
    background: #ffffff;
    position: relative;
    
}
.servicio-img img {
    width: 100%;
    height: 200px;
    display: block;
    
}
.texto-servicio {
    position: absolute;
    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;
    }
    .servicio-img img {
    width: 100%;
    height: auto;
    display: block;
    }
    .texto-servicio {
    position: absolute;
    top: 25%;
    width: 100%;
    }
    .texto-servicio h1 {
    font-size: 22px;
    color : #8b436d;
    font-weight: bold;
    margin-bottom: 30px;
    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;
    }
    .contacto-texto {
        width: 100%;
        height: auto;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .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: 350px;
        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: 380px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding: 0;
    }
    .llegar h2 {
        font-size: 25px;
        margin-bottom: 15px;
        text-align: center;
    }
    .llegar p{
        font-size: 14px;
        color: #49163c;
        text-align: center;
    }
    .llegar iframe {
        width: 380px;
        height: 350px;
    }
}
/* ===== 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;
  }
}