
*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --bg:#f5f7fa;
  --white:#ffffff;
  --dark:#0f172a;
  --muted:#64748b;
  --line:#e2e8f0;
  --brand1:#f45793;
  --brand2:#0da6dd;
  --brand3:#f8c03d;
  --brand4:#0f766e;
  --brand5:#111827;
}

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--dark);
  background:var(--bg);
}

img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;}
button,input,textarea,select{font:inherit;}

.container{ width:min(1140px, calc(100% - 2rem)); margin:0 auto; }

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.7rem 0;
}

.logo-area{ display:flex; align-items:center; gap:.8rem; min-width:0; }
.logo-img{ width:58px; height:58px; object-fit:cover; border-radius:50%; box-shadow:0 10px 25px rgba(0,0,0,.14); }
.logo-text h1{ margin:0; font-size:1.15rem; line-height:1; font-weight:800; }
.logo-text p{ margin:.2rem 0 0; color:var(--muted); font-size:.82rem; }

.main-nav{ display:flex; gap:.35rem; align-items:center; }
.main-nav a{
  padding:.55rem .8rem;
  border-radius:999px;
  color:#334155;
  font-size:.92rem;
  transition:.2s ease;
}
.main-nav a:hover{ background:#eff6ff; color:var(--brand2); }

.header-actions{ display:flex; align-items:center; gap:.75rem; }
.lang-switch{
  display:flex;
  background:#f1f5f9;
  padding:.22rem;
  border-radius:999px;
  border:1px solid var(--line);
}
.lang-btn{
  border:none;
  background:transparent;
  padding:.42rem .7rem;
  border-radius:999px;
  cursor:pointer;
  color:#475569;
  font-weight:600;
}
.lang-btn.active{
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  color:white;
}
.nav-toggle{
  display:none;
  border:none;
  background:transparent;
  font-size:1.5rem;
  cursor:pointer;
  color:var(--dark);
}

.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:stretch;
  justify-content:center;
  overflow:hidden;
  background:#000;
}
.hero-media,
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.72);
}
.hero-overlay{
  background:linear-gradient(90deg, rgba(2,6,23,.72) 0%, rgba(2,6,23,.36) 50%, rgba(2,6,23,.22) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:5rem 0;
  color:#fff;
}
.pill{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:.45rem .95rem;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.hero h2{
  margin:1rem 0 .85rem;
  max-width:700px;
  font-size:clamp(2.1rem, 5vw, 4rem);
  line-height:1.06;
  font-weight:800;
}
.hero p{
  max-width:700px;
  margin:0 0 1.4rem;
  font-size:1.04rem;
  line-height:1.75;
  color:#f1f5f9;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:.85rem; margin-bottom:1rem; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:.65rem; }
.hero-badges span{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:.45rem .8rem;
  border-radius:999px;
  font-size:.84rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:.78rem 1.25rem;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
  font-weight:600;
}
.btn.primary{
  background:linear-gradient(135deg, var(--brand3), #ff8a00);
  color:#111827;
  box-shadow:0 15px 35px rgba(0,0,0,.22);
}
.btn.primary:hover{ transform:translateY(-2px); }
.btn.ghost{
  color:#fff;
  border-color:rgba(255,255,255,.38);
  background:rgba(255,255,255,.06);
}
.btn.ghost:hover{ background:rgba(255,255,255,.12); }
.btn.outline{
  border-color:#cbd5e1;
  color:var(--dark);
  background:#fff;
}
.btn.outline:hover{ border-color:var(--brand2); color:var(--brand2); }

.section{ padding:4.5rem 0; }
.section-accent{ background:linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%); }
.section-contact{ background:linear-gradient(180deg, #0f172a 0%, #111827 100%); color:#e5e7eb; }

.section h3{
  margin:0 0 .7rem;
  font-size:clamp(1.55rem, 3vw, 2.2rem);
  line-height:1.15;
}
.section h4{ margin:1rem 0 .65rem; font-size:1.05rem; }
.section p{ margin:0 0 1rem; color:#475569; line-height:1.8; }
.section-contact p{ color:#cbd5e1; }

.grid-2{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:2rem;
  align-items:center;
}

.icon-list{
  list-style:none;
  padding:0;
  margin:0;
}
.icon-list li{
  margin:.45rem 0;
  line-height:1.6;
}
.section-contact .icon-list li,
.section-contact .icon-list li a{ color:#e5e7eb; }

.image-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(15,23,42,.18);
  background:#fff;
}
.image-card > img:first-child{
  width:100%;
  min-height:320px;
  object-fit:cover;
}
.overlay-img{
  position:absolute;
  right:1rem;
  bottom:1rem;
  width:min(48%, 250px);
  border-radius:18px;
  border:4px solid #fff;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:.9rem 0 1rem;
}
.tag-list span{
  background:#fff0f6;
  color:#be185d;
  border:1px solid #fbcfe8;
  padding:.42rem .8rem;
  border-radius:999px;
  font-size:.82rem;
}
.note{ font-size:.83rem; color:#64748b; }

.video-wrapper{
  position:relative;
  width:min(100%, 820px);
  margin:1.4rem auto 0;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(15,23,42,.24);
}
.video-wrapper::before{ content:""; display:block; padding-top:56.25%; }
.video-wrapper iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
}

.gallery-grid{
  margin-top:1.5rem;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:.9rem;
}
.gallery-item{
  border:none;
  padding:0;
  background:transparent;
  cursor:zoom-in;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 16px 35px rgba(15,23,42,.12);
  transition:.2s ease;
}
.gallery-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.gallery-item:hover{ transform:translateY(-3px) scale(1.01); }

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
}
.lightbox.is-visible{ display:flex; }
.lightbox-backdrop{
  position:absolute; inset:0;
  background:rgba(2,6,23,.84);
}
.lightbox-content{
  position:relative;
  z-index:2;
  width:min(96vw, 980px);
}
.lightbox-content img{
  width:100%;
  max-height:88vh;
  object-fit:contain;
  border-radius:18px;
}
.lightbox-close{
  position:absolute;
  top:-2.4rem;
  right:0;
  border:none;
  background:transparent;
  color:#fff;
  font-size:2rem;
  cursor:pointer;
}

.map-embed iframe{
  width:100%;
  min-height:320px;
  border:0;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
}

.social-section{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1.5rem;
}
.social-links{ display:flex; flex-wrap:wrap; gap:.8rem; }
.btn.social.fb{ background:#111827; color:#fff; }
.btn.social.ig{ background:linear-gradient(135deg, #f45793, #7c3aed, #0ea5e9); color:#fff; }

.contact-form{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:1.4rem;
  border-radius:24px;
  box-shadow:0 22px 50px rgba(0,0,0,.24);
}
.form-group{ margin-bottom:.95rem; }
label{
  display:block;
  margin-bottom:.35rem;
  font-size:.86rem;
  color:#e2e8f0;
}
input, textarea, select{
  width:100%;
  padding:.82rem .92rem;
  border-radius:16px;
  border:1px solid #334155;
  background:#020617;
  color:#f8fafc;
}
input:focus, textarea:focus, select:focus{
  outline:2px solid var(--brand3);
  border-color:var(--brand3);
}
textarea{ resize:vertical; min-height:120px; }
.form-note{ margin-top:.8rem; font-size:.8rem; color:#94a3b8; }

.whatsapp-float{
  position:fixed;
  right:1rem;
  bottom:1rem;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#22c55e;
  color:#062b12;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.7rem;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  z-index:300;
}

.site-footer{
  background:#020617;
  color:#94a3b8;
  padding:1.5rem 0 2rem;
  text-align:center;
  font-size:.82rem;
}
.footer-inner{ display:flex; flex-direction:column; gap:.35rem; }
.site-footer a{ color:#fff; }

@media (max-width: 900px){
  .grid-2{ grid-template-columns:1fr; }
  .hero{ min-height:72vh; }
  .social-section{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 768px){
  .main-nav{
    position:fixed;
    top:79px;
    left:0;
    right:0;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--line);
    padding:.8rem 1rem 1rem;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;
    transition:.22s ease;
  }
  .main-nav.is-open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .nav-toggle{ display:inline-flex; }
  .logo-text h1{ font-size:1rem; }
}

@media (max-width: 560px){
  .container{ width:min(100% - 1.1rem, 1140px); }
  .hero-content{ padding:4.3rem 0; }
  .hero p{ font-size:.97rem; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .pill{ font-size:.72rem; }
}
