body{
  margin:0;
  background:#050505;
  color:#fff;
  font-family:Manrope, Arial, sans-serif;
}

/* HERO */

.bn-hero{
  width:min(1280px,94%);
  margin:0 auto;
  min-height:720px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
  padding:80px 0;
}

.bn-hero h1{
  font-size:clamp(48px,6vw,82px);
  line-height:.98;
  letter-spacing:-4px;
  margin:22px 0;
  color:#fff;
}

.bn-hero h1 span{
  color:#F0DF00;
}

.bn-hero p{
  color:#d0d0d0;
  font-size:20px;
  line-height:1.7;
  max-width:560px;
}

.bn-hero-buttons{
  display:flex;
  gap:14px;
  margin:32px 0;
  flex-wrap:wrap;
}

.bn-hero-features{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  color:#dcdcdc;
  font-size:14px;
  font-weight:800;
}

.bn-hero-phone{
  display:flex;
  justify-content:center;
  align-items:center;
}

.bn-hero-phone img{
  max-height:620px;
  width:auto;
  max-width:100%;
  filter:
    drop-shadow(0 45px 90px rgba(0,0,0,.9))
    drop-shadow(0 0 70px rgba(240,223,0,.12));
}

/* FEATURE */

.bn-feature{
  width:min(1280px,94%);
  margin:0 auto;
  padding:78px 0;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.08);
}

.bn-feature-reverse{
  grid-template-columns:1.2fr .8fr;
}

.bn-number{
  display:inline-block;
  color:#F0DF00;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:18px;
}

.bn-feature h2{
  color:#fff;
  font-size:clamp(36px,4vw,58px);
  line-height:1.05;
  letter-spacing:-2.5px;
  margin:0 0 22px;
}

.bn-feature p{
  color:#c9c9c9;
  font-size:18px;
  line-height:1.7;
  margin:0 0 24px;
}

.bn-feature ul{
  padding:0;
  margin:0;
}

.bn-feature li{
  list-style:none;
  color:#dcdcdc;
  font-size:16px;
  margin:12px 0;
}

.bn-feature li::before{
  content:"✓";
  color:#F0DF00;
  font-weight:900;
  margin-right:10px;
}

.bn-feature-image{
  display:flex;
  justify-content:center;
}

.bn-feature-image img{
  max-height:620px;
  width:auto;
  max-width:100%;
  display:block;
  border-radius:30px;
  filter:
    drop-shadow(0 35px 90px rgba(0,0,0,.85))
    drop-shadow(0 0 60px rgba(240,223,0,.08));
}

/* VIDEOS */

.bn-video-section{
  width:min(1280px,94%);
  margin:70px auto;
  padding:70px 34px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(240,223,0,.08), transparent 30%),
    #070707;
}

.bn-video-header{
  text-align:center;
  max-width:820px;
  margin:0 auto 50px;
}

.bn-video-header h2{
  font-size:52px;
  line-height:1.05;
  margin:20px 0;
  color:#fff;
  font-weight:800;
}

.bn-video-header p{
  color:#b8b8b8;
  font-size:18px;
  line-height:1.7;
}

.bn-video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.bn-video-card{
  background:#101010;
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  overflow:hidden;
  transition:.25s ease;
}

.bn-video-card:hover{
  transform:translateY(-6px);
  border-color:rgba(240,223,0,.45);
}

.bn-video-thumb{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  display:block;
}

.bn-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bn-video-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:74px;
  height:74px;
  border-radius:50%;
  background:#F0DF00;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:800;
  box-shadow:0 10px 40px rgba(0,0,0,.45);
}

.bn-video-content{
  padding:24px;
}

.bn-video-content h3{
  font-size:20px;
  color:#fff;
  margin:0 0 12px;
}

.bn-video-content p{
  color:#bdbdbd;
  font-size:15px;
  line-height:1.6;
  margin:0;
}

.bn-video-footer{
  margin-top:45px;
  text-align:center;
}

/* CTA */

.bn-final-cta{
  width:min(1280px,94%);
  margin:80px auto 100px;
  padding:55px 60px;
  border-radius:30px;
  background:
    radial-gradient(circle at right, rgba(255,255,255,.32), transparent 32%),
    #F0DF00;
  color:#050505;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.bn-final-cta h2{
  color:#050505;
  font-size:clamp(34px,4vw,56px);
  line-height:1.05;
  letter-spacing:-2px;
  margin:0 0 12px;
}

.bn-final-cta p{
  color:#222;
  font-size:18px;
  margin:0;
}

