
:root{
  --purple:#4B3B97;
  --orange:#F08A1C;
  --dark:#222;
  --light:#fff;
  --bg:#faf7ff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color:#1a1a1a;
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--purple);text-decoration:none}
.container{width:min(1100px,92%);margin:auto}
header{
  background:linear-gradient(135deg,var(--purple),#2c2370);
  color:var(--light);
  position:sticky;top:0;z-index:1000;
  box-shadow:0 8px 20px rgba(0,0,0,.15)
}
nav{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.brand{display:flex;align-items:center;gap:.6rem}
.brand img{width:38px;height:38px}
.brand .name{font-weight:800;letter-spacing:.5px}
.menu a{margin:0 .5rem;padding:.4rem .6rem;border-radius:999px}
.menu a:hover{background:rgba(255,255,255,.15)}
.cta{background:var(--orange);color:#111;padding:.55rem .9rem;border-radius:999px;font-weight:700}
.hero{
  background:#fff;
}
.hero-grid{
  display:grid;gap:1.2rem;
  grid-template-columns: 1.2fr .8fr;
  padding:clamp(1rem,3vw,2.5rem) 0;
  align-items:center;
}
.hero h1{font-size:clamp(1.8rem, 3.3vw, 3rem);line-height:1.15;margin:.2rem 0 .6rem;color:var(--purple)}
.badge{display:inline-block;background:var(--orange);color:#111;font-weight:700;padding:.25rem .6rem;border-radius:.5rem;margin-bottom:.6rem}
.hero p{font-size:1.05rem}
.hero .shots{display:grid;gap:1rem}
.hero .shots img{border-radius:1rem;box-shadow:0 10px 26px rgba(0,0,0,.12)}
.section{padding:clamp(2rem,5vw,3.5rem) 0}
.section h2{color:var(--purple);font-size:clamp(1.6rem,2.8vw,2.2rem);margin:0 0 1rem}
.cards{display:grid;gap:1rem;grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
.card{background:#fff;border-radius:1rem;padding:1rem;border:1px solid #eee;box-shadow:0 10px 24px rgba(0,0,0,.06)}
.card h3{margin:.3rem 0 .2rem}
.card p{margin:0}
.banner{
  background:linear-gradient(135deg,#fff, #fff0e1);
  border:1px solid #ffe0bf;
  border-radius:1rem;
  padding:1rem;
  display:flex;align-items:center;gap:1rem
}
.banner strong{color:var(--orange)}
.grid-2{display:grid;gap:1.2rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.embed{background:#fff;border-radius:1rem;border:1px solid #eee;padding:.6rem}
.embed iframe{width:100%;height:520px;border:0;border-radius:.7rem}
.cta-strip{
  background:linear-gradient(135deg,var(--purple),#20195b);
  color:#fff;border-radius:1rem;padding:1.3rem;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.8rem
}
.cta-strip a.button{background:var(--orange);color:#111;padding:.7rem 1rem;border-radius:.8rem;font-weight:800}
footer{
  background:#111;color:#ddd;padding:1.5rem 0;margin-top:2rem
}
footer a{color:#fff;text-decoration:underline}
.gallery{display:grid;gap:.8rem;grid-template-columns:repeat(auto-fit,minmax(160px,1fr))}
.gallery img{border-radius:.6rem;object-fit:cover;width:100%;height:160px}
.map iframe{width:100%;height:380px;border:0;border-radius:.8rem}
.fab-whatsapp{
  position:fixed;right:18px;bottom:18px;background:#25D366;color:#fff;border-radius:50%;width:58px;height:58px;display:grid;place-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.25);z-index:2000;font-weight:900;font-size:28px
}
form{display:grid;gap:.6rem}
input,textarea{padding:.7rem;border:1px solid #ddd;border-radius:.6rem;font:inherit}
button{border:0;background:var(--purple);color:#fff;padding:.8rem 1rem;border-radius:.7rem;font-weight:700;cursor:pointer}
.notice{font-size:.9rem;color:#666}
@media(max-width:850px){.hero-grid{grid-template-columns:1fr}.embed iframe{height:420px}}
