:root {
    --principal: #FFB6C1;
    --acentuado: #FF8EAD;
    --acentuado-oscuro: #e6708a;
    --fondo-seccion: #FFF5F7;
    --fondo-blanco: #ffffff;
    --footer-bg: #2a1a1e;
    --texto: #444;
    --texto-oscuro: #1a1a1a;
    --sombra: 0 8px 30px rgba(255, 142, 173, 0.15);
    --sombra-fuerte: 0 15px 40px rgba(255, 142, 173, 0.25);
    --gradiente-principal: linear-gradient(135deg, var(--acentuado), #ff6b9d);
    --gradiente-hero: linear-gradient(135deg, rgba(255,142,173,0.95), rgba(255,107,157,0.85));
    --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Poppins', sans-serif; color: var(--texto); background-color: var(--fondo-blanco); line-height: 1.6; overflow-x: hidden; }
img { width: 100%; height: auto; display: block; }
a { color: var(--acentuado); text-decoration: none; }
a:hover { color: var(--acentuado-oscuro); }

header {
    background: rgba(255,255,255,0.98);
    padding: 12px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 20px rgba(255, 182, 193, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.logo img { height: clamp(70px, 10vw, 120px); width: auto; margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
header .header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--texto);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 2.5vw, 25px);
    flex-wrap: wrap;
}
nav a {
    text-decoration: none;
    color: var(--texto-oscuro);
    font-weight: 600;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    text-transform: uppercase;
    padding: 8px 4px;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
nav a:hover { color: var(--acentuado); }
.nav-turnos {
    color: white !important;
    background: var(--gradiente-principal);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 142, 173, 0.35);
    transition: all 0.3s;
}
.nav-turnos:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 142, 173, 0.45);
    color: white !important;
}

section[id] { scroll-margin-top: 100px; }

.hero {
    background: var(--gradiente-hero), url('../LOGO FINAL.jpg') center/cover;
    min-height: clamp(60vh, 70vh, 90vh);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: 15px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero h1 span { display: block; }
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons .btn-turno {
    padding: 18px 45px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-top: 0;
    background: white;
    color: var(--acentuado);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.hero-buttons .btn-turno:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.3); color: var(--acentuado-oscuro); }
.hero-buttons .btn-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    transition: all 0.3s;
    margin-top: 0;
}
.hero-buttons .btn-wa-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.45); color: white; }

.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
    padding: 30px 20px;
    background: white;
    flex-wrap: wrap;
    box-shadow: 0 -5px 20px rgba(255,142,173,0.05);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--acentuado);
    line-height: 1;
}
.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.section {
    padding: clamp(50px, 8vh, 90px) 20px;
    text-align: center;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--texto-oscuro);
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #888;
    max-width: 650px;
    margin: 0 auto 40px;
}
.section-bg { background: var(--fondo-seccion); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 20px;
    box-shadow: var(--sombra);
    transition: all 0.4s;
    text-align: center;
    border: 1px solid rgba(255,182,193,0.15);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradiente-principal);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-fuerte);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}
.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--texto-oscuro);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}
.service-card .service-link {
    display: inline-block;
    color: var(--acentuado);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 8px 0;
}
.service-card .service-link:hover { letter-spacing: 1px; }

.btn-turno {
    display: inline-block;
    background: var(--gradiente-principal);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(255, 142, 173, 0.35);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    text-align: center;
    min-width: 200px;
}
.btn-turno:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 142, 173, 0.45);
    color: white;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
    text-align: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
}
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

.foto-resultado {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--principal);
    background: white;
    aspect-ratio: 4/5;
    object-fit: cover;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s, scale 0.3s;
}
.foto-resultado.visible { opacity: 1; transform: translateY(0); }
.foto-resultado:hover {
    scale: 1.08;
    box-shadow: 0 10px 20px rgba(255, 142, 173, 0.3);
    z-index: 10;
    cursor: zoom-in;
}

.testimonio-container {
    max-width: 650px;
    padding: 35px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--sombra);
    margin: 0 auto;
    position: relative;
}
.testimonio-container::before {
    content: '"';
    font-size: 5rem;
    color: var(--acentuado);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}