.bn-final-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .bn-hero,
  .bn-feature,
  .bn-feature-reverse{
    grid-template-columns:1fr;
    gap:36px;
  }

  .bn-hero{
    min-height:auto;
    padding:60px 0;
  }

  .bn-feature{
    padding:58px 0;
  }

  .bn-feature-reverse .bn-feature-image{
    order:2;
  }

  .bn-feature-reverse .bn-feature-text{
    order:1;
  }

  .bn-video-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .bn-final-cta{
    flex-direction:column;
    align-items:flex-start;
    padding:42px 28px;
  }
}

@media(max-width:768px){

  .bn-video-section{
    padding:50px 24px;
  }

  .bn-video-header h2{
    font-size:38px;
  }

  .bn-video-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){

  .bn-hero h1{
    font-size:44px;
    letter-spacing:-2px;
  }

  .bn-feature h2{
    font-size:34px;
    letter-spacing:-1.5px;
  }

  .bn-hero p,
  .bn-feature p{
    font-size:16px;
  }

  .bn-hero-buttons,
  .bn-final-buttons{
    justify-content:center;
  }

  .bn-hero-features{
    flex-direction:column;
    gap:10px;
  }

  .bn-hero-phone img,
  .bn-feature-image img{
    max-height:520px;
  }

  .bn-final-buttons .botones-descarga-app{
    height:54px;
  }
}

.bn-more-videos{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
}

.bn-more-videos.active{
  margin-top:40px;
}

.bn-more-videos-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

@media(max-width:1000px){

  .bn-more-videos-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .bn-more-videos-grid{
    grid-template-columns:1fr;
  }

}

.bn-more-videos{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
}

.bn-more-videos.active{
  margin-top:40px;
}

.bn-more-videos-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

@media(max-width:1000px){
  .bn-more-videos-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .bn-more-videos-grid{
    grid-template-columns:1fr;
  }
}
.bn-more-videos{
  max-height:0 !important;
  overflow:hidden !important;
  opacity:0;
  margin-top:0 !important;
  transition:max-height .45s ease, opacity .3s ease, margin-top .3s ease;
}

.bn-more-videos.active{
  opacity:1;
  margin-top:40px !important;
}

.bn-more-videos-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.bn-more-videos .bn-video-card{
  min-width:0;
}

.bn-more-videos .bn-video-thumb{
  aspect-ratio:16/9;
  height:auto;
}

.bn-more-videos .bn-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media(max-width:1000px){
  .bn-more-videos-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:768px){
  .bn-more-videos-grid{
    grid-template-columns:1fr;
  }
}
.bn-more-videos{
  height:0 !important;
  max-height:0 !important;
  overflow:hidden !important;
  opacity:0;
  margin-top:0 !important;
  transition:height .45s ease, opacity .3s ease, margin-top .3s ease;
}

.bn-more-videos.active{
  opacity:1;
  margin-top:40px !important;
}

.bn-more-videos-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.bn-more-videos .bn-video-card{
  min-width:0;
}

.bn-more-videos .bn-video-thumb{
  aspect-ratio:16/9;
  height:auto;
}

.bn-more-videos .bn-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media(max-width:1000px){
  .bn-more-videos-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:768px){
  .bn-more-videos-grid{
    grid-template-columns:1fr;
  }
}

.bn-more-videos{
  display:none;
  margin-top:0;
}

.bn-more-videos.active{
  display:block;
  margin-top:40px;
  animation:bnFadeDown .35s ease both;
}

.bn-more-videos-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.bn-more-videos .bn-video-card{
  min-width:0;
}

.bn-more-videos .bn-video-thumb{
  aspect-ratio:16/9;
}

