
:root{
  --primary: #ff5fa2;
  --primary-dark: #e14d8f;
  --accent: #ff9fcb;
  --bg: #fff5fa;
  --text: #27141c;
  --muted: #6b3e4f;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;color:var(--text);background:var(--bg)}
a{color:var(--primary);text-decoration:none} a:hover{text-decoration:underline}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--primary);color:#fff;padding:.9rem 1.2rem;border-radius:999px;font-weight:700;border:none}
.btn:hover{filter:brightness(0.95)}
.btn-outline{background:transparent;color:var(--primary);border:2px solid var(--primary)}
header.site{position:sticky;top:0;background:#fff8fc99;backdrop-filter:saturate(140%) blur(6px);z-index:50;border-bottom:1px solid #ffe3f1}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.navbar .brand{display:flex;align-items:center;gap:.75rem}
.navbar img.logo{height:42px}
.navbar nav a{margin:0 .8rem;font-weight:600;opacity:.9}
.hero{background:linear-gradient(135deg,var(--primary),var(--accent));color:#fff;padding:80px 0 40px;position:relative;overflow:hidden}
.hero .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:center}
.hero h1{font-size:clamp(30px,5vw,56px);line-height:1.05;margin:.2rem 0 .6rem}
.hero p.lead{font-size:clamp(16px,2.5vw,20px);opacity:.95}
.hero .cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.hero .preview{border-radius:16px;overflow:hidden;box-shadow:0 10px 35px #00000033}
.section{padding:64px 0}
.section h2{font-size:clamp(24px,2.8vw,36px);margin:0 0 18px}
.grid{display:grid;gap:20px}
.cards-3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card{background:#fff;border:1px solid #ffe0ef;border-radius:16px;padding:18px}
.card h3{margin:6px 0 10px;font-size:20px}
.badge{display:inline-block;background:#fff0f6;color:var(--primary-dark);border:1px solid #ffd1e7;border-radius:999px;padding:.28rem .6rem;font-weight:700;font-size:.8rem}
.services .item{display:flex;gap:16px;align-items:flex-start;padding:14px 0;border-bottom:1px dashed #ffd5e8}
.services .item:last-child{border-bottom:none}
.services .item img{width:96px;height:96px;object-fit:cover;border-radius:12px;border:1px solid #ffe0ef}
.kpis{display:flex;gap:16px;flex-wrap:wrap;margin-top:12px}
.kpi{background:#fff;border:1px solid #ffe0ef;border-radius:12px;padding:10px 14px;font-weight:700;color:var(--muted)}
.salons{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.salons .card footer{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.icon{width:18px;height:18px;display:inline-block;vertical-align:-3px}
.icon img, .icon svg{width:18px;height:18px}
.gallery{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px
}
.gallery img{width:100%;height:220px;object-fit:cover;border-radius:12px;border:1px solid #ffe0ef}
.reviews .review{background:#fff;border:1px solid #ffe0ef;border-radius:12px;padding:16px;margin:10px 0}
.contact form{display:grid;gap:12px;grid-template-columns:1fr 1fr} 
.contact form textarea{min-height:140px}
.contact form .full{grid-column:1/-1}
footer.site{padding:28px 0;background:#fff;border-top:1px solid #ffe0ef; margin-top:40px}
small.muted{color:var(--muted)}
@media (max-width:900px){
  .hero .wrap{grid-template-columns:1fr}
  .contact form{grid-template-columns:1fr}
}
