:root{
  --bg: #0F0F10;
  --block: #141416;
  --section: #1C1C1F;
  --title: #D6C19C;
  --text: #FAFAFA;
  --muted: rgba(250,250,250,.75);
  --line: rgba(214,193,156,.18);
  --max: 900px;
  --video-max: 900px;
  --radius: 16px;
  --gap-y: 24px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--block);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.brand{
  display: inline-flex;
  align-items: center;
}
.brand-logo{
  width: auto;
  height: 42px;
  display: block;
  aspect-ratio: 150 / 50;
}

.hamburger{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #121214;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}
.ham-line{
  height: 2px;
  width: 100%;
  background: var(--title);
  display:block;
  border-radius: 2px;
}

.hamburger .ham-line{
  transition: transform .18s ease, opacity .18s ease;
  transform-origin: center;
}

.hamburger.is-open .ham-line:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open .ham-line:nth-child(2){
  opacity: 0;
}

.hamburger.is-open .ham-line:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

.menu{
  position: absolute;
  top: 64px;
  right: 0;
  left: auto;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--block);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.menu.is-open{ display: flex; }

.menu a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(214,193,156,.16);
  background: #121214;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.menu a:hover{
  border-color: rgba(214,193,156,.35);
}
.menu a:focus{
  outline: 2px solid rgba(214,193,156,.35);
  outline-offset: 2px;
}
.site-main{
  padding-top: 64px;
}
html{
  scroll-behavior: smooth;
}

.section[id]{
  scroll-margin-top: 76px;
}

@media (max-width: 560px){
  .section[id]{
    scroll-margin-top: 72px;
  }
}

.section{
  padding: 0;
  margin: 0 0 var(--gap-y);
  background: var(--bg);
}

.site-main > .section:first-child{
  margin-top: var(--gap-y);
}

.site-main > .section:last-child{
  margin-bottom: 0;
}

.section-hero{ background: var(--bg); }
.section-block{ background: var(--bg); border-top: 0; border-bottom: 0; }

h1, h2, h3{
  margin: 0 0 14px;
  color: var(--title);
  letter-spacing: .5px;
  text-transform: uppercase;
}
h1{ font-size: clamp(30px, 3.2vw, 40px); }
h2{ font-size: clamp(25px, 2.6vw, 30px); }
h3{ font-size: clamp(20px, 2.2vw, 25px); }

p{
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.65;
  font-size: 18px;
}

ul, ol{
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.video-wrap{
  width: min(var(--video-max), 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video{
  width: 100%;
  height: 100%;
  display:block;
}

.content-box{
  background: var(--block);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.img-block{
  margin: -18px -18px 12px;
}

.img-fluid{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  border: 0;
}

.bullets{
  margin: 0 0 12px;
  padding-left: 18px;
  line-height: 1.7;
}
.numbers{
  margin: 0 0 12px;
  padding-left: 18px;
  line-height: 1.7;
}
.cta-line{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(214,193,156,.35);
  color: var(--text);
}

.precio-amarre{
  margin-top: 18px;
  padding: 16px;
  border: 2px solid var(--title);
  border-radius: 16px;
  background: #121214;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.precio-titulo{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--title);
  font-size: 18px;
}

.precio-monto{
  margin: 0;
  font-weight: 900;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.2;
}

.precio-o{
  margin: 4px 0;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.testi-list{
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.testi-card{
  background: #121214;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}

.testi-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testi-avatar{
  width: 100px;
  height: 100px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(214,193,156,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  flex: 0 0 100px;
}

.testi-person{
  display: grid;
  gap: 4px;
}

.testi-name{
  margin: 0;
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--text);
  text-transform: uppercase;
  font-size: 15px;
}

.testi-meta{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.testi-text{
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.social-box{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
}

.social{
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  line-height: 0;
}

.social img{
  width: clamp(70px, 12vw, 120px);
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 921px){
  .social img{
    width: 80px;
    height: 80px;
  }
}

.site-footer{
  margin-top: var(--gap-y);
  background: var(--block);
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer-inner{
  display: flex;
  flex-direction: column;   
  align-items: center;      
  justify-content: center;
  gap: 8px;                
}
.footer-inner > p{
  margin-top: 6px;
  color: rgba(250,250,250,.45);   
  font-weight: 400;              
  font-size: 11px;                
  letter-spacing: .2px;
  text-transform: none;
  text-align: center;
}

@media (max-width: 920px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  :root{ --gap-y: 16px; }

  .header-inner{ height: 60px; }
  .brand-logo{ height: 38px; }
  .site-main{ padding-top: 60px; }
}

@media (max-width: 920px){
  .menu{
    left: 16px;
    right: 16px;
    width: auto;
  }
}

.hero-presentacion{
  margin-top: 16px;
  background: var(--block);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.intro-video-wrap{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
}

/* ===== VIDEO LITE (VIMEO): SOLO IMAGEN HASTA EL CLIC ===== */

.vimeo-lite{
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

/* Poster */
.vimeo-poster{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}

/* Iframe */
.vimeo-lite iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  z-index: 1;
}

/* Al click: ocultar poster inmediato */
.vimeo-lite.is-starting .vimeo-poster{
  opacity: 0;
  pointer-events: none;
  transition: none;
}

/* Ya reproduciendo: ocultar poster + play */
.vimeo-lite.is-playing .vimeo-poster{
  display: none;
}
.vimeo-lite.is-playing .vimeo-play{
  display: none;
}

.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 84px;
  height: 107px;
  display: block;
  z-index: 9999;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  background: transparent;
  overflow: visible;
  line-height: 0;
}

.wa-float img{
  display: block;
  width: 84px;
  height: 107px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 921px){
  .wa-float{
    right: calc(50% - (min(var(--max), calc(100vw - 32px)) / 2) + 16px);
  }
}

.mapa-link{
  display: block;
  width: 100%;
  margin: 16px 0 0;
  text-decoration: none;
  overflow: hidden;
  border-radius: 16px;
}

.bloque-mapa-img{
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  box-sizing: border-box;
  transition: transform .2s ease, filter .2s ease;
}

.mapa-link:hover .bloque-mapa-img{
  transform: scale(1.02);
  filter: brightness(1.05);
}

.footer-privacy{
  margin-top: 8px;
  text-align: center;
  opacity: .9;
}

.footer-privacy h4{
  margin: 6px 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  text-transform: none;
  text-align: center;
}

.footer-privacy p{
  margin: 0 auto;
  font-size: 8px;
  line-height: 1.35;
  max-width: 900px;
  text-transform: none;
  text-align: center;
}

.site-footer .footer-inner > p{
  color: var(--title) !important;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 12px;
}