:root{
  --bg:#0b1220;
  --surface:#0f1a2e;
  --card:#0f1a2e;
  --card2:#0b1528;
  --text:#eaf0ff;
  --muted:#b8c2dd;
  --line:rgba(255,255,255,.12);

  --teal:#28B9B8;
  --green:#B1CF33;
  --pink:#DE445D;
  --orange:#F3911F;

  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 10% 0%, rgba(40,185,184,.20), transparent 60%),
              radial-gradient(1100px 700px at 95% 12%, rgba(243,145,31,.18), transparent 55%),
              radial-gradient(900px 700px at 20% 90%, rgba(222,68,93,.15), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

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

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(15,26,46,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.topbar__left{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.topbar__text{color:var(--muted); font-size:.95rem}
.topbar__right{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.topbar__link{
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:650;
  font-size:.95rem;
  background:rgba(255,255,255,.04);
  transition:.2s transform, .2s background;
}
.topbar__link:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}

.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.2px;
  font-size:.78rem;
}
.pill--danger{background:rgba(222,68,93,.18); border:1px solid rgba(222,68,93,.35); color:#ffd6dd}
.pill--teal{background:rgba(40,185,184,.16); border:1px solid rgba(40,185,184,.35); color:#d4fffe}
.pill--warning{background:rgba(243,145,31,.16); border:1px solid rgba(243,145,31,.35); color:#ffe7d0}

.header{
  position:sticky; top:52px; z-index:40;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  width:48px; height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.brand__name{font-weight:950; letter-spacing:.2px; font-size:1.05rem}
.brand__tag{color:var(--muted); font-size:.86rem}

.nav{display:flex; align-items:center}
.nav__toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  cursor:pointer;
}
.nav__toggle span{display:block; height:2px; background:#fff; margin:7px 10px; opacity:.9}
.nav__list{
  display:flex; align-items:center; gap:18px;
  list-style:none; margin:0; padding:0;
}
.nav__list a{color:var(--muted); font-weight:700}
.nav__list a:hover{color:var(--text)}
.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(40,185,184,.95), rgba(177,207,51,.85));
  color:#03131f !important;
  font-weight:900 !important;
  box-shadow: 0 12px 30px rgba(40,185,184,.25);
}

.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:saturate(1.06) contrast(1.05);
  transform:scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.55) 55%, rgba(11,18,32,.15) 100%);
}
.hero__content{position:relative; padding:60px 0}
.hero__card{
  width:min(640px, 100%);
  background: rgba(15,26,46,.75);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:28px;
  box-shadow: var(--shadow);
}
.hero__badge{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}
.hero h1{margin:0 0 10px; font-size: clamp(2rem, 4vw, 3.1rem); line-height:1.05}
.hero__lead{margin:0 0 18px; color:var(--muted); font-size:1.05rem}
.accent{
  background: linear-gradient(90deg, var(--teal), var(--green), var(--orange));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 6px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
  transition: .2s transform, .2s background, .2s border-color, .2s box-shadow;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.07)}
.btn--primary{
  border-color: rgba(40,185,184,.45);
  background: linear-gradient(135deg, rgba(40,185,184,.95), rgba(243,145,31,.88));
  color:#03131f;
  box-shadow: 0 14px 30px rgba(40,185,184,.20);
}
.btn--outline{
  border-color: rgba(177,207,51,.45);
  background: rgba(177,207,51,.08);
}
.btn--ghost{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: var(--muted);
}
.stack{display:flex; flex-direction:column; gap:10px; align-items:stretch}
.hero__mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:18px;
}
.mini{
  padding:12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(0,0,0,.12);
}
.mini__k{color:var(--muted); font-weight:800; font-size:.85rem}
.mini__v{font-weight:900; margin-top:2px; font-size:.95rem}

.section{padding:72px 0}
.section--soft{background: linear-gradient(180deg, rgba(255,255,255,.03), transparent)}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 8px; font-size: clamp(1.6rem, 2.6vw, 2.2rem)}
.section__head p{margin:0; color:var(--muted); max-width:70ch}

