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

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

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

.ap-hero h1 span,
.ap-feature h2 span{
  color:#F0DF00;
}

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

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

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

.ap-hero-features span{
  color:#dcdcdc;
}

.ap-hero-image{
  position:relative;
}

.ap-hero-image img{
  width:100%;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 45px 120px rgba(0,0,0,.85),
    0 0 90px rgba(240,223,0,.10);
}

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

.ap-feature-reverse{
  grid-template-columns:1.25fr .75fr;
}

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

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

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

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

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

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

.ap-feature-image img{
  width:100%;
  display:block;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 35px 90px rgba(0,0,0,.75),
    0 0 70px rgba(240,223,0,.07);
}

.ap-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;
}

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

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

.ap-final-cta .yc-btn-yellow{
  background:#050505;
  color:#fff;
  min-width:190px;
}

/* Responsive */

@media(max-width:1000px){

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

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

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

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

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

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

@media(max-width:600px){

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

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

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

  .ap-hero-buttons{
    flex-direction:column;
  }

  .ap-hero-buttons .yc-btn,
  .ap-final-cta .yc-btn{
    width:100%;
  }

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

  .ap-feature-image img,
  .ap-hero-image img{
    border-radius:18px;
  }
}
/* ==================================
   VÍDEOS SaaS
================================== */

.ap-video-section{
  width:min(1280px,94%);
  margin:0 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;
}

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

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

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

/* GRID */

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

/* CARD */

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

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

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

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

/* PLAY */

.ap-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);
}

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

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

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

/* FOOTER */

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

/* RESPONSIVE */

@media(max-width:1000px){

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

}

@media(max-width:768px){

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

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

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

}

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

.ap-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);
  transition:.25s ease;
}

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

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

.ap-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);
}

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

/* VIDEOS SAAS */

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

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

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

.ap-video-thumb{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  display:block;
  border:0;
  padding:0;
  width:100%;
  cursor:pointer;
  background:none;
}

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

.ap-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;
}

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

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

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

/* 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;
}

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

@media(max-width:768px){
  .ap-video-grid{
    grid-template-columns:1fr;
  }
}

/* =========================
   DUDAS RÁPIDAS ÁREA PROFESIONAL
========================= */

.ap-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);
}

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

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

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

.ap-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;
}

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

.ap-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;
}

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

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

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

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

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

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

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

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

  .ap-faq-answer p{
    padding:0 16px 18px;
    font-size:14px;
  }
}
/* =========================
   PASOS INICIALES
========================= */

.ap-start-section{
  width:min(1280px,94%);
  margin:0 auto;
  padding:90px 0 78px;
  border-top:1px solid rgba(255,255,255,.08);
}

.ap-start-header{
  max-width:780px;
  margin-left:auto;
  margin-bottom:52px;
  text-align:left;
}

.ap-start-header h2{
  color:#fff;
  font-size:clamp(42px,5vw,72px);
  line-height:.98;
  letter-spacing:-3.5px;
  margin:18px 0 22px;
}

.ap-start-header p{
  color:#c9c9c9;
  font-size:19px;
  line-height:1.7;
  max-width:620px;
}

.ap-start-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:start;
}

.ap-start-image{
  display:flex;
  align-items:center;
  justify-content:center;
}

.ap-start-image img{
  width:100%;
  display:block;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 35px 90px rgba(0,0,0,.75),
    0 0 70px rgba(240,223,0,.07);
}

.ap-start-content ul{
  padding:0;
  margin:0 0 30px;
}

.ap-start-content li{
  list-style:none;
  color:#dcdcdc;
  font-size:16px;
  margin:13px 0;
}

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

.ap-start-content .ap-feature-actions{
  margin-top:24px;
}

.ap-start-content .ap-section-faq{
  margin-top:34px;
}

@media(max-width:1000px){
  .ap-start-header{
    margin-left:0;
  }

  .ap-start-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
}

@media(max-width:600px){
  .ap-start-section{
    padding:60px 0;
  }

  .ap-start-header h2{
    font-size:40px;
    letter-spacing:-2px;
  }

  .ap-start-header p{
    font-size:16px;
  }

  .ap-start-image img{
    border-radius:18px;
  }
}
/* =========================
   PASOS INICIALES - LAYOUT COMPACTO
========================= */

.ap-start-section{
  width: min(1280px, 94%);
  margin:0 auto;
  padding:70px 0 78px;
  border-top:1px solid rgba(255,255,255,.10);
}

.ap-start-header{
  max-width:760px;
  margin:0 0 42px 0;
  text-align:left;
}

.ap-start-header h2{
  color:#fff;
  font-size:clamp(38px,5vw,64px);
  line-height:.98;
  letter-spacing:-3px;
  margin:18px 0 18px;
}

.ap-start-header p{
  color:#c9c9c9;
  font-size:16px;
  line-height:1.7;
  max-width:620px;
}

.ap-start-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}

.ap-start-image img{
  width:100%;
  display:block;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 35px 90px rgba(0,0,0,.75);
}

.ap-start-content ul{
  padding:0;
  margin:0 0 22px;
}

.ap-start-content li{
  list-style:none;
  color:#dcdcdc;
  font-size:14px;
  margin:10px 0;
  line-height:1.5;
}

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

.ap-start-content .ap-feature-actions{
  margin-top:20px;
}

.ap-start-content .ap-feature-video-mini{
  width:100%;
  max-width:340px;
}

.ap-start-content .ap-section-faq{
  grid-column:1 / -1;
  margin-top:34px;
}

.ap-start-grid .ap-section-faq{
  grid-column:1 / -1;
}

/* Mover FAQ debajo de todo si está dentro de la columna derecha */
.ap-start-content .ap-section-faq{
  width:100%;
}

@media(max-width:900px){
  .ap-start-grid{
    grid-template-columns:1fr;
  }

  .ap-start-content .ap-feature-video-mini{
    max-width:100%;
  }
}

@media(max-width:600px){
  .ap-start-section{
    padding:55px 0;
  }

  .ap-start-header h2{
    font-size:38px;
    letter-spacing:-2px;
  }
}