:root{
  --wos-blue-950:#071a34;
  --wos-blue-900:#0d2f57;
  --wos-blue-800:#174678;
  --wos-blue-700:#2864a6;
  --wos-blue-600:#3f7fca;
  --wos-blue-100:#d7e8fb;
  --wos-blue-050:#f3f8ff;
  --wos-text:#173453;
  --wos-muted:#5f7690;
  --wos-white:#ffffff;
  --wos-border:rgba(23,70,120,0.1);
  --wos-shadow:0 22px 60px rgba(13,47,87,0.08);
  --wos-shadow-strong:0 30px 80px rgba(13,47,87,0.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body.wos-page{
  --product-page-bg:url("../imgs/FONDO_AZUL-01.png");
  color:var(--wos-text);
  font-family:Inter, "Segoe UI", Arial, sans-serif;
}

.wos-shell{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.wos-nav{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(23,70,120,0.08);
}

.wos-nav .wos-shell{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.wos-back{
  color:var(--wos-blue-800);
  text-decoration:none;
  font-weight:700;
}

.wos-logo{
  height:42px;
  width:auto;
}

.wos-hero{
  padding:56px 0 24px;
}

.wos-hero-panel{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap:34px;
  align-items:center;
  padding:34px;
  border-radius:34px;
  background:linear-gradient(135deg, #ffffff, #f4f9ff);
  border:1px solid rgba(23,70,120,0.08);
  box-shadow:var(--wos-shadow-strong);
}

.wos-kicker,
.wos-eyebrow,
.wos-section-head span{
  display:inline-block;
  color:var(--wos-blue-700);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:800;
}

.wos-copy h1,
.wos-section-head h2,
.wos-feature-block h3,
.wos-panel h3,
.wos-cta-panel h2{
  color:var(--wos-blue-900);
}

.wos-copy h1{
  margin:16px 0 0;
  font-size:clamp(44px, 7vw, 86px);
  line-height:0.95;
  letter-spacing:-0.03em;
}

.wos-title-mark{
  margin:18px 0 0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.wos-title-mark img{
  width:min(100%, 430px);
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 16px 30px rgba(13,47,87,0.12));
}

.wos-lead{
  margin:20px 0 0;
  color:#274868;
  font-size:19px;
  line-height:1.7;
  max-width:760px;
}

.wos-hero-notes{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:28px;
}

.wos-note{
  padding:18px 18px 16px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(23,70,120,0.08);
  box-shadow:var(--wos-shadow);
}

.wos-note strong{
  display:block;
  color:var(--wos-blue-900);
  font-size:15px;
}

.wos-note span{
  display:block;
  margin-top:8px;
  color:var(--wos-muted);
  line-height:1.6;
  font-size:14px;
}

.wos-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.wos-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.wos-btn:hover{
  transform:translateY(-1px);
}

.wos-btn-primary{
  color:var(--wos-white);
  background:linear-gradient(135deg, #1c5694, #3f7fca);
  box-shadow:0 16px 40px rgba(28,86,148,0.28);
}

.wos-btn-secondary{
  color:var(--wos-blue-800);
  background:#ffffff;
  border:1px solid rgba(23,70,120,0.16);
}

.wos-media-card{
  padding:28px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(63,127,202,0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
  border:1px solid var(--wos-border);
  box-shadow:var(--wos-shadow);
}

.wos-media{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:18px;
}

.wos-actions-media{
  justify-content:center;
}

.wos-media-card img{
  width:100%;
  display:block;
}

.wos-video-section{
  padding-top:18px;
}

.wos-video-feature{
  margin-top:24px;
  display:grid;
  grid-template-columns:minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap:24px;
  align-items:center;
  padding:26px;
  border-radius:30px;
  background:linear-gradient(135deg, #ffffff, #f3f8ff);
  border:1px solid var(--wos-border);
  box-shadow:var(--wos-shadow-strong);
}

.wos-video-copy h3{
  margin:12px 0 0;
  color:var(--wos-blue-900);
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.05;
}

.wos-video-copy p{
  margin:16px 0 0;
  color:var(--wos-muted);
  line-height:1.72;
  font-size:15px;
}

.wos-video-actions{
  margin-top:24px;
}

.wos-video-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg, #ffffff, #eef5ff);
  border:2px solid var(--wos-blue-700);
  box-shadow:0 28px 70px rgba(13,47,87,0.18);
}

.wos-feature-video{
  width:100%;
  display:block;
  background:#061a31;
  aspect-ratio:16 / 9;
  object-fit:cover;
}

.wos-video-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  border:0;
  background:linear-gradient(180deg, rgba(7,26,52,0.1), rgba(7,26,52,0.28));
  color:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  cursor:pointer;
  transition:background-color .2s ease, opacity .2s ease;
}

.wos-video-overlay:hover{
  background:linear-gradient(180deg, rgba(7,26,52,0.16), rgba(7,26,52,0.34));
}

.wos-video-card.is-playing .wos-video-overlay{
  opacity:0;
  pointer-events:none;
}

.wos-video-play{
  width:88px;
  height:88px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.94);
  color:var(--wos-blue-800);
  box-shadow:0 16px 40px rgba(7,26,52,0.24);
  font-size:30px;
}

.wos-video-overlay-text{
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.wos-video-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:120;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.wos-video-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.wos-video-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,26,52,0.7);
  backdrop-filter:blur(6px);
}

.wos-video-modal-card{
  position:relative;
  z-index:1;
  width:min(1100px, calc(100vw - 36px));
  border-radius:28px;
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.7);
  box-shadow:0 34px 80px rgba(4,25,47,0.34);
  background:#061a31;
}

.wos-modal-video{
  width:100%;
  display:block;
  max-height:calc(100vh - 48px);
  background:#061a31;
}

.wos-video-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.92);
  color:var(--wos-blue-900);
  font-size:16px;
  box-shadow:0 12px 30px rgba(7,26,52,0.22);
  cursor:pointer;
}

.wos-model-feature{
  margin-top:24px;
  display:grid;
  grid-template-columns:minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap:24px;
  align-items:center;
  padding:26px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(63,127,202,0.18), transparent 34%),
    linear-gradient(135deg, #0a2d54, #0f4273 58%, #1f5d98);
  border:1px solid rgba(185,220,255,0.14);
  box-shadow:0 28px 70px rgba(7,26,52,0.26);
}

.wos-model-copy h3{
  margin:12px 0 0;
  color:#ffffff;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.05;
}

.wos-model-copy p{
  margin:16px 0 0;
  color:rgba(234,244,255,0.84);
  line-height:1.72;
  font-size:15px;
}

.wos-model-actions{
  margin-top:24px;
}

.wos-model-feature .wos-eyebrow{
  color:#9fd1ff;
}

.wos-model-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(159,209,255,0.18), transparent 36%),
    linear-gradient(180deg, #0a2746, #0e355c);
  border:2px solid rgba(159,209,255,0.5);
  box-shadow:0 28px 70px rgba(7,26,52,0.32);
}