#texto-testimonio { font-style: italic; font-size: clamp(1rem, 2vw, 1.15rem); color: #555; margin-bottom: 15px; transition: opacity 0.5s ease; line-height: 1.7; }
#autor-testimonio { font-weight: bold; color: var(--acentuado); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.testimonio-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.faq-item { text-align: left; max-width: 750px; margin: 12px auto; padding: 20px 25px; background: white; border-radius: 15px; box-shadow: 0 3px 15px rgba(0,0,0,0.04); border: 1px solid rgba(255,182,193,0.1); transition: all 0.3s; }
.faq-item:hover { box-shadow: 0 5px 25px rgba(0,0,0,0.06); }
.faq-item h3 { color: var(--acentuado); margin-bottom: 8px; font-size: 1.05rem; }

.instagram-section {
    padding: 60px 20px;
    text-align: center;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 700px;
    margin: 20px auto;
}
.instagram-grid a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.instagram-grid a:hover img { transform: scale(1.1); }
.instagram-grid img {
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s;
}
.insta-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 15px 10px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.insta-overlay i { color: white; font-size: 1.2rem; }

.cta-section {
    background: var(--gradiente-principal);
    padding: 60px 20px;
    text-align: center;
    color: white;
}
.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    margin-bottom: 15px;
}
.cta-section p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 30px;
}
.cta-section .btn-turno {
    background: white;
    color: var(--acentuado);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

footer {
    padding: 50px 20px 30px;
    background: var(--footer-bg);
    text-align: center;
    color: rgba(255,255,255,0.7);
}
footer .social-icons { margin-bottom: 25px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
footer .social-icons a {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    min-width: unset; min-height: unset;
}
footer .social-icons a:hover {
    transform: translateY(-4px);
    color: white;
}
footer .social-icons a.instagram:hover { background: #E1306C; }
footer .social-icons a.facebook:hover { background: #1877F2; }
footer .social-icons a.tiktok:hover { background: #000000; }
footer .social-icons a.whatsapp:hover { background: #25D366; }
.footer-address { font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 15px; font-size: 0.85rem; }
footer p { font-size: 0.8rem; }
footer .footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
footer .footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.3s; }
footer .footer-links a:hover { color: white; }

.wa-float {
    position: fixed; bottom: 25px; right: 25px;
    background: #25D366; color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    z-index: 2000; text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); color: white; }
.wa-float-pulse {
    animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float .wa-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--texto-oscuro);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.nav-overlay.active { display: block; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .foto-resultado { width: calc(50% - 8px); }
    header { padding: 10px 4%; }
    .logo img { height: clamp(50px, 10vw, 80px); margin-bottom: 0; }
    .menu-toggle { display: flex; }
    nav {
        display: none;
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 25px 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
    }
    nav.active { display: flex; right: 0; }
    nav a {
        font-size: 1rem;
        padding: 15px 10px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f5f5f5;
        white-space: normal;
    }
    .nav-turnos { text-align: center !important; margin-top: 15px; padding: 15px; border-radius: 12px; }
    .btn-turno { min-width: unset; width: 100%; max-width: 350px; }
    .hero { min-height: 65vh; padding: 30px 20px; }
    .hero-buttons .btn-turno,
    .hero-buttons .btn-wa-hero { width: 100%; max-width: 320px; justify-content: center; }
    .stats-bar { gap: 15px; padding: 25px 15px; }
    .stat-num { font-size: 1.8rem; }
    .services-grid { gap: 15px; }
    .service-card { padding: 25px 18px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .wa-float { width: 52px; height: 52px; font-size: 26px; bottom: 20px; right: 20px; }
    .wa-float .wa-tooltip { display: none; }
    footer { padding: 40px 20px 25px; }
}

@media (max-width: 480px) {
    .foto-resultado { width: calc(50% - 6px); }
    .logo img { height: 45px; }
    nav { width: 85%; padding: 80px 20px 20px; }
    nav a { font-size: 0.95rem; padding: 14px 8px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .stats-bar { gap: 10px; padding: 20px 10px; }
    .stat-num { font-size: 1.4rem; }
    .stat-label { font-size: 0.7rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 22px 15px; }
    .section { padding: 40px 15px; }
    .section-title { font-size: 1.4rem; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonio-container { padding: 25px; margin: 0 10px; }
    .faq-item { padding: 15px 18px; margin: 10px 10px; }
    .wa-float { width: 48px; height: 48px; font-size: 22px; bottom: 15px; right: 15px; }
}

@media (min-width: 769px) {
    .menu-toggle { display: none !important; }
    nav { display: flex !important; }
    .nav-overlay { display: none !important; }
}