.grid{display:grid; gap:16px}
.services{grid-template-columns: repeat(3, minmax(0, 1fr))}
.card{
  background: rgba(15,26,46,.70);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.card--tight{padding:18px}
.card__icon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:10px;
  font-size:1.2rem;
}
.card h3{margin:0 0 6px; font-size:1.1rem}
.card p{margin:0; color:var(--muted)}
.card__head{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px}
.link{color:#ccefff; font-weight:900}
.muted{color:var(--muted)}
.fineprint{font-size:.9rem; color:var(--muted); margin:12px 0 0}

.section__note{margin-top:18px}
.note{
  border-radius: var(--radius);
  padding:18px;
  border:1px solid rgba(222,68,93,.28);
  background: linear-gradient(135deg, rgba(222,68,93,.14), rgba(40,185,184,.10));
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
}
.note__title{font-weight:950}
.note__text{color:var(--muted)}
.note__text a{font-weight:950; color:#ffd6dd}

.carousel{
  position:relative;
  border-radius: var(--radius);
  padding:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.carousel__track{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
  scrollbar-width: thin;
}
.carousel__track::-webkit-scrollbar{height:10px}
.carousel__track::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18); border-radius:999px}
.thumb{
  flex:0 0 auto;
  width:170px;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  cursor:pointer;
  scroll-snap-align:start;
  transition:.2s transform, .2s box-shadow, .2s border-color;
}
.thumb:hover{transform:translateY(-2px); border-color:rgba(40,185,184,.45); box-shadow: 0 16px 35px rgba(0,0,0,.25)}
.thumb img{width:100%; height:100%; object-fit:cover}
.thumb--mini{width:120px; border-radius:16px}

.carousel__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(11,18,32,.72);
  color: var(--text);
  font-size: 28px;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.carousel__btn--left{left:10px}
.carousel__btn--right{right:10px}

.gallery{grid-template-columns: repeat(4, minmax(0, 1fr))}
.gallery__item{
  border:1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  overflow:hidden;
  cursor:pointer;
  padding:0;
  transition:.2s transform, .2s border-color, .2s box-shadow;
}
.gallery__item:hover{transform:translateY(-2px); border-color:rgba(243,145,31,.40); box-shadow: 0 16px 35px rgba(0,0,0,.25)}
.gallery__item img{width:100%; height:100%; object-fit:cover; aspect-ratio: 1/1}

.video{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:16px;
  align-items:stretch;
}
.video__frame{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
}
.video__frame iframe{
  width:100%;
  height:100%;
  min-height: 360px;
  border:0;
}
.video__side{display:flex}
.social{grid-template-columns: 1.2fr .8fr}
.fb-wrap{border-radius: 18px; overflow:hidden; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.02); padding:10px}
.ig-mini{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px}

.contact{grid-template-columns: 1.1fr .9fr}
.map{
  margin-top:12px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.map iframe{width:100%; height:320px; border:0}
.contact__quick{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.form{display:grid; gap:12px; margin-top:10px}
label{display:grid; gap:6px; font-weight:900}
input,textarea{
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(40,185,184,.55);
  box-shadow: 0 0 0 4px rgba(40,185,184,.12);
}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.footer__inner{
  padding:26px 0;
  display:grid;
  grid-template-columns: 1.2fr .4fr .4fr;
  gap:16px;
}
.footer__brand{display:flex; align-items:center; gap:12px}
.footer__logo{width:44px; height:44px; border-radius:14px; border:1px solid rgba(255,255,255,.12)}
.footer__name{font-weight:950}
.footer__muted{color:var(--muted); margin-top:2px; font-size:.95rem}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; margin-top:10px}
.footer__links a{
  color:var(--muted);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  font-weight:850;
}
.footer__links a:hover{color:var(--text); border-color: rgba(255,255,255,.18)}
.footer__col{padding-top:6px}
.footer__title{font-weight:950; margin-bottom:6px}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 0;
}
.footer__bottom_inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.copy{margin:0; color:var(--muted)}
.made{margin:0; color:var(--muted)}

.fab{
  position:fixed;
  right:16px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  font-weight:950;
  z-index:60;
  transition:.2s transform, .2s background;
}
.fab:hover{transform:translateY(-2px); background: rgba(11,18,32,.92)}
.fab--whatsapp{bottom:76px}
.fab--call{bottom:18px}
.fab--whatsapp::before{
  content:"";
  width:12px; height:12px; border-radius:999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(177,207,51,.18);
}
.fab--call::before{
  content:"";
  width:12px; height:12px; border-radius:999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(40,185,184,.16);
}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.82);
  display:none;
  place-items:center;
  padding:22px;
  z-index:80;
}
.lightbox.is-open{display:grid}
.lightbox__img{
  max-width:min(980px, 100%);
  max-height: 85vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}
.lightbox__close{
  position:fixed;
  top:16px; right:16px;
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(11,18,32,.78);
  color:var(--text);
  font-size:30px;
  cursor:pointer;
}

.reveal{opacity:0; transform: translateY(14px); transition: .7s opacity, .7s transform}
.reveal.is-visible{opacity:1; transform: translateY(0)}

.thanks{min-height:100vh; display:grid; place-items:center}
.thanks__wrap{padding:60px 0}
.thanks__card{text-align:center; padding:28px}
.thanks__logo{width:86px; height:86px; margin:0 auto 12px; border-radius:24px; border:1px solid rgba(255,255,255,.12)}
.thanks h1{margin:0 0 10px}
.thanks p{color:var(--muted); margin:0 0 16px}

@media (max-width: 980px){
  .services{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .gallery{grid-template-columns: repeat(3, minmax(0, 1fr))}
  .video{grid-template-columns: 1fr}
  .social{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr; gap:10px}
  .hero__mini{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav__toggle{display:block}
  .nav__list{
    position: absolute;
    top: 68px;
    right: 0;
    width: min(360px, calc(100vw - 32px));
    background: rgba(11,18,32,.90);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap:10px;
    display:none;
    box-shadow: var(--shadow);
  }
  .nav__list.is-open{display:flex}
  .nav__list a{padding:10px 12px; border-radius:14px; border:1px solid rgba(255,255,255,.06); background:rgba(255,255,255,.02)}
  .nav__cta{display:inline-flex; justify-content:center}
  .carousel__btn{display:none}
  .thumb{width:150px}
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .hero__content{padding:44px 0}
  .hero{min-height: 78vh}
}
