:root{
  --bg: #0b0b10;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.14);
  --accent1: #e02060;
  --accent2: #e06020;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 22px;
  --radiusSm: 16px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(224,32,96,.35), transparent 60%),
    radial-gradient(1000px 700px at 90% 15%, rgba(224,96,32,.28), transparent 55%),
    radial-gradient(900px 700px at 40% 100%, rgba(255,255,255,.08), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 14px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,16,.65);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:44px; height:44px; border-radius:14px; box-shadow: var(--shadow); background:#fff}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__text strong{letter-spacing:.4px}
.brand__text span{font-size:.86rem; color:var(--muted)}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:.95rem}
.nav a:hover{color:var(--text)}
.menuBtn{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.menuBtn span{display:block; height:2px; width:18px; background: var(--text); margin:4px auto; border-radius:2px; opacity:.9}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight:700;
  box-shadow: 0 14px 30px rgba(224,32,96,.22);
  transform: translateZ(0);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05); box-shadow: 0 18px 40px rgba(224,32,96,.25)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: none;
}
.btn--ghost:hover{background: rgba(255,255,255,.10)}
.btn--sm{padding:10px 14px; font-size:.95rem}

.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.24);
  color: var(--muted);
  font-weight:600;
  font-size:.92rem;
}
.chip--muted{color:var(--muted2)}
.dot{width:10px; height:10px; border-radius:50%; background: linear-gradient(135deg, var(--accent1), var(--accent2)); box-shadow: 0 10px 20px rgba(224,32,96,.25)}

.hero{position:relative; overflow:hidden}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,11,16,.40), rgba(11,11,16,.95)),
    url("../img/1.jpg") center/cover no-repeat;
  filter: saturate(1.05);
  transform: scale(1.03);
}
.hero__content{position:relative; padding:64px 0 44px}
.hero__badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
  color: var(--muted);
  font-weight:700;
  font-size:.92rem;
}
.hero h1{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  margin:16px 0 14px;
  letter-spacing:.2px;
}
.hero p{margin:0; max-width: 58ch; color: var(--muted); font-size:1.05rem}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}
.hero__meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:22px}

.section{padding:62px 0}
.section--alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.03) 20%, rgba(255,255,255,.03) 80%, transparent);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:22px}
.section__head h2{
  margin:0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}
.section__head p{margin:0; color: var(--muted); max-width: 72ch}

.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(12, 1fr)}
.card{
  grid-column: span 4;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.card:hover{transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.20)}
.card img{width:100%; aspect-ratio: 4/3; object-fit: cover}
.card__body{padding:14px 14px 16px}
.card__body h3{margin:0 0 6px; font-size:1.05rem}
.card__body p{margin:0; color:var(--muted); font-size:.95rem}

.callout{
  margin-top:18px;
  border:1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding:18px;
  background: radial-gradient(900px 260px at 20% 20%, rgba(224,32,96,.20), transparent 55%),
              radial-gradient(900px 260px at 90% 20%, rgba(224,96,32,.18), transparent 55%),
              rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.callout h3{margin:0 0 6px}
.callout p{margin:0; color:var(--muted)}
.callout__actions{display:flex; gap:10px; flex-wrap:wrap}

.gallery{grid-template-columns: repeat(12, 1fr)}
.thumb{
  grid-column: span 4;
  border:1px solid var(--line);
  border-radius: var(--radiusSm);
  overflow:hidden;
  background: rgba(255,255,255,.04);
  padding:0;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.thumb:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20)}
.thumb img{width:100%; aspect-ratio: 4/3; object-fit: cover}

.video{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.video iframe{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
  display:block;
}

.maps{grid-template-columns: repeat(12, 1fr)}
.mapCard{
  grid-column: span 6;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.mapCard h3{margin:0 0 10px}
.map{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.map iframe{width:100%; height:320px; border:0; display:block}

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.18);
  color: var(--muted);
  background: rgba(0,0,0,.18);
}

.contact{grid-template-columns: repeat(12, 1fr); align-items:start}
.contact__card{
  grid-column: span 6;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.contact__card h3{margin:0 0 12px}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px}
.contact__details{
  display:grid;
  gap:8px;
  color: var(--muted);
  font-weight:600;
  margin-bottom:14px;
}
.contact__details span{color:var(--muted2); font-weight:700}
.fbEmbed{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  width:100%;
  max-width: 420px;
}
.fbEmbed iframe{width:100%; height:420px; border:0; display:block}

.form{display:grid; gap:12px}
label{display:grid; gap:8px; color:var(--muted); font-weight:700; font-size:.95rem}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font: inherit;
}
input::placeholder, textarea::placeholder{color: rgba(255,255,255,.45)}
input:focus, textarea:focus{outline: none; border-color: rgba(224,32,96,.55); box-shadow: 0 0 0 4px rgba(224,32,96,.15)}
.form__hint{margin:0; color:var(--muted2); font-size:.9rem}

.divider{height:1px; background: rgba(255,255,255,.12); margin:16px 0}

.trust{display:grid; gap:12px}
.trust__item{display:flex; gap:12px; align-items:flex-start}
.trust__icon{
  width:42px; height:42px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.trust__item strong{display:block}
.trust__item span{display:block; color:var(--muted); font-weight:600; font-size:.95rem}

.footer{border-top:1px solid rgba(255,255,255,.08); padding:26px 0 22px; background: rgba(0,0,0,.20)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer__brand{display:flex; gap:12px; align-items:center}
.footer__brand img{width:44px; height:44px; border-radius:14px; background:#fff}
.footer__brand span{display:block; color:var(--muted); font-weight:600; font-size:.95rem}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:700}
.footer__links a:hover{color:var(--text)}
.footer__cta{display:flex; gap:10px; flex-wrap:wrap}
.footer__bottom{
  display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
  margin-top:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08)
}
.small{margin:0; color: var(--muted2); font-weight:600; font-size:.92rem}

.whatsapp{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .18);
  border:1px solid rgba(16, 185, 129, .35);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.whatsapp__emoji{font-size:22px; line-height:1}
.whatsapp span{font-weight:800; color: rgba(255,255,255,.92)}

.lightbox{
  position:fixed; inset:0; z-index:100;
  display:none;
}
.lightbox.is-open{display:block}
.lightbox__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.72)}
.lightbox__dialog{
  position:relative;
  margin: 5vh auto;
  width: min(980px, calc(100% - 28px));
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(11,11,16,.95);
  box-shadow: var(--shadow);
}
.lightbox__dialog img{width:100%; height:auto; display:block}
.lightbox__close{
  position:absolute; right:10px; top:10px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color:#fff;
  cursor:pointer;
  font-size:18px;
}

@media (max-width: 980px){
  .card{grid-column: span 6}
  .thumb{grid-column: span 6}
  .mapCard{grid-column: span 12}
  .contact__card{grid-column: span 12}
}

@media (max-width: 720px){
  .topbar__inner{padding:10px 0}
  .menuBtn{display:block}
  .nav{
    position:absolute;
    left:0; right:0; top:68px;
    display:none;
    flex-direction:column;
    padding:12px;
    background: rgba(11,11,16,.92);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
  .nav.is-open{display:flex}
  .nav a{padding:12px 10px; width:100%; border-radius: 14px; background: rgba(255,255,255,.04)}
  .nav a.btn{width:100%}
  .hero__content{padding:46px 0 32px}
  .callout{flex-direction:column; align-items:flex-start}
  .whatsapp{right:12px; bottom:12px}
}