.wos-feature-model{
  width:100%;
  display:block;
  height:420px;
  background:transparent;
  --poster-color:transparent;
}

.wos-model-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  border:0;
  background:linear-gradient(180deg, rgba(5,22,43,0.08), rgba(5,22,43,0.26));
  color:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  cursor:pointer;
  transition:background-color .2s ease, opacity .2s ease;
}

.wos-model-card.is-active .wos-model-overlay{
  opacity:0;
  pointer-events:none;
}

.wos-model-play{
  width:88px;
  height:88px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.94);
  color:var(--wos-blue-800);
  box-shadow:0 16px 40px rgba(7,26,52,0.24);
  font-size:30px;
}

.wos-model-overlay-text{
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.wos-model-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:125;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.wos-model-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.wos-model-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,22,43,0.78);
  backdrop-filter:blur(7px);
}

.wos-model-modal-card{
  position:relative;
  z-index:1;
  width:min(1120px, calc(100vw - 36px));
  border-radius:28px;
  overflow:hidden;
  border:2px solid rgba(173,219,255,0.46);
  box-shadow:0 34px 80px rgba(4,25,47,0.42);
  background:linear-gradient(180deg, #06203a, #0b3156);
}

.wos-modal-model{
  width:100%;
  display:block;
  max-height:calc(100vh - 48px);
  height:82vh;
  background:transparent;
  --poster-color:transparent;
}

.wos-model-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.92);
  color:var(--wos-blue-900);
  font-size:16px;
  box-shadow:0 12px 30px rgba(7,26,52,0.22);
  cursor:pointer;
}