.bn-more-videos .bn-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@keyframes bnFadeDown{
  from{
    opacity:0;
    transform:translateY(-12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:1000px){
  .bn-more-videos-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:768px){
  .bn-more-videos-grid{
    grid-template-columns:1fr;
  }
}
.bn-feature-actions{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-top:30px;
  flex-wrap:wrap;
}

.bn-feature-video-mini{
  position:relative;
  width:360px;
  max-width:100%;
  aspect-ratio:16/9;
  display:block;
  padding:0;
  border:0;
  border-radius:18px;
  overflow:hidden;
  background:#111;
  cursor:pointer;
  box-shadow:0 22px 55px rgba(0,0,0,.55);
}

.bn-feature-video-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bn-feature-video-mini span{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:72px;
  height:72px;
  border-radius:50%;
  background:#F0DF00;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:900;
  padding-left:4px;
  box-shadow:0 18px 45px rgba(0,0,0,.55);
}

.bn-feature-video-mini:hover{
  transform:translateY(-5px);
}

.bn-feature-actions .yc-btn{
  margin-top:10px;
}
.yc-video-modal{
  position:fixed !important;
  inset:0 !important;
  z-index:2147483647 !important;
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  padding:24px !important;
}

.yc-video-modal.active{
  display:flex !important;
}

.yc-video-modal-backdrop{
  position:absolute !important;
  inset:0 !important;
  background:rgba(0,0,0,.88) !important;
  backdrop-filter:blur(10px) !important;
}

.yc-video-modal-content{
  position:relative !important;
  z-index:2 !important;
  width:min(980px,96vw) !important;
  background:#050505 !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:24px !important;
  overflow:hidden !important;
  box-shadow:0 40px 120px rgba(0,0,0,.8) !important;
}

.yc-video-modal-content iframe{
  width:100% !important;
  aspect-ratio:16/9 !important;
  display:block !important;
  background:#000 !important;
}

.yc-video-modal-close{
  position:absolute !important;
  top:14px !important;
  right:14px !important;
  z-index:5 !important;
  width:42px !important;
  height:42px !important;
  border:0 !important;
  border-radius:50% !important;
  background:#F0DF00 !important;
  color:#050505 !important;
  font-size:30px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}
/* MINIATURAS EN CADA SECCIÓN */

.bn-feature-actions{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-top:30px;
  flex-wrap:wrap;
}

.bn-feature-video-mini{
  position:relative;
  width:360px;
  max-width:100%;
  aspect-ratio:16/9;
  display:block;
  padding:0;
  border:0;
  border-radius:18px;
  overflow:hidden;
  background:#111;
  cursor:pointer;
  box-shadow:0 22px 55px rgba(0,0,0,.55);
}

.bn-feature-video-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.bn-feature-video-mini span{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:72px;
  height:72px;
  border-radius:50%;
  background:#F0DF00;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:900;
  padding-left:4px;
  box-shadow:0 18px 45px rgba(0,0,0,.55);
}

.bn-feature-video-mini:hover{
  transform:translateY(-5px);
}

.bn-feature-actions .yc-btn{
  margin-top:10px;
}

/* MODAL VIDEO */

.yc-video-modal{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  width:100vw !important;
  height:100vh !important;
  z-index:999999999 !important;
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(0,0,0,.88) !important;
  padding:24px !important;
}

.yc-video-modal.active{
  display:flex !important;
}

.yc-video-modal-backdrop{
  position:absolute !important;
  inset:0 !important;
  background:rgba(0,0,0,.88) !important;
}

.yc-video-modal-content{
  position:relative !important;
  z-index:2 !important;
  width:min(980px,96vw) !important;
  aspect-ratio:16/9 !important;
  background:#000 !important;
  border-radius:24px !important;
  overflow:hidden !important;
  box-shadow:0 40px 120px rgba(0,0,0,.9) !important;
}

.yc-video-modal-content iframe{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  display:block !important;
  border:0 !important;
  background:#000 !important;
}

.yc-video-modal-close{
  position:absolute !important;
  top:14px !important;
  right:14px !important;
  z-index:5 !important;
  width:44px !important;
  height:44px !important;
  border-radius:50% !important;
  border:0 !important;
  background:#F0DF00 !important;
  color:#000 !important;
  font-size:32px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}
/* =========================
   DUDAS RÁPIDAS APP NEGOCIO
========================= */

.bn-section-faq{
  margin-top:34px;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(180deg,#0d0d0d,#080808);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.bn-section-faq h3{
  margin:0 0 22px;
  font-size:22px;
  font-weight:800;
  color:#fff;
  letter-spacing:-.5px;
}

.bn-faq-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  background:#111;
  margin-bottom:12px;
}

.bn-faq-item:last-child{
  margin-bottom:0;
}

.bn-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 24px;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  text-align:left;
}

.bn-faq-question span{
  font-size:16px;
  font-weight:700;
  line-height:1.5;
}

.bn-faq-question strong{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#F0DF00;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:800;
  flex-shrink:0;
  transition:.3s ease;
}

.bn-faq-item.active .bn-faq-question strong{
  transform:rotate(45deg);
}

.bn-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  background:#161616;
}

.bn-faq-answer p{
  margin:0;
  padding:0 24px 24px;
  color:#c8c8c8;
  font-size:15px;
  line-height:1.7;
}

.bn-faq-item:hover{
  border-color:rgba(240,223,0,.35);
}

@media(max-width:768px){
  .bn-section-faq{
    padding:20px;
    border-radius:18px;
  }

  .bn-section-faq h3{
    font-size:18px;
  }

  .bn-faq-question{
    padding:16px;
  }

  .bn-faq-question span{
    font-size:15px;
  }

  .bn-faq-answer p{
    padding:0 16px 18px;
    font-size:14px;
  }
}
