*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    html{
    scroll-behavior:smooth;
    }
    
    body{
    background:#f8f9fb;
    color:#222;
    }
    
    header{
    position:fixed;
    width:100%;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(10px);
    z-index:999;
    }
    
    nav{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    }
    
    .logo{
    font-size:1.4rem;
    font-weight:700;
    color:white;
    }
    
    nav ul{
    display:flex;
    gap:30px;
    list-style:none;
    }
    
    nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    }
    
    .hero{
    height:100vh;
    background:url('inicio.jpeg') center center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    }
    
    .overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    }
    
    .hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
    max-width:800px;
    padding:20px;
    }
    
    .hero h1{
    font-size:4rem;
    margin-bottom:20px;
    }
    
    .hero p{
    font-size:1.2rem;
    margin-bottom:30px;
    }
    
    .btn{
    background:#014f5a;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    color:rgb(246, 241, 241);
    }
    
    section{
        padding:120px 8%;
        background: linear-gradient(180deg, #07070a 0%, #0c0c12 100%);
        color:#ffffff;
        position:relative;
        overflow:hidden;
    }
    .galeria img{
        width:100%;
        height:100%;
        object-fit:cover;      /* llena el espacio sin deformarse */
        object-position:center; /* centra el recorte */
        display:block;
    }
    .card-imagen{
        width:100%;
        height:350px;
        overflow:hidden;
        border-radius:16px;
    }
    
    .card-imagen img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
    }
    @media (max-width:768px){
        .card-imagen{
            height:250px;
        }
    
        section{
            padding:80px 5%;
        }
    }
    /* efecto sutil de luz premium */
    section::before{
        content:"";
        position:absolute;
        top:-150px;
        left:-150px;
        width:400px;
        height:400px;
        background:radial-gradient(circle, rgba(244,180,0,0.15), transparent 60%);
        filter:blur(60px);
        z-index:0;
    }
    
    section::after{
        content:"";
        position:absolute;
        bottom:-150px;
        right:-150px;
        width:400px;
        height:400px;
        background:radial-gradient(circle, rgba(0,150,255,0.10), transparent 60%);
        filter:blur(70px);
        z-index:0;
    }
    
    /* todo el contenido encima del fondo */
    section > *{
        position:relative;
        z-index:2;
    }
    
    .section-title{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:60px;
    }
    
    .about{
    text-align:center;
    max-width:1000px;
    margin:auto;
    }
    
    .service{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:100px;
    }
    
    .reverse{
    flex-direction:row-reverse;
    }
    
    .service img{
    width:50%;
    border-radius:20px;
    height:450px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    }
    
    .content{
    flex:1;
    }
    
    .content h3{
    font-size:2.2rem;
    margin-bottom:20px;
    }
    
    .content p{
    line-height:1.8;
    margin-bottom:20px;
    }
    
    .price{
    font-size:1.8rem;
    font-weight:700;
    color:#f3f7f6;
    margin-bottom:25px;
    }
    
    .service-btn{
    background:#014f5a;
    color:white;
    padding:15px 30px;
    border-radius:40px;
    text-decoration:none;
    }
    
    .gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    }
    
    .gallery img{
    width:100%;
    
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    }
    
    .gallery img:hover{
    transform:scale(1.05);
    }
    
    .map iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:20px;
    }
    
    .contact-box{
    max-width:700px;
    margin:auto;
    text-align:center;
    font-size:1.2rem;
    line-height:2;
    }
    
    footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
    }
    
    .whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:34px;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    }
    
    .instagram{
    position:fixed;
    bottom:100px;
    right:25px;
    width:65px;
    height:65px;
    background:#E1306C;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:32px;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    }
    
    @media(max-width:900px){
    
    .hero h1{
    font-size:2.5rem;
    }
    
    nav ul{
    display:none;
    }
    
    .service,
    .reverse{
    flex-direction:column;
    }
    
    .service img{
    width:100%;
    height:300px;
    }
    
    .section-title{
    font-size:2rem;
    }
    
    }.menu-toggle{
    display:none;
    font-size:2rem;
    color:white;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:relative;
    }

    nav ul{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:rgba(0,0,0,.95);
        flex-direction:column;
        text-align:center;
        gap:0;
        display:none;
        padding:20px 0;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        padding:15px 0;
        width:100%;
    }

    nav ul li a{
        display:block;
        font-size:1.1rem;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .service,
    .reverse{
        flex-direction:column;
    }

    .service img{
        width:100%;
        height:300px;
    }

    .section-title{
        font-size:2rem;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#050507;
    color:#ffffff;
}
/* HEADER */
header{
    background:rgba(0,0,0,0.8);
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(10px);
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
}

.logo{
    color:white;
    font-weight:700;
    font-size:1.2rem;
}

/* MENU */
nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

/* HAMBURGUESA OCULTA EN ESCRITORIO */
.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:white;
    margin:4px 0;
    border-radius:5px;
}

/* RESPONSIVE */
@media(max-width:900px){

    .menu-toggle{
        display:flex;
    }

    nav ul{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:rgba(0,0,0,0.95);
        flex-direction:column;
        text-align:center;
        gap:0;
        display:none;
    }

    nav ul li{
        padding:18px 0;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    nav ul.active{
        display:flex;
    }
}
/* SECCIONES */

.servicio {
    padding: 100px 8%;
    background: #0f1117;
}

.servicio-card{
    background:linear-gradient(
        180deg,
        #111318 0%,
        #0c0e13 100%
    );
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
        0 15px 50px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.03);
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

/* IMAGEN */

.servicio-img {
    flex: 1;
}

.servicio-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* CONTENIDO */

.servicio-info {
    flex: 1;
    padding: 50px;
}

.categoria {
    display: inline-block;
    margin-bottom: 15px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.servicio-info h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.servicio-info p {
    color: #b8c0cc;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.precio {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* SURF */

.surf .categoria,
.surf .precio {
    color: #f3f5f6;
}

.surf .btn-servicio {
    background: #014f5a;
}

/* MASAJES */

.masaje .categoria,
.masaje .precio {
    color: #f6f3f8;
}

.masaje .btn-servicio {
    background: #014f5a;
}

/* BOTON */

.btn-servicio {
    display: inline-block;
    padding: 14px 35px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-servicio:hover {
    opacity: .85;
    transform: translateY(-2px);
}

/* ALTERNAR POSICION */

.masaje .servicio-card {
    flex-direction: row-reverse;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .servicio-card,
    .masaje .servicio-card {
        flex-direction: column;
    }

    .servicio-img img {
        height: 320px;
    }

    .servicio-info {
        padding: 30px;
    }

    .servicio-info h2 {
        font-size: 2rem;
    }
}