.wos-band{
  padding:18px 0 8px;
}

.wos-band-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.wos-band-card,
.wos-panel,
.wos-feature-block,
.wos-cta-panel{
  background:#ffffff;
  border:1px solid var(--wos-border);
  box-shadow:var(--wos-shadow);
}

.wos-band-card{
  padding:22px;
  border-radius:24px;
}

.wos-band-card span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:var(--wos-blue-700);
  background:var(--wos-blue-050);
  font-weight:800;
}

.wos-band-card strong{
  display:block;
  margin-top:16px;
  color:var(--wos-blue-900);
  font-size:18px;
}

.wos-band-card p,
.wos-panel p,
.wos-feature-block p{
  color:var(--wos-muted);
  line-height:1.72;
  font-size:15px;
}

.wos-section{
  padding:34px 0;
}

.wos-section-alt{
  background:linear-gradient(180deg, #f5faff, #edf5ff);
  border-top:1px solid rgba(23,70,120,0.05);
  border-bottom:1px solid rgba(23,70,120,0.05);
}

.wos-section-head{
  max-width:760px;
}

.wos-section-head h2{
  margin:14px 0 0;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.05;
  letter-spacing:-0.03em;
}

.wos-overview-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap:22px;
  margin-top:26px;
}

.wos-side-stack{
  display:grid;
  gap:18px;
}

.wos-grid-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  margin-top:26px;
}

.wos-ai-layout{
  display:grid;
  grid-template-columns:minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap:20px;
  margin-top:26px;
}

.wos-ai-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.wos-panel,
.wos-feature-block{
  padding:26px;
  border-radius:26px;
}

.wos-panel-emphasis{
  background:linear-gradient(180deg, #ffffff, #f7fbff);
}

.wos-panel h3,
.wos-feature-block h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
}

.wos-list{
  margin:18px 0 0;
  padding-left:18px;
}

.wos-list li{
  color:var(--wos-muted);
  margin-bottom:10px;
  line-height:1.65;
}

.wos-cta-panel{
  padding:32px;
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg, #ffffff, #f2f8ff);
}

.wos-cta-panel h2{
  margin:12px 0 0;
  font-size:clamp(30px, 3vw, 42px);
  line-height:1.05;
}

.wos-cta-panel p{
  color:var(--wos-muted);
  max-width:700px;
  line-height:1.7;
  font-size:16px;
}

@media (max-width:960px){
  .wos-hero-panel,
  .wos-video-feature,
  .wos-model-feature,
  .wos-band-grid,
  .wos-overview-layout,
  .wos-grid-2,
  .wos-ai-layout,
  .wos-ai-grid,
  .wos-cta-panel{
    grid-template-columns:1fr;
  }

  .wos-cta-panel{
    display:grid;
  }

  .wos-hero-notes{
    grid-template-columns:1fr;
  }

  .wos-actions-media{
    justify-content:flex-start;
  }
}

@media (max-width:640px){
  .wos-shell{
    width:min(1180px, calc(100% - 28px));
  }

  .wos-nav .wos-shell{
    min-height:64px;
  }

  .wos-logo{
    height:36px;
  }

  .wos-hero{
    padding:30px 0 18px;
  }

  .wos-hero-panel,
  .wos-video-feature,
  .wos-panel,
  .wos-feature-block,
  .wos-band-card,
  .wos-cta-panel{
    padding:22px;
    border-radius:22px;
  }

  .wos-copy h1{
    font-size:46px;
  }

  .wos-title-mark img{
    width:min(100%, 320px);
  }

  .wos-lead{
    font-size:17px;
  }

  .wos-section-head h2{
    font-size:32px;
  }

  .wos-video-play{
    width:72px;
    height:72px;
    font-size:24px;
  }

  .wos-model-play{
    width:72px;
    height:72px;
    font-size:24px;
  }

  .wos-video-modal{
    padding:10px;
  }

  .wos-video-modal-card{
    width:min(100vw - 20px, 1100px);
    border-radius:20px;
  }

  .wos-model-modal{
    padding:10px;
  }

  .wos-model-modal-card{
    width:min(100vw - 20px, 1120px);
    border-radius:20px;
  }

  .wos-feature-model{
    height:320px;
  }
}
