body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #ffe6f2, #fff);
    color: #444;
}

/* HERO */
.layout-desktop {
    text-align: center;
    padding: 40px 20px;
}

.hero-text h1 {
    color: #ff4fa3;
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 15px;
    color: #666;
}

/* SERVICIOS */
.servicios-section {
    padding: 20px;
    text-align: center;
}

.servicios-section h3 {
    color: #ff4fa3;
    margin-bottom: 20px;
}

.cards-pelu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card-pelu {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    cursor: pointer;
}

.card-pelu span {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

/* BOTÓN */
.boton-mas-servicios-container {
    text-align: center;
    margin: 25px 0;
}

.btn-mas-servicios {
    background: #ff4fa3;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* VIDEO */
.video-pelu {
    position: relative;
    margin: 30px 15px;
    border-radius: 20px;
    overflow: hidden;
}

.video-pelu video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,79,163,.15);
}

/* UBICACIÓN */
.ubicacion-pilar-glam {
    background: #fff2f8;
    margin: 20px;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.ubicacion-icono {
    background: #ff4fa3;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 10px;
    font-size: 26px;
}

.ubicacion-info h4 {
    color: #ff4fa3;
    text-align: center;
}

.btn-ubicacion {
    display: block;
    margin-top: 15px;
    text-align: center;
    background: #ff4fa3;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
}

.Logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;

    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    animation: pulseGlow 3.5s ease-in-out infinite;
}


/* ===== ANIMACIÓN ENTRADA ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.layout-desktop,
.servicios-section,
.video-pelu,
.ubicacion-pilar-glam {
    animation: fadeUp .9s ease both;
}

/* ===== CARDS PIOLAS ===== */
.card-pelu {
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: hidden;
}

.card-pelu:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 35px rgba(255,79,163,.35);
}

/* ===== EFECTO TAP MÓVIL ===== */
.card-pelu:active {
    transform: scale(.96);
}

/* ===== SPARKLES ===== */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff, #ff4fa3);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleMove .8s ease-out forwards;
}

@keyframes sparkleMove {
    from {
        opacity: 1;
        transform: translate(0,0) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(.2);
    }
}

/* ===== BOTONES ===== */
.btn-mas-servicios,
.btn-ubicacion {
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-mas-servicios:hover,
.btn-ubicacion:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255,79,163,.4);
}


@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255,79,163,.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255,79,163,.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,79,163,.4); }
}


/* ===== NAVBAR ===== */
.navbar-glam {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #ff4fa3;
}

.logo-icon {
    background: #ff4fa3;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    font-size: 22px;
    cursor: pointer;
}

.menu-center {
    position: absolute;
    top: 65px;
    right: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    display: none;
}

.menu-center.active {
    display: block;
}

.menu-center ul {
    list-style: none;
    margin: 0;
    padding: 15px;
}

.menu-center li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #ff4fa3;
    font-weight: 600;
}


/* ===== FOOTER ===== */
.footer-glam {
    text-align: center;
    padding: 20px;
    background: #fff2f8;
    color: #ff4fa3;
}

.footer-glam i {
    color: #ff4fa3;
}

/* ===== WHATSAPP FLOTANTE ===== */
/* ===== WHATSAPP FLOTANTE ROSA GLAM ===== */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 20px;
    width: 58px;
    height: 58px;

    background: linear-gradient(135deg, #ff4fa3, #ff77c2);
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    text-decoration: none;
    z-index: 999;

    box-shadow: 0 12px 30px rgba(255,79,163,.55);
    animation: whatsappPulsePink 2.8s infinite;

    transition: transform .3s ease, box-shadow .3s ease;
    animation:
        introBounce .6s ease,
        whatsappPulsePink 2.8s infinite .6s;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 18px 35px rgba(255,79,163,.7);
}

/* PULSO ROSA */
@keyframes whatsappPulsePink {
    0% {
        box-shadow: 0 0 0 0 rgba(255,79,163,.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255,79,163,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,79,163,0);
    }
}

/* MOBILE AJUSTE */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }
}



/* PULSO */
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes introBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}


/* Modal fondo oscuro */
.modal-whatsapp {
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* semi-transparente */
    justify-content: center; /* centra horizontal */
    align-items: center;     /* centra vertical */
    z-index: 9999;
}

/* Contenido del modal */
.modal-whatsapp-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Botón cerrar */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Botón WhatsApp */
.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-whatsapp i {
    margin-right: 8px;
}



