* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #333;
    background: #fff;
}

/* NAVBAR */
header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #d4006b;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('resources/hair.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 5%;
    color: purple;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #d4006b;
    color: white;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
}

/* SECCIONES */
section {
    padding: 80px 10%;
}

/* SERVICIOS */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffe6f2;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* BOOKING */
.booking {
    text-align: center;
    background: #fff0f7;
}

/* FOOTER */
footer {
    text-align: center;
    background: #d4006b;
    color: white;
    padding: 40px 10%;
    margin-top: 40px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 80px;
        right: 20px;
        width: 200px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }
}
/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* LANDING SIMPLE */
.landing-hero-simple {
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1200&q=80') 
    center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero-box {
    background: rgba(0, 0, 0, 0.45);
    padding: 25px 35px;
    border-radius: 12px;
}

.hero-box h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.landing-form {
    padding: 60px 10%;
    text-align: center;
    background: #fff0f7;
}

.landing-form form {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: auto;
    gap: 15px;
}

.landing-form input {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.volver {
    display: inline-block;
    margin-top: 20px;
    color: #d4006b;
    font-weight: 600;
    text-decoration: none;
}
/* LANDING PAGE FINAL */
.landing-final {
    height: 100vh;
    width: 100%;
    background: url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Capa oscura + blur real */
.landing-container {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Caja del formulario */
.landing-box {
    background: rgba(255,255,255,0.15);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    text-align: center;
    width: 90%;
    max-width: 400px;
    color: white;
}

.landing-box h1 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.landing-box p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.landing-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.landing-box input {
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.landing-box .btn {
    border: none;
    cursor: pointer;
}

.volver {
    display: inline-block;
    margin-top: 20px;
    color: #ffbadf;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CALENDARIO */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 20px auto;
    background: #fff0f7;
    padding: 20px;
    border-radius: 12px;
}

.calendar-day {
    padding: 15px;
    background: #ffe6f2;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.calendar-day:hover {
    background: #d4006b;
    color: white;
    transform: translateY(-3px);
}
