/* Bloque CSS extraido */
:root{
      --azul:#123c69;
      --azul2:#1f5f99;
      --celeste:#eaf5ff;
      --verde:#1da981;
      --verde2:#eafaf5;
      --amarillo:#f7b955;
      --morado:#7c63d6;
      --gris:#667085;
      --gris2:#f5f7fa;
      --texto:#1f2937;
      --blanco:#ffffff;
      --borde:#e5eaf0;
      --sombra:0 14px 40px rgba(18,60,105,.10);
      --radio:22px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:#fff;
      color:var(--texto);
      line-height:1.55;
    }

    a{text-decoration:none;color:inherit}
    button{font:inherit}

    .topbar{
      background:var(--azul);
      color:white;
      padding:8px 20px;
      font-size:14px;
      text-align:center;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(229,234,240,.9);
    }

    .nav{
      max-width:1180px;
      margin:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      padding:14px 20px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:var(--azul);
      white-space:nowrap;
    }
    .brand-logo{
      width:64px;
      height:46px;
      object-fit:contain;
      display:block;
      filter:drop-shadow(0 7px 12px rgba(18,60,105,.14));
      flex:0 0 auto;
    }

nav{
      display:flex;
      align-items:center;
      gap:20px;
      font-size:14px;
      color:#344054;
    }

    nav a:hover{color:var(--azul2)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:none;
      border-radius:14px;
      padding:12px 18px;
      cursor:pointer;
      font-weight:700;
      transition:.2s ease;
    }
    .btn-primary{background:var(--azul);color:white}
    .btn-primary:hover{transform:translateY(-1px);background:#0e3157}
    .btn-light{background:white;color:var(--azul);border:1px solid var(--borde)}
    .btn-soft{background:var(--celeste);color:var(--azul)}

    .hero{
      background:
        radial-gradient(circle at 80% 20%, rgba(29,169,129,.14), transparent 34%),
        radial-gradient(circle at 12% 18%, rgba(31,95,153,.13), transparent 28%),
        linear-gradient(180deg,#f9fcff 0%,#ffffff 100%);
      padding:78px 20px 56px;
    }

    .hero-grid{
      max-width:1180px;
      margin:auto;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      align-items:center;
      gap:54px;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:var(--verde2);
      color:#0d765b;
      font-size:14px;
      font-weight:800;
      margin-bottom:20px;
    }

    h1{
      margin:0;
      font-size:clamp(40px,6vw,68px);
      line-height:1.02;
      letter-spacing:-2.4px;
      color:var(--azul);
    }

    .hero p{
      max-width:700px;
      color:var(--gris);
      font-size:19px;
      margin:24px 0 28px;
    }

    .hero-actions{display:flex;flex-wrap:wrap;gap:12px}
    .hero-note{
      margin-top:20px;
      font-size:14px;
      color:#7a8594;
    }

    .visual{
      background:linear-gradient(180deg,#ffffff,#f3f8fc);
      border:1px solid var(--borde);
      border-radius:30px;
      box-shadow:var(--sombra);
      padding:24px;
      position:relative;
      overflow:hidden;
    }

    .mini-window{
      border:1px solid var(--borde);
      border-radius:20px;
      overflow:hidden;
      background:white;
    }

    .window-top{
      display:flex;
      align-items:center;
      gap:7px;
      padding:13px 15px;
      border-bottom:1px solid var(--borde);
      background:#fbfcfe;
    }
    .dot{width:9px;height:9px;border-radius:999px;background:#d7dde5}
    .prompt-box{
      padding:20px;
    }
    .prompt-box h3{margin:0 0 6px;color:var(--azul)}
    .prompt-box p{font-size:14px;margin:0 0 14px;color:var(--gris)}
    .mock-input{
      border:1px solid var(--borde);
      border-radius:15px;
      background:var(--gris2);
      padding:14px;
      color:#475467;
      font-size:14px;
    }
    .chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
    .chip{
      padding:7px 10px;
      border-radius:999px;
      background:var(--celeste);
      color:var(--azul);
      font-size:12px;font-weight:700;
    }

    section{padding:72px 20px}
    .container{max-width:1180px;margin:auto}
    .section-head{
      max-width:760px;
      margin-bottom:32px;
    }
    .section-head.center{margin:0 auto 36px;text-align:center}
    .section-head span{
      color:var(--verde);
      font-weight:800;
      font-size:14px;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    h2{
      margin:8px 0 12px;
      font-size:clamp(30px,4vw,46px);
      line-height:1.1;
      letter-spacing:-1.3px;
      color:var(--azul);
    }
    .section-head p{margin:0;color:var(--gris);font-size:17px}

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

    .task-card{
      border:1px solid var(--borde);
      border-radius:var(--radio);
      padding:22px;
      background:white;
      box-shadow:0 8px 28px rgba(18,60,105,.06);
      transition:.2s ease;
      cursor:pointer;
    }
    .task-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--sombra);
      border-color:#cfe0ee;
    }
    .icon{
      width:48px;height:48px;border-radius:15px;
      display:grid;place-items:center;
      font-size:22px;
      margin-bottom:16px;
      background:var(--celeste);
    }
    .task-card h3{margin:0 0 7px;color:#213547}
    .task-card p{margin:0;color:var(--gris);font-size:14px}
    .task-card small{
      display:block;margin-top:14px;color:var(--azul2);font-weight:800
    }

    .bg-soft{background:var(--gris2)}

    .subjects{
      display:grid;
      grid-template-columns:260px 1fr;
      gap:22px;
      align-items:start;
    }

    .subject-list,
    .subject-panel{
      background:white;
      border:1px solid var(--borde);
      border-radius:var(--radio);
      padding:18px;
      box-shadow:0 8px 28px rgba(18,60,105,.05);
    }

    .subject-btn{
      width:100%;
      border:none;
      background:transparent;
      text-align:left;
      padding:12px 14px;
      border-radius:12px;
      color:#475467;
      cursor:pointer;
      font-weight:700;
      margin:2px 0;
    }
    .subject-btn.active,
    .subject-btn:hover{
      background:var(--celeste);
      color:var(--azul);
    }

    .subject-panel h3{margin:2px 0 8px;color:var(--azul);font-size:25px}
    .subject-panel p{color:var(--gris);margin-top:0}

    .action-pills{
      display:flex;
      gap:9px;
      flex-wrap:wrap;
      margin:18px 0 20px;
    }
    .action-pills span{
      padding:9px 12px;
      background:var(--verde2);
      color:#0f7158;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
    }

    .tool-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .tool{
      padding:16px;
      border:1px solid var(--borde);
      border-radius:16px;
      background:#fff;
    }
    .tool b{display:block;color:#23384e}
    .tool span{font-size:13px;color:var(--gris)}

    .prompt-area{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:stretch;
    }

    .prompt-categories{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }

    .prompt-card{
      border:1px solid var(--borde);
      border-radius:18px;
      padding:18px;
      background:white;
    }
    .prompt-card h4{margin:0 0 5px;color:var(--azul)}
    .prompt-card p{margin:0;color:var(--gris);font-size:14px}

    .prompt-feature{
      padding:28px;
      border-radius:24px;
      background:linear-gradient(135deg,var(--azul),#17598c);
      color:white;
      box-shadow:var(--sombra);
    }
    .prompt-feature h3{margin-top:0;font-size:28px}
    .prompt-feature p{color:#dceafb}
    .prompt-code{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.18);
      padding:16px;
      border-radius:16px;
      font-size:14px;
      margin:18px 0;
    }

    .levels{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .level{
      border:1px solid var(--borde);
      border-radius:22px;
      padding:24px;
      background:white;
    }
    .level:nth-child(1){border-top:5px solid var(--verde)}
    .level:nth-child(2){border-top:5px solid var(--amarillo)}
    .level:nth-child(3){border-top:5px solid var(--morado)}
    .level h3{margin:0 0 8px;color:var(--azul)}
    .level ul{padding-left:18px;color:var(--gris)}
    .level li{margin:7px 0}

    .ideas{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
    }
    .idea{
      padding:18px;
      background:white;
      border:1px solid var(--borde);
      border-radius:18px;
      min-height:170px;
    }
    .idea b{display:block;margin-bottom:8px;color:var(--azul)}
    .idea p{font-size:14px;color:var(--gris);margin:0}

    .project-card{
      display:grid;
      grid-template-columns:1fr auto;
      gap:20px;
      align-items:center;
      padding:28px;
      border:1px solid var(--borde);
      border-radius:24px;
      background:linear-gradient(180deg,#fff,#fbfdff);
    }
    .project-card h3{margin:0 0 8px;color:var(--azul);font-size:28px}
    .project-card p{margin:0;color:var(--gris);max-width:780px}

    footer{
      background:#0f2f4e;
      color:white;
      padding:42px 20px;
      margin-top:40px;
    }
    .footer-grid{
      max-width:1180px;margin:auto;
      display:grid;
      grid-template-columns:1.5fr 1fr 1fr;
      gap:32px;
    }
    footer h4{margin-top:0}
    footer p, footer a{color:#c9d8e6;font-size:14px}
    .copy{
      max-width:1180px;margin:28px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.12);
      color:#9fb2c5;
      font-size:13px;
    }

    .mobile-toggle{display:none}

    @media (max-width: 900px){
      nav{display:none}
      .hero-grid,
      .subjects,
      .prompt-area,
      .project-card,
      .footer-grid{grid-template-columns:1fr}
      .grid-6{grid-template-columns:repeat(2,1fr)}
      .tool-row{grid-template-columns:1fr}
      .ideas{grid-template-columns:repeat(2,1fr)}
      .levels{grid-template-columns:1fr}
      .mobile-toggle{display:inline-flex}
    }

    @media (max-width: 600px){
      .brand-logo{width:56px;height:40px}

      .hero{padding-top:52px}
      .grid-6,
      .prompt-categories,
      .ideas{grid-template-columns:1fr}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      h1{letter-spacing:-1.6px}
    }

/* Bloque CSS extraido: id="educadmaule-estilo-visual-2026" */
:root{
  --azul:#073f7a;
  --azul2:#0875b5;
  --celeste:#eaf8ff;
  --verde:#16b98d;
  --verde2:#e9fbf5;
  --amarillo:#f6b84f;
  --morado:#6c38d5;
  --gris:#64748b;
  --gris2:#f5f9fd;
  --texto:#153457;
  --blanco:#ffffff;
  --borde:#dce9f4;
  --sombra:0 20px 55px rgba(9,59,105,.13);
  --radio:22px;
}

/* Banner estilo afiche EducadMaule */
.photo-cover{
  background:#f7fbff!important;
  color:#062a61!important;
  padding-top:92px!important;
  padding-bottom:0!important;
  overflow:hidden!important;
}

.photo-cover:before,
.photo-cover:after,
.photo-orbit,
.float-bubble{
  display:none!important;
}

.photo-header{
  padding:14px 24px 0!important;
}

.photo-nav{
  width:min(1360px,calc(100% - 22px))!important;
  min-height:68px!important;
  border-radius:22px!important;
  border:1px solid rgba(214,227,239,.86)!important;
  background:rgba(255,255,255,.92)!important;
  box-shadow:0 14px 34px rgba(5,40,88,.10)!important;
}

.photo-brand-name{
  letter-spacing:0!important;
}

.photo-links a{
  border-radius:14px!important;
}

.photo-hero{
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  width:100%!important;
  min-height:560px!important;
  margin:0!important;
  padding:76px max(42px,calc((100vw - 1280px)/2 + 42px)) 162px!important;
  display:grid!important;
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr)!important;
  gap:46px!important;
  align-items:center!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(246,250,255,.96))!important;
}

.photo-hero:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:-2!important;
  opacity:.72!important;
  background:
    radial-gradient(circle,#6d94d0 0 3px,transparent 4px) 44px 36px/34px 34px no-repeat,
    radial-gradient(circle,#7aa0d7 0 2px,transparent 3px) calc(100% - 80px) 132px/28px 28px no-repeat,
    linear-gradient(132deg,transparent 0 72%,rgba(11,150,61,.12) 72% 100%),
    repeating-linear-gradient(132deg,transparent 0 18px,rgba(63,119,196,.14) 18px 19px,transparent 19px 31px)!important;
}

.photo-hero:after{
  content:""!important;
  position:absolute!important;
  left:-6%!important;
  right:-6%!important;
  bottom:-88px!important;
  height:245px!important;
  z-index:-1!important;
  border-radius:58% 42% 0 0 / 42% 64% 0 0!important;
  background:
    linear-gradient(152deg,#05285f 0%,#062a66 62%,#031b45 100%)!important;
  box-shadow:inset 0 22px 42px rgba(255,255,255,.06)!important;
}

.photo-copy{
  position:relative!important;
  z-index:2!important;
  max-width:760px!important;
  padding-left:0!important;
}

.photo-copy:after{
  content:""!important;
  position:absolute!important;
  left:0!important;
  top:260px!important;
  width:98px!important;
  height:4px!important;
  border-radius:999px!important;
  background:#18a83a!important;
}

.photo-main-logo{
  display:block!important;
  width:min(720px,100%)!important;
  max-height:210px!important;
  object-fit:contain!important;
  object-position:left center!important;
  margin:0 0 34px -10px!important;
  filter:drop-shadow(0 16px 22px rgba(7,38,88,.08))!important;
}

.photo-kicker,
.photo-copy h1,
.photo-copy p,
.photo-actions{
  display:none!important;
}

.photo-copy h2{
  max-width:760px!important;
  margin:0!important;
  color:#062a61!important;
  font-size:36px!important;
  line-height:1.28!important;
  letter-spacing:0!important;
  font-weight:950!important;
}

.photo-copy h2 span{
  color:#0fa53a!important;
}

.photo-art{
  position:relative!important;
  z-index:2!important;
  min-height:270px!important;
  display:grid!important;
  place-items:center!important;
}

.photo-art:before{
  content:""!important;
  position:absolute!important;
  right:-70px!important;
  bottom:-160px!important;
  width:330px!important;
  height:330px!important;
  border-radius:70px 0 0 0!important;
  transform:rotate(38deg)!important;
  background:#14a43a!important;
  box-shadow:80px 48px 0 #05285f!important;
  opacity:.95!important;
}

.photo-logo-panel{
  display:none!important;
}

.photo-hero-metrics{
  position:relative!important;
  z-index:2!important;
  width:min(560px,100%)!important;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  align-items:center!important;
  gap:0!important;
  color:#052a65!important;
}

.hero-metric{
  min-height:142px!important;
  display:grid!important;
  place-items:center!important;
  align-content:center!important;
  gap:8px!important;
  padding:10px 20px!important;
  color:#052a65!important;
  text-align:center!important;
  border-left:1px solid rgba(5,42,101,.14)!important;
}

.hero-metric:first-child{
  border-left:0!important;
}

.metric-icon{
  width:68px!important;
  height:68px!important;
  display:grid!important;
  place-items:center!important;
  color:#0d4fa4!important;
}

.metric-icon svg{
  width:68px!important;
  height:68px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:2.5!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}

.hero-metric b{
  font-size:23px!important;
  line-height:1!important;
  letter-spacing:0!important;
}

.hero-metric small{
  font-size:18px!important;
  color:#57606b!important;
  line-height:1.1!important;
}

.photo-feature-strip{
  margin-top:0!important;
  background:#f7fbff!important;
}

@media(max-width:1000px){
  .photo-hero{
    min-height:660px!important;
    grid-template-columns:1fr!important;
    padding:54px 28px 150px!important;
    gap:28px!important;
  }

  .photo-main-logo{
    width:min(640px,100%)!important;
    max-height:188px!important;
    margin-left:0!important;
    margin-bottom:26px!important;
  }

  .photo-copy:after{
    top:230px!important;
  }

  .photo-copy h2{
    font-size:30px!important;
  }

  .photo-art{
    min-height:190px!important;
  }

  .photo-hero-metrics{
    width:min(620px,100%)!important;
  }
}

@media(max-width:700px){
  .photo-cover{
    padding-top:78px!important;
  }

  .photo-header{
    padding:10px 10px 0!important;
  }

  .photo-nav{
    width:100%!important;
    border-radius:18px!important;
  }

  .photo-hero{
    min-height:610px!important;
    padding:36px 18px 128px!important;
  }

  .photo-main-logo{
    max-height:138px!important;
    margin-bottom:22px!important;
  }

  .photo-copy:after{
    top:176px!important;
    width:74px!important;
  }

  .photo-copy h2{
    font-size:22px!important;
    line-height:1.32!important;
  }

  .photo-art{
    min-height:180px!important;
  }

  .photo-hero-metrics{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }

  .hero-metric{
    min-height:118px!important;
    padding:8px 8px!important;
  }

  .metric-icon,
  .metric-icon svg{
    width:44px!important;
    height:44px!important;
  }

  .hero-metric b{
    font-size:15px!important;
  }

  .hero-metric small{
    font-size:12px!important;
  }

  .photo-art:before{
    right:-155px!important;
    bottom:-180px!important;
  }
}

/* Banner definitivo compacto basado en la imagen adjunta */
.photo-cover{
  background:#f6fbff!important;
  padding-top:78px!important;
  padding-bottom:0!important;
  overflow:hidden!important;
}

.photo-cover:before,
.photo-cover:after,
.photo-orbit,
.float-bubble{
  display:none!important;
}

.photo-header{
  padding:10px 18px 0!important;
}

.photo-nav{
  width:min(1210px,calc(100% - 18px))!important;
  min-height:56px!important;
  padding:7px 10px 7px 12px!important;
  gap:10px!important;
  border-radius:18px!important;
  border:1px solid #dcebf5!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:0 10px 26px rgba(5,40,88,.10)!important;
  overflow:hidden!important;
}

.photo-brand{
  gap:6px!important;
  flex:0 0 auto!important;
}

.photo-brand img{
  width:58px!important;
  height:38px!important;
}

.photo-brand-name{
  font-size:19px!important;
  letter-spacing:0!important;
}

.photo-links{
  min-width:0!important;
  gap:2px!important;
  flex:1 1 auto!important;
  justify-content:flex-end!important;
  overflow:hidden!important;
}

.photo-links a{
  gap:4px!important;
  padding:8px 7px!important;
  border-radius:11px!important;
  font-size:11px!important;
  line-height:1!important;
  letter-spacing:0!important;
}

.photo-links a span{
  font-size:13px!important;
}

.photo-search{
  display:none!important;
}

.photo-menu-toggle{
  flex:0 0 auto!important;
}

.photo-hero{
  position:relative!important;
  width:min(1320px,calc(100% - 32px))!important;
  height:360px!important;
  min-height:0!important;
  margin:10px auto 0!important;
  padding:0!important;
  display:block!important;
  overflow:hidden!important;
  border:1px solid #dcebf5!important;
  border-radius:18px!important;
  box-shadow:0 18px 42px rgba(7,45,92,.12)!important;
  background:#fff url("../imagenes/educadmaule-banner-referencia.png") center center / 100% 100% no-repeat!important;
}

.photo-hero:before,
.photo-hero:after,
.photo-copy,
.photo-art,
.photo-main-logo,
.photo-hero-metrics,
.photo-logo-panel{
  display:none!important;
}

.photo-feature-strip{
  margin-top:0!important;
  padding-top:18px!important;
  background:#f6fbff!important;
}

@media(max-width:1100px){
  .photo-nav{
    width:calc(100% - 18px)!important;
  }

  .photo-links a{
    padding:8px 6px!important;
    font-size:10px!important;
  }

  .photo-links a span{
    display:none!important;
  }

  .photo-hero{
    height:310px!important;
  }
}

@media(max-width:760px){
  .photo-cover{
    padding-top:70px!important;
  }

  .photo-header{
    padding:8px 10px 0!important;
  }

  .photo-nav{
    width:100%!important;
    min-height:54px!important;
    overflow:visible!important;
  }

  .photo-brand img{
    width:52px!important;
    height:34px!important;
  }

  .photo-brand-name{
    font-size:17px!important;
  }

  .photo-links{
    display:none!important;
  }

  .photo-menu-toggle{
    display:flex!important;
    margin-left:auto!important;
  }

  .photo-hero{
    width:calc(100% - 20px)!important;
    height:205px!important;
    margin-top:8px!important;
    border-radius:14px!important;
  }

  .photo-feature-strip{
    padding-top:14px!important;
  }
}

/* Banner compacto con imagen de referencia */
.photo-cover{
  background:#f6fbff!important;
  padding-top:78px!important;
  padding-bottom:0!important;
  overflow:hidden!important;
}

.photo-cover:before,
.photo-cover:after,
.photo-orbit,
.float-bubble{
  display:none!important;
}

.photo-header{
  padding:10px 18px 0!important;
}

.photo-nav{
  width:min(1210px,calc(100% - 18px))!important;
  min-height:56px!important;
  padding:7px 10px 7px 12px!important;
  gap:10px!important;
  border-radius:18px!important;
  border:1px solid #dcebf5!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:0 10px 26px rgba(5,40,88,.10)!important;
  overflow:hidden!important;
}

.photo-brand{
  gap:6px!important;
  flex:0 0 auto!important;
}

.photo-brand img{
  width:58px!important;
  height:38px!important;
}

.photo-brand-name{
  font-size:19px!important;
  letter-spacing:0!important;
}

.photo-links{
  min-width:0!important;
  gap:2px!important;
  flex:1 1 auto!important;
  justify-content:flex-end!important;
  overflow:hidden!important;
}

.photo-links a{
  gap:4px!important;
  padding:8px 7px!important;
  border-radius:11px!important;
  font-size:11px!important;
  line-height:1!important;
}

.photo-links a span{
  font-size:13px!important;
}

.photo-search{
  display:none!important;
}

.photo-menu-toggle{
  flex:0 0 auto!important;
}

.photo-hero{
  position:relative!important;
  width:min(1320px,calc(100% - 32px))!important;
  height:360px!important;
  min-height:0!important;
  margin:10px auto 0!important;
  padding:0!important;
  display:block!important;
  overflow:hidden!important;
  border:1px solid #dcebf5!important;
  border-radius:18px!important;
  box-shadow:0 18px 42px rgba(7,45,92,.12)!important;
  background:#fff url("../imagenes/educadmaule-banner-referencia.png") center center / 100% 100% no-repeat!important;
}

.photo-hero:before,
.photo-hero:after,
.photo-copy,
.photo-art,
.photo-main-logo,
.photo-hero-metrics,
.photo-logo-panel{
  display:none!important;
}

.photo-feature-strip{
  margin-top:0!important;
  padding-top:18px!important;
  background:#f6fbff!important;
}

@media(max-width:1100px){
  .photo-nav{
    width:calc(100% - 18px)!important;
  }

  .photo-links a{
    padding:8px 6px!important;
    font-size:10px!important;
  }

  .photo-links a span{
    display:none!important;
  }

  .photo-hero{
    height:310px!important;
  }
}

@media(max-width:760px){
  .photo-cover{
    padding-top:70px!important;
  }

  .photo-header{
    padding:8px 10px 0!important;
  }

  .photo-nav{
    width:100%!important;
    min-height:54px!important;
    overflow:visible!important;
  }

  .photo-brand img{
    width:52px!important;
    height:34px!important;
  }

  .photo-brand-name{
    font-size:17px!important;
  }

  .photo-links{
    display:none!important;
  }

  .photo-menu-toggle{
    display:flex!important;
    margin-left:auto!important;
  }

  .photo-hero{
    width:calc(100% - 20px)!important;
    height:205px!important;
    margin-top:8px!important;
    border-radius:14px!important;
  }

  .photo-feature-strip{
    padding-top:14px!important;
  }
}
body{
  background:
    radial-gradient(circle at 5% 88%,rgba(28,198,210,.12),transparent 18%),
    radial-gradient(circle at 97% 84%,rgba(28,206,157,.10),transparent 18%),
    #fff;
  color:var(--texto);
}
.topbar{
  background:linear-gradient(90deg,#073c78,#087aa2,#17b993);
  padding:7px 20px;
  letter-spacing:.02em;
}
header{
  position:sticky;
  top:0;
  padding:13px 18px;
  border:0;
  background:linear-gradient(115deg,#07437f 0%,#07849d 65%,#18c29d 100%);
  box-shadow:none;
}
.nav{
  max-width:1220px;
  padding:9px 15px;
  min-height:70px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.7);
  border-radius:25px;
  box-shadow:0 13px 35px rgba(3,43,82,.18);
}
.brand{gap:10px;font-size:20px;font-weight:900;color:#083c77}
.brand-logo{width:76px;height:48px;filter:drop-shadow(0 5px 8px rgba(8,73,111,.12))}
nav{gap:5px;color:#163f73}
nav a{
  padding:10px 13px;
  border-radius:17px;
  font-weight:700;
  transition:.2s ease;
}
nav a:hover{
  color:#fff;
  background:linear-gradient(135deg,#0873b3,#17bea1);
  box-shadow:0 8px 18px rgba(10,129,163,.18);
}
.btn{
  border-radius:999px;
  min-height:48px;
  padding:12px 21px;
  box-shadow:none;
}
.btn-primary{
  background:linear-gradient(135deg,#21d5a9,#0caec8);
  box-shadow:0 11px 24px rgba(13,183,178,.24);
}
.btn-primary:hover{
  background:linear-gradient(135deg,#18cba0,#079fb9);
  transform:translateY(-2px);
}
.btn-light{
  background:rgba(255,255,255,.96);
  color:#0b4b83;
  border:1px solid rgba(255,255,255,.7);
}
.btn-soft{background:#e9f8ff;color:#075d9e}

/* HERO: mismo contenido, nueva apariencia */
.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:72px 20px 92px;
  background:
    radial-gradient(circle at 88% 12%,rgba(48,237,190,.68),transparent 30%),
    radial-gradient(circle at 22% 110%,rgba(0,157,222,.58),transparent 34%),
    linear-gradient(125deg,#073b78 0%,#075c91 44%,#09869b 70%,#1bc7a6 100%);
  border-radius:0 0 50% 6%;
}
.hero:before{
  content:"";
  position:absolute;left:-95px;bottom:20px;width:290px;height:290px;
  border-radius:50%;background:rgba(26,161,229,.17);
}
.hero:after{
  content:"";
  position:absolute;right:-85px;bottom:90px;width:330px;height:330px;
  border-radius:50%;background:rgba(31,232,188,.13);
}
.hero-grid{position:relative;z-index:2;max-width:1180px;gap:55px}
.eyebrow{
  background:rgba(2,46,89,.55);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:9px 15px;
}
h1{
  color:#fff;
  font-size:clamp(46px,6vw,72px);
  line-height:.98;
  letter-spacing:-3px;
}
.hero p{color:#eaf8ff;font-size:18px;line-height:1.65}
.hero-note{color:#d4f3f3}
.hero .btn-light{
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.78);
}
.visual{
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.8);
  border-radius:36px;
  padding:24px;
  box-shadow:0 30px 70px rgba(0,39,73,.30),0 0 38px rgba(62,245,211,.16);
}
.mini-window{
  border-radius:22px;
  border-color:#dbeaf4;
  box-shadow:0 10px 28px rgba(23,69,109,.08);
}
.window-top{background:#f7fbfe}
.mock-input{background:#f3f8fc;border-color:#dce9f3}
.chip{background:#e9fbf6;color:#078269}

/* Secciones */
section{padding:76px 20px}
.container{max-width:1180px}
.section-head span{
  color:#0ca889;
  background:#e9fbf6;
  padding:6px 10px;
  border-radius:999px;
  display:inline-block;
  letter-spacing:.07em;
}
h2{
  color:#0b3c75;
  font-size:clamp(31px,4vw,44px);
  letter-spacing:-1.5px;
}
.section-head p{color:#6a7d98}
.bg-soft{
  background:
    radial-gradient(circle at 100% 100%,rgba(37,209,174,.09),transparent 20%),
    linear-gradient(180deg,#f3f9ff,#fff);
}

/* Tarjetas estilo de la maqueta visual */
.task-card,.subject-list,.subject-panel,.prompt-card,.level,.idea,.project-card,.tool{
  border:1px solid #dce9f4;
  background:rgba(255,255,255,.98);
  box-shadow:0 11px 30px rgba(31,70,108,.08);
}
.task-card{
  border-radius:20px;
  min-height:205px;
  padding:22px;
}
.task-card:hover,.prompt-card:hover,.idea:hover,.tool:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 45px rgba(18,65,106,.14);
  border-color:#c7e3ef;
}
.task-card .icon,.icon{
  width:58px;height:58px;border-radius:16px;
  color:#fff;
  background:linear-gradient(145deg,#12c3ac,#087da9);
  box-shadow:0 10px 20px rgba(13,147,161,.18);
}
.task-card:nth-child(2) .icon{background:linear-gradient(145deg,#1b8cff,#0569e4)}
.task-card:nth-child(3) .icon{background:linear-gradient(145deg,#7c47e8,#5625c3)}
.task-card:nth-child(4) .icon{background:linear-gradient(145deg,#36c97d,#0d9e5c)}
.task-card:nth-child(5) .icon{background:linear-gradient(145deg,#f4aa45,#ed7e35)}
.task-card:nth-child(6) .icon{background:linear-gradient(145deg,#16bfc5,#1677c4)}
.task-card h3{color:#103c72}
.task-card p,.tool span,.idea p,.prompt-card p,.subject-panel p{color:#687b96}
.task-card small{color:#056ad8}

.subject-list,.subject-panel{border-radius:22px}
.subject-btn{border-radius:14px}
.subject-btn.active,.subject-btn:hover{
  background:linear-gradient(135deg,#e6f7ff,#e8fbf5);
  color:#08679b;
}
.action-pills span{background:#e8faf4;color:#08795f}
.tool{border-radius:17px}

.prompt-card{border-radius:20px;transition:.2s ease}
.prompt-card h4{color:#0b477f}
.prompt-feature{
  border-radius:28px;
  background:
    radial-gradient(circle at 95% 0,rgba(38,231,190,.35),transparent 32%),
    linear-gradient(135deg,#073f7a,#087a9a 58%,#16b38f);
  box-shadow:0 22px 55px rgba(8,64,104,.22);
}
.prompt-code{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
  border-radius:18px;
}
.level{border-radius:22px}
.level:nth-child(1){border-top:5px solid #18b887}
.level:nth-child(2){border-top:5px solid #f3b44b}
.level:nth-child(3){border-top:5px solid #6c3bd1}
.idea{border-radius:20px;transition:.2s ease}
.project-card{
  border-radius:27px;
  background:
    radial-gradient(circle at 100% 0,rgba(32,212,178,.10),transparent 25%),
    linear-gradient(180deg,#fff,#f7fbff);
  box-shadow:0 15px 40px rgba(21,66,105,.09);
}

/* Footer */
footer{
  margin-top:0;
  background:
    radial-gradient(circle at 90% 0,rgba(24,187,151,.18),transparent 30%),
    linear-gradient(120deg,#062f5d,#074a70);
  padding:48px 20px 30px;
}
footer p,footer a{color:#cfe4f2}
.copy{color:#a9c5d8}

/* Responsive conservando funcionalidad original */
@media(max-width:900px){
  header{padding:10px}
  .nav{border-radius:20px}
  .hero{border-radius:0 0 32px 32px;padding-top:55px}
}
@media(max-width:600px){
  .brand-logo{width:62px;height:42px}
  .hero{padding:48px 16px 72px}
  h1{font-size:46px;letter-spacing:-2.3px}
  section{padding:58px 16px}
  .task-card{min-height:auto}
}

/* Bloque CSS extraido: id="photo-reference-style" */
/* ===== Portada inspirada directamente en la referencia proporcionada ===== */
.photo-cover{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 92% 8%,rgba(35,236,189,.84),transparent 30%),
    radial-gradient(circle at 22% 108%,rgba(0,155,222,.70),transparent 35%),
    linear-gradient(126deg,#073976 0%,#07528b 36%,#087b9a 67%,#19c9a5 100%);
  padding-bottom:64px;
}
.photo-cover:before{
  content:"";
  position:absolute;left:-100px;bottom:-70px;width:330px;height:330px;
  border-radius:50%;background:rgba(27,163,229,.22);
}
.photo-cover:after{
  content:"";
  position:absolute;right:-90px;top:115px;width:390px;height:390px;
  border-radius:50%;background:rgba(39,238,192,.13);
}
.photo-header{
  position:relative!important;
  top:auto!important;
  z-index:20;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:15px 28px 0!important;
}
.photo-nav{
  width:min(1450px,calc(100% - 10px));
  margin:auto;
  min-height:72px;
  padding:9px 16px 9px 20px;
  display:flex;
  align-items:center;
  gap:24px;
  background:#fff;
  color:#0b3568;
  border:1px solid rgba(255,255,255,.8);
  border-radius:28px;
  box-shadow:0 12px 35px rgba(0,39,78,.16);
}
.photo-brand{
  display:flex;align-items:center;gap:9px;
  min-width:max-content;
}
.photo-brand img{width:101px;height:48px;object-fit:contain}
.photo-brand-name{
  font-size:27px;line-height:1;font-weight:950;letter-spacing:-1.1px;
  color:#092f69;
}
.photo-brand-name strong{color:#0aa98f}
.photo-links{
  display:flex!important;
  align-items:center;
  justify-content:center;
  flex:1;
  gap:7px!important;
  font-size:14px!important;
}
.photo-links a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:11px 14px!important;
  border-radius:18px!important;
  color:#153c70!important;
  font-weight:650!important;
  white-space:nowrap;
  background:transparent!important;
}
.photo-links a:hover,.photo-links a.active{
  color:#fff!important;
  background:linear-gradient(135deg,#0872b5,#18c2aa)!important;
  box-shadow:0 8px 20px rgba(10,127,165,.23);
}
.photo-links a span{font-size:17px}
.photo-search{
  flex:0 0 auto;
  width:45px;height:45px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid #dce8f2;
  font-size:24px;color:#0d3a72;
}

.photo-hero{
  position:relative;
  z-index:5;
  width:min(1340px,calc(100% - 120px));
  min-height:425px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  align-items:center;
  gap:46px;
  padding-top:56px;
}
.photo-copy{padding-left:5px}
.photo-kicker{
  display:inline-flex;
  padding:9px 18px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(2,44,89,.62);
  border:1px solid rgba(255,255,255,.10);
  font-size:15px;font-weight:850;letter-spacing:.01em;
}
.photo-copy h1{
  margin:0 0 8px!important;
  font-size:clamp(62px,6vw,90px)!important;
  line-height:.93!important;
  letter-spacing:-5px!important;
  font-weight:950!important;
  color:#fff!important;
}
.photo-copy h1 span{
  background:linear-gradient(90deg,#39d9df,#4ee8a5);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.photo-copy h2{
  color:#fff!important;
  margin:0 0 16px!important;
  font-size:30px!important;
  letter-spacing:-.8px!important;
}
.photo-copy p{
  max-width:650px;
  margin:0 0 22px!important;
  color:#e9f8ff!important;
  font-size:18px!important;
  line-height:1.52!important;
}
.photo-actions{display:flex;gap:14px;flex-wrap:wrap}
.photo-btn{
  min-height:54px;
  padding:0 25px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:850;
  transition:.2s ease;
}
.photo-btn:hover{transform:translateY(-2px)}
.photo-btn.primary{
  color:#fff;
  background:linear-gradient(135deg,#24dcae,#0db8cb);
  box-shadow:0 13px 28px rgba(7,173,179,.30);
}
.photo-btn.secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.82);
  background:rgba(255,255,255,.05);
}
.photo-art{position:relative;min-height:380px}
.photo-logo-panel{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:330px;height:300px;
  border-radius:38px;
  background:#fff;
  display:grid;place-items:center;
  box-shadow:0 28px 68px rgba(0,39,74,.32),0 0 38px rgba(62,245,211,.20);
}
.photo-logo-panel img{width:73%;height:73%;object-fit:contain}
.photo-orbit{
  position:absolute;
  border:2px dashed rgba(255,255,255,.19);
  border-radius:50%;
}
.orbit-a{width:480px;height:260px;left:50%;top:50%;transform:translate(-50%,-50%) rotate(-8deg)}
.orbit-b{width:420px;height:330px;left:51%;top:49%;transform:translate(-50%,-50%) rotate(16deg)}
.float-bubble{
  position:absolute;
  width:77px;height:77px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;font-size:31px;font-weight:900;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 34px rgba(0,51,94,.25);
  background:linear-gradient(145deg,#12d5ad,#087eb8);
  animation:photoFloat 4.2s ease-in-out infinite;
}
.robot{left:8%;top:9%}
.ai{left:4%;bottom:3%;font-size:24px}
.bulb{right:1%;top:3%;background:linear-gradient(145deg,#0759ad,#08759c);animation-delay:.7s}
.cap{right:-2%;bottom:4%;background:linear-gradient(145deg,#0a64b7,#15a2ac);animation-delay:1.2s}
@keyframes photoFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* Franja de cuatro tarjetas igual que en la referencia */
.photo-feature-strip{
  position:relative;
  z-index:10;
  margin-top:-27px;
  padding:0 0 24px!important;
  background:linear-gradient(180deg,#f8fcff,#fff);
}
.photo-feature-grid{
  width:min(1400px,calc(100% - 100px));
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.photo-feature-card{
  min-height:248px;
  display:block;
  padding:23px 22px;
  background:#fff;
  border:1px solid #dce8f3;
  border-radius:19px;
  box-shadow:0 10px 28px rgba(29,69,109,.08);
  transition:.22s ease;
}
.photo-feature-card:hover{transform:translateY(-6px);box-shadow:0 19px 42px rgba(22,64,104,.13)}
.feature-icon{
  width:59px;height:59px;border-radius:16px;
  display:grid;place-items:center;
  color:#fff;font-size:27px;
  margin-bottom:12px;
}
.c1 .feature-icon{background:linear-gradient(145deg,#12bca8,#0b8fa6)}
.c2 .feature-icon{background:linear-gradient(145deg,#1b8aff,#086de6)}
.c3 .feature-icon{background:linear-gradient(145deg,#7b45e8,#5525c1)}
.c4 .feature-icon{background:linear-gradient(145deg,#39ca7c,#0da15c)}
.photo-feature-card h3{margin:0 0 8px;color:#082f6b;font-size:20px}
.photo-feature-card p{margin:0 0 16px;color:#657894;font-size:15px;line-height:1.48}
.photo-feature-card b{color:#0768d5;font-size:14px}

/* Bloque ¿Por qué? */
.photo-why{
  position:relative;
  overflow:hidden;
  padding:22px 20px 63px!important;
  text-align:center;
  background:
    radial-gradient(circle at 5% 95%,rgba(49,201,215,.20),transparent 18%),
    radial-gradient(circle at 99% 95%,rgba(46,213,179,.16),transparent 18%),
    #fff;
}
.photo-why:before{
  content:"";
  position:absolute;left:-55px;bottom:-75px;width:190px;height:190px;border-radius:50%;
  background:linear-gradient(135deg,rgba(80,188,244,.35),rgba(62,224,194,.35));
}
.photo-why-inner{position:relative;z-index:2}
.photo-why h2{
  margin:0!important;
  color:#0a3671!important;
  font-size:39px!important;
  letter-spacing:-1.3px!important;
}
.photo-why h2 span{color:#0fa88f}
.photo-why p{margin:7px 0 19px;color:#71819c;font-size:16px}
.why-pills{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.why-pills div{
  display:flex;align-items:center;gap:8px;
  padding:10px 18px;
  background:#fff;
  border:1px solid #e1eaf2;
  border-radius:999px;
  box-shadow:0 8px 20px rgba(30,70,110,.07);
  color:#173d71;font-size:14px;
}
.why-pills i{
  width:22px;height:22px;border-radius:50%;
  display:grid;place-items:center;
  background:#20b57b;color:#fff;font-style:normal;font-weight:900;
}

/* El contenido original continúa debajo */
main > section:first-child{padding-top:76px}
#ia{background:#fff}
#ia .section-head.center{max-width:850px}
#ia .grid-6{grid-template-columns:repeat(3,1fr)}

@media(max-width:1100px){
  .photo-links{gap:2px!important}
  .photo-links a{padding:10px 9px!important;font-size:13px}
  .photo-brand-name{font-size:22px}
  .photo-brand img{width:82px}
  .photo-hero{width:min(100% - 50px,1200px)}
}
@media(max-width:900px){
  .photo-header{padding:10px 10px 0!important}
  .photo-nav{width:100%;border-radius:22px}
  .photo-links{display:none!important}
  .photo-search{margin-left:auto}
  .photo-hero{width:calc(100% - 34px);grid-template-columns:1fr;padding-top:44px}
  .photo-art{min-height:340px}
  .photo-feature-grid{width:calc(100% - 34px);grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .photo-brand-name{font-size:19px}
  .photo-brand img{width:66px;height:42px}
  .photo-copy h1{font-size:52px!important;letter-spacing:-3px!important}
  .photo-copy h2{font-size:23px!important}
  .photo-copy p{font-size:16px!important}
  .photo-actions{flex-direction:column}
  .photo-btn{width:100%}
  .photo-logo-panel{width:220px;height:210px;border-radius:29px}
  .photo-art{min-height:280px}
  .float-bubble{width:57px;height:57px;font-size:23px}
  .photo-feature-grid{grid-template-columns:1fr}
  .photo-feature-card{min-height:auto}
  .photo-why h2{font-size:31px!important}
}

/* Bloque CSS extraido: id="photo-mobile-menu-style" */
.photo-menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,#0872b5,#18c2aa);
  box-shadow:0 8px 20px rgba(10,127,165,.20);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
}
.photo-menu-toggle span{
  display:block;
  width:22px;
  height:2.5px;
  border-radius:999px;
  background:#fff;
  transition:.25s ease;
}
.photo-menu-toggle.open span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.photo-menu-toggle.open span:nth-child(2){opacity:0}
.photo-menu-toggle.open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

@media(max-width:900px){
  .photo-search{display:none!important}
  .photo-menu-toggle{display:flex;margin-left:auto}
  .photo-nav{position:relative}

  .photo-links{
    display:none!important;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    z-index:200;
    padding:12px;
    background:#fff;
    border:1px solid #dfeaf4;
    border-radius:20px;
    box-shadow:0 18px 45px rgba(4,47,86,.22);
    flex-direction:column!important;
    align-items:stretch!important;
    gap:5px!important;
  }
  .photo-links.mobile-open{display:flex!important}
  .photo-links a{
    width:100%;
    justify-content:flex-start;
    padding:13px 15px!important;
    border-radius:14px!important;
    font-size:14px!important;
  }
  .photo-links a.active{
    background:linear-gradient(135deg,#0872b5,#18c2aa)!important;
    color:#fff!important;
  }
}
@media(max-width:600px){
  .photo-menu-toggle{width:43px;height:43px;border-radius:13px}
}

/* Bloque CSS extraido: id="educadmaule-ajustes-index-2026" */
:root{
    --page-edge:1cm;
  }

  .nav,
  .hero-grid,
  .container,
  .footer-grid,
  .copy,
  .photo-nav,
  .photo-hero,
  .photo-feature-grid{
    width:calc(100% - (var(--page-edge) * 2))!important;
    max-width:none!important;
  }

  .photo-hero,
  .photo-feature-grid{
    margin-left:auto!important;
    margin-right:auto!important;
  }

  .container,
  .footer-grid,
  .copy,
  .hero-grid,
  .nav{
    margin-left:auto!important;
    margin-right:auto!important;
  }

  .index-back-to-top{
    position:fixed;
    right:1cm;
    bottom:1cm;
    z-index:200;
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:18px;
    color:#fff;
    background:linear-gradient(135deg,#0872b5,#18c2aa);
    box-shadow:0 16px 34px rgba(7,51,84,.24);
    transition:transform .22s ease,box-shadow .22s ease;
  }

  .index-back-to-top:hover,
  .index-back-to-top:focus-visible{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(7,51,84,.30);
  }

  .index-back-to-top:focus-visible{
    outline:3px solid rgba(24,194,170,.35);
    outline-offset:4px;
  }

  .index-back-to-top svg{
    width:28px;
    height:28px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.6;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  @media(max-width:900px){
    :root{--page-edge:17px}
    .index-back-to-top{
      right:17px;
      bottom:17px;
      width:48px;
      height:48px;
      border-radius:16px;
    }
  }

/* Ajustes de compactacion y banco de prompts */
section{
  padding-top:46px!important;
  padding-bottom:46px!important;
}

main > section:first-child{
  padding-top:44px!important;
}

.photo-cover{
  padding-bottom:38px!important;
}

.photo-header{
  padding-top:10px!important;
}

.photo-hero{
  gap:30px!important;
  padding-top:34px!important;
}

.photo-copy p{
  margin-bottom:16px!important;
}

.photo-feature-strip{
  margin-top:-18px!important;
  padding-bottom:12px!important;
}

.photo-feature-grid,
.grid-6,
.subjects,
.levels,
.ideas{
  gap:14px!important;
}

.photo-feature-card{
  min-height:200px!important;
  padding:18px!important;
}

.feature-icon,
.task-card .icon{
  margin-bottom:10px!important;
}

.section-head{
  margin-bottom:22px!important;
}

.section-head.center{
  margin-bottom:24px!important;
}

.section-head h2{
  margin-bottom:8px!important;
}

.task-card,
.subject-list,
.subject-panel,
.level,
.idea,
.project-card,
.tool{
  padding:18px!important;
}

.prompt-area{
  gap:16px!important;
}

.prompt-library{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.prompt-ready-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:16px;
  border:1px solid #dce9f4;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(18,65,106,.07);
}

.prompt-ready-card.prompt-wide{
  grid-column:span 2;
}

.prompt-ready-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

.prompt-ready-head span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(145deg,#12c3ac,#087da9);
  font-size:20px;
}

.prompt-ready-head h3{
  margin:0;
  color:#0b477f;
  font-size:18px;
  line-height:1.18;
}

.prompt-ready-card p{
  margin:0 0 10px;
  color:#687b96;
  font-size:13px;
  line-height:1.42;
}

.prompt-ready-card .prompt-code{
  flex:1;
  margin:0 0 12px;
  padding:12px;
  border-color:#d8e7f3;
  color:#26405c;
  background:#f7fbff;
  font-size:13px;
  line-height:1.45;
}

.prompt-copy{
  width:100%;
  min-height:40px;
  padding:9px 13px!important;
  color:#0b477f!important;
}

.prompt-copy.copied{
  color:#075f36!important;
  background:#dff8ea!important;
}

footer{
  margin-top:18px!important;
  padding-top:30px!important;
  padding-bottom:28px!important;
}

.copy{
  margin-top:18px!important;
  padding-top:14px!important;
}

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

@media(max-width:700px){
  section{
    padding-top:34px!important;
    padding-bottom:34px!important;
  }

  .photo-hero{
    padding-top:24px!important;
  }

  .prompt-library,
  .prompt-ready-card.prompt-wide{
    grid-template-columns:1fr;
    grid-column:auto;
  }
}

/* Menu principal fijo */
.photo-cover{
  padding-top:96px!important;
}

.photo-header{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  z-index:250!important;
  padding:10px 28px 0!important;
}

.photo-nav{
  box-shadow:0 14px 36px rgba(0,39,78,.18)!important;
}

@media(max-width:900px){
  .photo-cover{
    padding-top:86px!important;
  }

  .photo-header{
    padding:10px 10px 0!important;
  }
}

/* Banco de prompts compacto */
.prompt-compact-section{
  padding-top:34px!important;
  padding-bottom:34px!important;
}

.prompt-compact-section .section-head{
  margin-bottom:18px!important;
}

.prompt-compact-section .section-head h2{
  margin-bottom:6px!important;
}

.prompt-workbench,
.prompt-library{
  display:grid!important;
  grid-template-columns:minmax(280px,360px) 1fr!important;
  gap:16px!important;
  align-items:stretch!important;
}

.prompt-library{
  position:relative;
}

.prompt-ready-card{
  grid-column:1!important;
  min-height:0!important;
  padding:10px 12px!important;
  border-radius:14px!important;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(18,65,106,.06)!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease!important;
}

.prompt-ready-card.prompt-wide{
  grid-column:1!important;
}

.prompt-ready-card:hover,
.prompt-ready-card.active{
  transform:translateY(-2px)!important;
  border-color:#10a8bd!important;
  background:linear-gradient(135deg,#f5fcff,#f1fff9)!important;
  box-shadow:0 13px 28px rgba(8,114,181,.12)!important;
}

.prompt-ready-card.active{
  outline:2px solid rgba(20,194,170,.16);
}

.prompt-ready-head{
  gap:9px!important;
  margin-bottom:0!important;
}

.prompt-ready-head span{
  width:34px!important;
  height:34px!important;
  flex-basis:34px!important;
  border-radius:10px!important;
  font-size:15px!important;
}

.prompt-ready-head h3{
  font-size:14px!important;
  line-height:1.15!important;
}

.prompt-ready-card p{
  margin:4px 0 0 43px!important;
  font-size:11px!important;
  line-height:1.28!important;
}

.prompt-ready-card .prompt-code,
.prompt-ready-card .prompt-copy{
  display:none!important;
}

.prompt-active-panel{
  grid-column:2!important;
  grid-row:1 / span 6!important;
  min-height:100%;
  padding:22px!important;
  border-radius:20px;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(7,63,122,.96),rgba(8,122,154,.94) 58%,rgba(22,179,143,.92)),
    url("../Imagenes/Logo Completo.png") right 24px center / min(42%,340px) auto no-repeat;
  box-shadow:0 18px 45px rgba(8,64,104,.20);
  overflow:hidden;
}

.prompt-preview-label{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:5px 11px;
  border-radius:999px;
  color:#ddfffb;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.16);
  font-size:12px;
  font-weight:850;
}

.prompt-active-panel h3{
  margin:13px 0 6px;
  color:#fff;
  font-size:26px;
  line-height:1.08;
}

.prompt-active-panel p{
  max-width:680px;
  margin:0 0 12px;
  color:#e3f8ff;
  font-size:13px;
}

.prompt-active-panel .prompt-code{
  max-height:168px;
  overflow:auto;
  margin:0 0 14px!important;
  padding:14px!important;
  border-radius:14px!important;
  background:rgba(255,255,255,.14)!important;
  border:1px solid rgba(255,255,255,.22)!important;
  color:#fff!important;
  font-size:13px!important;
  line-height:1.45!important;
}

.prompt-active-panel .prompt-copy{
  width:auto!important;
  min-width:170px;
  min-height:40px;
  color:#063d75!important;
  background:#fff!important;
  border:0!important;
}

.prompt-active-panel .prompt-copy.copied{
  color:#075f36!important;
  background:#dff8ea!important;
}

/* Establecimientos */
.schools-section{
  padding-top:34px!important;
  padding-bottom:42px!important;
  background:
    linear-gradient(180deg,#fff,#f3f9ff);
}

.schools-section .section-head{
  margin-bottom:18px!important;
}

.schools-section .section-head h2{
  margin-bottom:6px!important;
}

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

.school-card{
  display:grid;
  grid-template-rows:190px auto;
  min-height:335px;
  overflow:hidden;
  border:1px solid #dce9f4;
  border-radius:22px;
  background:#fff;
  box-shadow:0 15px 38px rgba(21,66,105,.10);
}

.school-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.school-content{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:16px;
}

.school-content span{
  width:max-content;
  padding:5px 10px;
  border-radius:999px;
  color:#08795f;
  background:#e8faf4;
  font-size:12px;
  font-weight:850;
}

.school-content h3{
  min-height:48px;
  margin:0;
  color:#073f7a;
  font-size:21px;
  line-height:1.15;
}

.school-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:auto;
}

.school-actions .btn{
  min-height:42px;
  padding:10px 12px!important;
  justify-content:center;
  text-align:center;
  font-size:13px;
}

@media(max-width:900px){
  .prompt-workbench,
  .prompt-library{
    grid-template-columns:1fr!important;
  }

  .prompt-active-panel{
    grid-column:auto!important;
    grid-row:auto!important;
    order:-1;
    min-height:auto;
  }

  .prompt-ready-card p{
    margin-left:43px!important;
  }

  .school-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .school-card{
    grid-template-rows:160px auto;
    min-height:0;
  }

  .school-actions{
    grid-template-columns:1fr;
  }
}

/* Reordenamiento visual del banco de prompts */
#prompts .prompt-library{
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  grid-auto-rows:auto!important;
  gap:12px!important;
  align-items:stretch!important;
}

#prompts .prompt-ready-card{
  grid-column:auto!important;
  min-height:94px!important;
  padding:11px!important;
}

#prompts .prompt-ready-card.prompt-wide{
  grid-column:auto!important;
}

#prompts .prompt-ready-card:nth-of-type(6){
  grid-column:1 / span 1!important;
  grid-row:2!important;
}

#prompts .prompt-ready-head{
  align-items:center!important;
}

#prompts .prompt-ready-head span{
  width:32px!important;
  height:32px!important;
  flex-basis:32px!important;
}

#prompts .prompt-ready-head h3{
  font-size:13px!important;
}

#prompts .prompt-ready-card p{
  margin:7px 0 0!important;
  font-size:10.5px!important;
}

#prompts .prompt-active-panel{
  grid-column:2 / -1!important;
  grid-row:2!important;
  min-height:178px!important;
  padding:18px!important;
  background:
    linear-gradient(135deg,rgba(7,63,122,.98),rgba(8,122,154,.96) 62%,rgba(22,179,143,.94))!important;
}

#prompts .prompt-active-panel h3{
  margin-top:11px!important;
  font-size:23px!important;
}

#prompts .prompt-active-panel p{
  margin-bottom:10px!important;
}

#prompts .prompt-active-panel .prompt-code{
  max-height:92px!important;
  padding:12px!important;
}

#prompts .prompt-active-panel .prompt-copy{
  min-height:38px!important;
  padding:9px 18px!important;
}

.photo-links{
  gap:4px!important;
}

.photo-links a{
  padding:10px 10px!important;
  font-size:13px!important;
}

@media(max-width:1180px){
  .photo-links a{
    padding:9px 7px!important;
    font-size:12px!important;
  }
}

@media(max-width:980px){
  #prompts .prompt-library{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }

  #prompts .prompt-ready-card:nth-of-type(6){
    grid-column:auto!important;
    grid-row:auto!important;
  }

  #prompts .prompt-active-panel{
    grid-column:1 / -1!important;
    grid-row:auto!important;
  }
}

@media(max-width:640px){
  #prompts .prompt-library{
    grid-template-columns:1fr 1fr!important;
  }

  #prompts .prompt-active-panel{
    grid-column:1 / -1!important;
  }
}

/* Ventana flotante de ayuda para tareas docentes */
#ia .task-card{
  position:relative;
}

#ia .task-card small{
  width:max-content;
  padding:7px 0 0;
}

#ia .task-card:focus-visible{
  outline:3px solid rgba(18,194,170,.35);
  outline-offset:3px;
}

body.task-guide-open{
  overflow:hidden;
}

.task-guide-modal{
  position:fixed;
  inset:0;
  z-index:500;
  display:none;
  place-items:center;
  padding:24px;
}

.task-guide-modal.open{
  display:grid;
}

.task-guide-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,24,49,.62);
  backdrop-filter:blur(8px);
}

.task-guide-dialog{
  position:relative;
  width:min(920px,100%);
  max-height:min(86vh,720px);
  overflow:auto;
  padding:28px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:26px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.98),rgba(244,251,255,.98)),
    url("../imagenes/Logo web.png") right 30px top 28px / 170px auto no-repeat;
  box-shadow:0 28px 80px rgba(2,27,55,.34);
}

.task-guide-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:14px;
  color:#073f7a;
  background:#eaf4ff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.task-guide-tag{
  display:inline-flex;
  margin-bottom:12px;
  padding:7px 12px;
  border-radius:999px;
  color:#08795f;
  background:#e8faf4;
  font-size:12px;
  font-weight:900;
}

.task-guide-dialog h3{
  max-width:620px;
  margin:0 0 8px;
  color:#073f7a;
  font-size:32px;
  line-height:1.08;
}

.task-guide-summary{
  max-width:720px;
  margin:0 0 18px;
  color:#516985;
  font-size:15px;
  line-height:1.55;
}

.task-guide-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.task-guide-grid > div{
  padding:16px;
  border:1px solid #dce9f4;
  border-radius:18px;
  background:#fff;
}

.task-guide-grid h4{
  margin:0 0 9px;
  color:#0b477f;
  font-size:15px;
}

.task-guide-grid ol{
  margin:0;
  padding-left:20px;
}

.task-guide-grid li,
.task-guide-grid p{
  color:#516985;
  font-size:14px;
  line-height:1.52;
}

.task-guide-grid li + li{
  margin-top:7px;
}

.task-guide-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.task-guide-actions .btn{
  min-height:42px;
  padding:10px 18px!important;
}

@media(max-width:720px){
  .task-guide-modal{
    padding:14px;
  }

  .task-guide-dialog{
    padding:22px 18px;
    background-image:linear-gradient(135deg,rgba(255,255,255,.98),rgba(244,251,255,.98));
  }

  .task-guide-dialog h3{
    padding-right:44px;
    font-size:26px;
  }

  .task-guide-grid{
    grid-template-columns:1fr;
  }

  .task-guide-actions .btn{
    width:100%;
  }
}

/* Ajuste final solo para celulares */
@media(max-width:700px){
  :root{
    --page-edge:10px;
  }

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  section{
    padding:28px 0!important;
  }

  .container,
  .footer-grid,
  .copy,
  .photo-nav,
  .photo-hero,
  .photo-feature-grid{
    width:calc(100% - 20px)!important;
    max-width:none!important;
  }

  .photo-cover{
    min-height:auto!important;
    padding-top:76px!important;
    padding-bottom:18px!important;
  }

  .photo-header{
    padding:8px 8px 0!important;
  }

  .photo-nav{
    min-height:58px!important;
    padding:7px 8px!important;
    border-radius:18px!important;
  }

  .photo-brand img{
    width:54px!important;
    height:34px!important;
  }

  .photo-brand-name{
    font-size:16px!important;
  }

  .photo-menu-toggle{
    width:40px!important;
    height:40px!important;
    border-radius:12px!important;
  }

  .photo-links{
    border-radius:16px!important;
    padding:8px!important;
    max-height:calc(100vh - 84px);
    overflow:auto;
  }

  .photo-links a{
    min-height:40px;
    padding:10px 12px!important;
    font-size:13px!important;
  }

  .photo-hero{
    min-height:0!important;
    gap:14px!important;
    padding:22px 16px 18px!important;
    border-radius:22px!important;
  }

  .photo-copy{
    padding-left:0!important;
  }

  .photo-kicker{
    margin-bottom:10px!important;
    padding:7px 12px!important;
    font-size:12px!important;
  }

  .photo-copy h1{
    margin-bottom:4px!important;
    font-size:clamp(38px,14vw,52px)!important;
    line-height:.96!important;
    letter-spacing:0!important;
  }

  .photo-copy h2{
    margin-bottom:8px!important;
    font-size:18px!important;
    letter-spacing:0!important;
  }

  .photo-copy p{
    margin-bottom:14px!important;
    font-size:14px!important;
    line-height:1.42!important;
  }

  .photo-actions{
    gap:8px!important;
  }

  .photo-btn{
    min-height:42px!important;
    padding:0 14px!important;
    font-size:13px!important;
  }

  .photo-art{
    min-height:190px!important;
  }

  .photo-logo-panel{
    width:160px!important;
    height:150px!important;
    border-radius:22px!important;
  }

  .float-bubble{
    width:42px!important;
    height:42px!important;
    font-size:18px!important;
  }

  .photo-feature-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
    margin-top:10px!important;
  }

  .photo-feature-card{
    min-height:104px!important;
    padding:10px 8px!important;
    border-radius:14px!important;
  }

  .feature-icon{
    width:34px!important;
    height:34px!important;
    margin-bottom:6px!important;
    border-radius:10px!important;
    font-size:16px!important;
  }

  .photo-feature-card h3{
    margin-bottom:4px!important;
    font-size:11px!important;
    line-height:1.15!important;
  }

  .photo-feature-card p,
  .photo-feature-card b{
    display:none!important;
  }

  .section-head,
  .section-head.center{
    max-width:none!important;
    margin-bottom:14px!important;
    text-align:left!important;
  }

  .section-head span{
    padding:5px 9px!important;
    font-size:10px!important;
  }

  .section-head h2,
  h2{
    margin-top:7px!important;
    margin-bottom:6px!important;
    font-size:clamp(24px,8vw,32px)!important;
    line-height:1.08!important;
    letter-spacing:0!important;
  }

  .section-head p{
    font-size:13px!important;
    line-height:1.42!important;
  }

  #ia .grid-6,
  .grid-6{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
  }

  #ia .task-card,
  .task-card{
    min-height:118px!important;
    padding:10px 8px!important;
    border-radius:14px!important;
  }

  #ia .task-card .icon,
  .task-card .icon{
    width:32px!important;
    height:32px!important;
    margin-bottom:7px!important;
    border-radius:10px!important;
    font-size:15px!important;
  }

  #ia .task-card h3,
  .task-card h3{
    margin-bottom:4px!important;
    font-size:12px!important;
    line-height:1.16!important;
  }

  #ia .task-card p,
  .task-card p{
    font-size:10.5px!important;
    line-height:1.26!important;
  }

  #ia .task-card small,
  .task-card small{
    margin-top:6px!important;
    padding:0!important;
    font-size:10px!important;
    line-height:1.1!important;
  }

  .subjects{
    grid-template-columns:1fr!important;
    gap:10px!important;
  }

  .subject-list,
  .subject-panel{
    padding:12px!important;
    border-radius:16px!important;
  }

  .subject-list{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:7px;
  }

  .subject-btn{
    margin:0!important;
    min-height:38px;
    padding:8px 7px!important;
    text-align:center!important;
    font-size:11px!important;
    line-height:1.15!important;
  }

  .subject-panel h3{
    font-size:21px!important;
  }

  .action-pills{
    gap:6px!important;
  }

  .action-pills span{
    padding:7px 9px!important;
    font-size:11px!important;
  }

  .tool-row{
    grid-template-columns:1fr!important;
    gap:8px!important;
  }

  .tool{
    padding:12px!important;
  }

  #prompts .prompt-library{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
  }

  #prompts .prompt-ready-card{
    min-height:86px!important;
    padding:9px 7px!important;
    border-radius:13px!important;
  }

  #prompts .prompt-ready-head{
    display:block!important;
  }

  #prompts .prompt-ready-head span{
    width:30px!important;
    height:30px!important;
    margin-bottom:6px!important;
    font-size:14px!important;
  }

  #prompts .prompt-ready-head h3{
    font-size:11px!important;
  }

  #prompts .prompt-ready-card p{
    display:none!important;
  }

  #prompts .prompt-active-panel{
    grid-column:1 / -1!important;
    grid-row:auto!important;
    min-height:0!important;
    padding:15px!important;
    border-radius:16px!important;
  }

  #prompts .prompt-active-panel h3{
    font-size:20px!important;
  }

  #prompts .prompt-active-panel .prompt-code{
    max-height:128px!important;
    font-size:12px!important;
  }

  .levels,
  .ideas{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
  }

  .level,
  .idea{
    min-height:0!important;
    padding:10px 8px!important;
    border-radius:14px!important;
  }

  .level h3,
  .idea b{
    margin-bottom:5px!important;
    font-size:11px!important;
    line-height:1.15!important;
  }

  .level li,
  .idea p{
    font-size:10.5px!important;
    line-height:1.25!important;
  }

  .project-card{
    grid-template-columns:1fr!important;
    gap:12px!important;
    padding:15px!important;
    border-radius:18px!important;
  }

  .project-card h3{
    font-size:22px!important;
  }

  .project-card p{
    font-size:13px!important;
    line-height:1.42!important;
  }

  .project-card .btn{
    width:100%;
    min-height:42px!important;
  }

  .school-grid{
    grid-template-columns:1fr!important;
    gap:10px!important;
  }

  .school-card{
    grid-template-columns:116px 1fr;
    grid-template-rows:auto!important;
    min-height:134px!important;
    border-radius:17px!important;
  }

  .school-card img{
    min-height:100%;
  }

  .school-content{
    padding:11px!important;
    gap:7px!important;
  }

  .school-content h3{
    min-height:0!important;
    font-size:15px!important;
  }

  .school-actions{
    grid-template-columns:1fr!important;
    gap:6px!important;
  }

  .school-actions .btn{
    min-height:34px!important;
    padding:7px 9px!important;
    font-size:11px!important;
  }

  .task-guide-dialog{
    max-height:88vh;
    padding:18px 14px!important;
    border-radius:20px!important;
  }

  .task-guide-close{
    top:12px!important;
    right:12px!important;
    width:36px!important;
    height:36px!important;
    border-radius:12px!important;
    font-size:24px!important;
  }

  .task-guide-dialog h3{
    font-size:23px!important;
    letter-spacing:0!important;
  }

  .task-guide-summary,
  .task-guide-grid li,
  .task-guide-grid p{
    font-size:12.5px!important;
  }

  .task-guide-grid > div{
    padding:12px!important;
    border-radius:15px!important;
  }

  footer{
    padding:28px 0 22px!important;
  }

  .footer-grid{
    grid-template-columns:1fr!important;
    gap:16px!important;
  }

  .copy{
    margin-top:14px!important;
    font-size:11px!important;
  }

  .index-back-to-top{
    right:12px!important;
    bottom:12px!important;
    width:46px!important;
    height:46px!important;
  }
}

@media(max-width:380px){
  #ia .grid-6,
  .grid-6,
  #prompts .prompt-library,
  .levels,
  .ideas,
  .subject-list,
  .photo-feature-grid{
    gap:6px!important;
  }

  #ia .task-card,
  .task-card,
  #prompts .prompt-ready-card,
  .level,
  .idea,
  .photo-feature-card{
    padding:8px 6px!important;
  }

  #ia .task-card h3,
  .task-card h3,
  #prompts .prompt-ready-head h3,
  .level h3,
  .idea b,
  .photo-feature-card h3{
    font-size:10px!important;
  }

  #ia .task-card p,
  .task-card p,
  .level li,
  .idea p{
    display:none!important;
  }
}

@media(max-width:920px) and (hover:none){
  #ia .grid-6,
  .grid-6,
  #prompts .prompt-library,
  .levels,
  .ideas,
  .subject-list,
  .photo-feature-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}

/* Rediseño del banner principal */
.photo-cover{
  background:
    linear-gradient(180deg,#f5fbff 0%,#eef7fb 100%)!important;
  color:#0b2f4f!important;
  padding-bottom:34px!important;
}

.photo-cover:before,
.photo-cover:after,
.photo-orbit,
.float-bubble{
  display:none!important;
}

.photo-hero{
  isolation:isolate;
  overflow:hidden;
  width:min(1240px,calc(100% - 64px))!important;
  min-height:360px!important;
  margin:22px auto 0!important;
  padding:42px 50px!important;
  border:1px solid rgba(255,255,255,.72);
  border-radius:30px!important;
  grid-template-columns:minmax(0,1fr) 360px!important;
  gap:34px!important;
  background:
    linear-gradient(115deg,rgba(7,48,91,.98) 0%,rgba(10,91,121,.96) 52%,rgba(23,178,151,.96) 100%)!important;
  box-shadow:0 26px 70px rgba(13,64,104,.20);
}

.photo-hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 100%),
    linear-gradient(0deg,rgba(255,255,255,.07) 0 1px,transparent 1px 100%);
  background-size:42px 42px;
  opacity:.24;
}

.photo-hero:after{
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:
    linear-gradient(108deg,transparent 0 58%,rgba(255,255,255,.14) 58% 72%,transparent 72%),
    linear-gradient(108deg,transparent 0 68%,rgba(255,255,255,.08) 68% 79%,transparent 79%);
}

.photo-copy{
  max-width:680px;
  padding-left:0!important;
}

.photo-kicker{
  margin-bottom:16px!important;
  padding:8px 13px!important;
  border:1px solid rgba(255,255,255,.22)!important;
  border-radius:10px!important;
  background:rgba(5,35,70,.44)!important;
  color:#eaf8ff!important;
  font-size:13px!important;
  font-weight:850!important;
  letter-spacing:0!important;
}

.photo-copy h1{
  max-width:720px;
  margin:0 0 10px!important;
  color:#fff!important;
  font-size:78px!important;
  line-height:1!important;
  letter-spacing:0!important;
  font-weight:950!important;
}

.photo-copy h1 span{
  color:#58e3b2!important;
  background:none!important;
  -webkit-background-clip:initial!important;
  background-clip:initial!important;
}

.photo-copy h2{
  margin:0 0 14px!important;
  color:#f4fbff!important;
  font-size:27px!important;
  line-height:1.16!important;
  letter-spacing:0!important;
}

.photo-copy p{
  max-width:610px!important;
  margin:0 0 24px!important;
  color:#dff4fb!important;
  font-size:17px!important;
  line-height:1.58!important;
}

.photo-actions{
  gap:12px!important;
}

.photo-btn{
  min-height:48px!important;
  padding:0 20px!important;
  border-radius:12px!important;
}

.photo-btn.primary{
  background:#30d6ae!important;
  color:#082f45!important;
  box-shadow:0 12px 26px rgba(11,169,146,.28)!important;
}

.photo-btn.secondary{
  background:rgba(255,255,255,.12)!important;
  border:1px solid rgba(255,255,255,.52)!important;
}

.photo-art{
  position:relative!important;
  min-height:270px!important;
  display:grid!important;
  place-items:center!important;
}

.photo-art:before{
  content:"";
  position:absolute;
  width:255px;
  height:255px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:26px;
  transform:rotate(9deg);
  background:rgba(255,255,255,.06);
}

.photo-logo-panel{
  position:relative!important;
  left:auto!important;
  top:auto!important;
  transform:none!important;
  width:275px!important;
  height:230px!important;
  border-radius:28px!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:0 22px 55px rgba(3,35,67,.30)!important;
}

.photo-logo-panel img{
  width:72%!important;
  height:72%!important;
}

@media(max-width:900px){
  .photo-hero{
    width:calc(100% - 28px)!important;
    grid-template-columns:1fr!important;
    padding:34px 28px!important;
    gap:24px!important;
    min-height:0!important;
  }

  .photo-copy h1{
    font-size:58px!important;
  }

  .photo-copy h2{
    font-size:23px!important;
  }

  .photo-art{
    min-height:210px!important;
  }

  .photo-logo-panel{
    width:220px!important;
    height:180px!important;
  }
}

@media(max-width:700px){
  .photo-cover{
    padding-bottom:14px!important;
  }

  .photo-hero{
    width:calc(100% - 20px)!important;
    margin-top:14px!important;
    padding:26px 18px 24px!important;
    border-radius:22px!important;
  }

  .photo-copy h1{
    font-size:42px!important;
    line-height:1.02!important;
  }

  .photo-copy h2{
    font-size:19px!important;
  }

  .photo-copy p{
    font-size:14px!important;
    line-height:1.48!important;
  }

  .photo-art{
    min-height:160px!important;
  }

  .photo-logo-panel{
    width:168px!important;
    height:138px!important;
    border-radius:20px!important;
  }
}

/* Banner integrado con logotipo EducadMaule */
.photo-cover{
  background:
    linear-gradient(118deg,#083464 0%,#075a84 46%,#12bfa6 100%)!important;
  padding-top:96px!important;
  padding-bottom:0!important;
}

.photo-hero{
  width:100%!important;
  min-height:430px!important;
  margin:0!important;
  padding:58px max(28px,calc((100vw - 1180px)/2)) 70px!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  grid-template-columns:minmax(0,560px) minmax(360px,1fr)!important;
  gap:52px!important;
  background:
    linear-gradient(110deg,rgba(6,40,80,.96) 0%,rgba(8,92,126,.82) 47%,rgba(21,197,167,.72) 100%)!important;
}

.photo-hero:before{
  background:
    linear-gradient(90deg,rgba(255,255,255,.07) 0 1px,transparent 1px 100%),
    linear-gradient(0deg,rgba(255,255,255,.06) 0 1px,transparent 1px 100%)!important;
  background-size:44px 44px!important;
  opacity:.18!important;
}

.photo-hero:after{
  background:
    linear-gradient(115deg,transparent 0 58%,rgba(255,255,255,.16) 58% 72%,transparent 72%),
    linear-gradient(180deg,rgba(255,255,255,.10),transparent 62%),
    repeating-linear-gradient(135deg,rgba(255,255,255,.10) 0 1px,transparent 1px 18px)!important;
  opacity:.72!important;
}

.photo-copy{
  align-self:center!important;
}

.photo-kicker{
  background:rgba(255,255,255,.12)!important;
  border-color:rgba(255,255,255,.22)!important;
  color:#e8fbff!important;
}

.photo-copy h1{
  font-size:78px!important;
}

.photo-copy p{
  max-width:560px!important;
}

.photo-art{
  min-height:300px!important;
  justify-items:end!important;
}

.photo-art:before{
  width:520px!important;
  height:210px!important;
  right:34px!important;
  border-radius:34px!important;
  transform:rotate(-2deg)!important;
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(255,255,255,.22)!important;
}

.photo-logo-panel{
  width:min(640px,100%)!important;
  height:250px!important;
  padding:0!important;
  border-radius:30px!important;
  overflow:hidden!important;
  background:
    rgba(255,255,255,.96)
    url("../imagenes/educadmaule-logo.png") center / 118% auto no-repeat!important;
  border:1px solid rgba(255,255,255,.82)!important;
  box-shadow:0 28px 70px rgba(2,35,67,.28)!important;
}

.photo-logo-panel img{
  opacity:0!important;
  width:100%!important;
  height:100%!important;
}

.photo-feature-strip{
  margin-top:0!important;
}

@media(max-width:1000px){
  .photo-hero{
    grid-template-columns:1fr!important;
    padding:42px 28px 52px!important;
    gap:28px!important;
  }

  .photo-art{
    justify-items:center!important;
    min-height:230px!important;
  }

  .photo-art:before{
    right:auto!important;
    width:min(520px,92vw)!important;
  }

  .photo-logo-panel{
    width:min(560px,100%)!important;
    height:220px!important;
  }
}

@media(max-width:700px){
  .photo-cover{
    padding-top:76px!important;
  }

  .photo-hero{
    padding:32px 18px 40px!important;
  }

  .photo-copy h1{
    font-size:42px!important;
  }

  .photo-actions{
    flex-direction:column!important;
  }

  .photo-btn{
    width:100%!important;
  }

  .photo-art{
    min-height:175px!important;
  }

  .photo-art:before{
    width:88vw!important;
    height:135px!important;
    border-radius:22px!important;
  }

  .photo-logo-panel{
    width:100%!important;
    height:150px!important;
    border-radius:22px!important;
    background-size:128% auto!important;
  }
}

/* Banner final inspirado en la referencia enviada */
.photo-cover{
  background:#f7fbff!important;
  color:#062a61!important;
  padding-top:92px!important;
  padding-bottom:0!important;
  overflow:hidden!important;
}

.photo-cover:before,
.photo-cover:after,
.photo-orbit,
.float-bubble{
  display:none!important;
}

.photo-header{
  padding:14px 24px 0!important;
}

.photo-nav{
  width:min(1360px,calc(100% - 22px))!important;
  min-height:68px!important;
  border-radius:22px!important;
  border:1px solid rgba(214,227,239,.86)!important;
  background:rgba(255,255,255,.92)!important;
  box-shadow:0 14px 34px rgba(5,40,88,.10)!important;
}

.photo-brand-name,
.photo-copy h1,
.photo-copy h2,
.hero-metric b{
  letter-spacing:0!important;
}

.photo-hero{
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  width:100%!important;
  min-height:560px!important;
  margin:0!important;
  padding:76px max(42px,calc((100vw - 1280px)/2 + 42px)) 162px!important;
  display:grid!important;
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr)!important;
  gap:46px!important;
  align-items:center!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:linear-gradient(180deg,rgba(255,255,255,.97),rgba(246,250,255,.97))!important;
}

.photo-hero:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:-2!important;
  opacity:.72!important;
  background:
    radial-gradient(circle,#6d94d0 0 3px,transparent 4px) 44px 36px/34px 34px no-repeat,
    radial-gradient(circle,#7aa0d7 0 2px,transparent 3px) calc(100% - 80px) 132px/28px 28px no-repeat,
    linear-gradient(132deg,transparent 0 72%,rgba(11,150,61,.12) 72% 100%),
    repeating-linear-gradient(132deg,transparent 0 18px,rgba(63,119,196,.14) 18px 19px,transparent 19px 31px)!important;
}

.photo-hero:after{
  content:""!important;
  position:absolute!important;
  left:-6%!important;
  right:-6%!important;
  bottom:-88px!important;
  height:245px!important;
  z-index:-1!important;
  border-radius:58% 42% 0 0 / 42% 64% 0 0!important;
  background:linear-gradient(152deg,#05285f 0%,#062a66 62%,#031b45 100%)!important;
  box-shadow:inset 0 22px 42px rgba(255,255,255,.06)!important;
}

.photo-copy{
  position:relative!important;
  z-index:2!important;
  max-width:760px!important;
  padding-left:0!important;
  align-self:center!important;
}

.photo-copy:after{
  content:""!important;
  position:absolute!important;
  left:0!important;
  top:260px!important;
  width:98px!important;
  height:4px!important;
  border-radius:999px!important;
  background:#18a83a!important;
}

.photo-main-logo{
  display:block!important;
  width:min(720px,100%)!important;
  max-height:210px!important;
  object-fit:contain!important;
  object-position:left center!important;
  margin:0 0 34px -10px!important;
  filter:drop-shadow(0 16px 22px rgba(7,38,88,.08))!important;
}

.photo-kicker,
.photo-copy h1,
.photo-copy p,
.photo-actions,
.photo-logo-panel{
  display:none!important;
}

.photo-copy h2{
  max-width:760px!important;
  margin:0!important;
  color:#062a61!important;
  font-size:36px!important;
  line-height:1.28!important;
  font-weight:950!important;
}

.photo-copy h2 span{
  color:#0fa53a!important;
}

.photo-art{
  position:relative!important;
  z-index:2!important;
  min-height:270px!important;
  display:grid!important;
  place-items:center!important;
  justify-items:center!important;
}

.photo-art:before{
  content:""!important;
  position:absolute!important;
  right:-70px!important;
  bottom:-160px!important;
  width:330px!important;
  height:330px!important;
  border-radius:70px 0 0 0!important;
  transform:rotate(38deg)!important;
  background:#14a43a!important;
  box-shadow:80px 48px 0 #05285f!important;
  opacity:.95!important;
}

.photo-hero-metrics{
  position:relative!important;
  z-index:2!important;
  width:min(560px,100%)!important;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  align-items:center!important;
  gap:0!important;
  color:#052a65!important;
}

.hero-metric{
  min-height:142px!important;
  display:grid!important;
  place-items:center!important;
  align-content:center!important;
  gap:8px!important;
  padding:10px 20px!important;
  color:#052a65!important;
  text-align:center!important;
  border-left:1px solid rgba(5,42,101,.14)!important;
}

.hero-metric:first-child{
  border-left:0!important;
}

.metric-icon{
  width:68px!important;
  height:68px!important;
  display:grid!important;
  place-items:center!important;
  color:#0d4fa4!important;
}

.metric-icon svg{
  width:68px!important;
  height:68px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:2.5!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}

.hero-metric b{
  font-size:23px!important;
  line-height:1!important;
}

.hero-metric small{
  font-size:18px!important;
  color:#57606b!important;
  line-height:1.1!important;
}

.photo-feature-strip{
  margin-top:0!important;
  background:#f7fbff!important;
}

@media(max-width:1000px){
  .photo-hero{
    min-height:660px!important;
    grid-template-columns:1fr!important;
    padding:54px 28px 150px!important;
    gap:28px!important;
  }

  .photo-main-logo{
    width:min(640px,100%)!important;
    max-height:188px!important;
    margin-left:0!important;
    margin-bottom:26px!important;
  }

  .photo-copy:after{
    top:230px!important;
  }

  .photo-copy h2{
    font-size:30px!important;
  }

  .photo-art{
    min-height:190px!important;
  }

  .photo-hero-metrics{
    width:min(620px,100%)!important;
  }
}

@media(max-width:700px){
  .photo-cover{
    padding-top:78px!important;
  }

  .photo-header{
    padding:10px 10px 0!important;
  }

  .photo-nav{
    width:100%!important;
    border-radius:18px!important;
  }

  .photo-hero{
    min-height:610px!important;
    padding:36px 18px 128px!important;
  }

  .photo-main-logo{
    max-height:138px!important;
    margin-bottom:22px!important;
  }

  .photo-copy:after{
    top:176px!important;
    width:74px!important;
  }

  .photo-copy h2{
    font-size:22px!important;
    line-height:1.32!important;
  }

  .photo-art{
    min-height:180px!important;
  }

  .photo-hero-metrics{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }

  .hero-metric{
    min-height:118px!important;
    padding:8px 8px!important;
  }

  .metric-icon,
  .metric-icon svg{
    width:44px!important;
    height:44px!important;
  }

  .hero-metric b{
    font-size:15px!important;
  }

  .hero-metric small{
    font-size:12px!important;
  }

  .photo-art:before{
    right:-155px!important;
    bottom:-180px!important;
  }
}

/* Banner definitivo compacto basado en la imagen adjunta */
.photo-cover{
  background:#f6fbff!important;
  padding-top:78px!important;
  padding-bottom:0!important;
  overflow:hidden!important;
}

.photo-cover:before,
.photo-cover:after,
.photo-orbit,
.float-bubble{
  display:none!important;
}

.photo-header{
  padding:10px 18px 0!important;
}

.photo-nav{
  width:min(1210px,calc(100% - 18px))!important;
  min-height:56px!important;
  padding:7px 10px 7px 12px!important;
  gap:10px!important;
  border-radius:18px!important;
  border:1px solid #dcebf5!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:0 10px 26px rgba(5,40,88,.10)!important;
  overflow:hidden!important;
}

.photo-brand{
  gap:6px!important;
  flex:0 0 auto!important;
}

.photo-brand img{
  width:58px!important;
  height:38px!important;
}

.photo-brand-name{
  font-size:19px!important;
  letter-spacing:0!important;
}

.photo-links{
  min-width:0!important;
  gap:2px!important;
  flex:1 1 auto!important;
  justify-content:flex-end!important;
  overflow:hidden!important;
}

.photo-links a{
  gap:4px!important;
  padding:8px 7px!important;
  border-radius:11px!important;
  font-size:11px!important;
  line-height:1!important;
  letter-spacing:0!important;
}

.photo-links a span{
  font-size:13px!important;
}

.photo-search{
  display:none!important;
}

.photo-menu-toggle{
  flex:0 0 auto!important;
}

.photo-hero{
  position:relative!important;
  width:min(1320px,calc(100% - 32px))!important;
  height:360px!important;
  min-height:0!important;
  margin:10px auto 0!important;
  padding:0!important;
  display:block!important;
  overflow:hidden!important;
  border:1px solid #dcebf5!important;
  border-radius:18px!important;
  box-shadow:0 18px 42px rgba(7,45,92,.12)!important;
  background:#fff url("../imagenes/educadmaule-banner-referencia.png") center center / 100% 100% no-repeat!important;
}

.photo-hero:before,
.photo-hero:after,
.photo-copy,
.photo-art,
.photo-main-logo,
.photo-hero-metrics,
.photo-logo-panel{
  display:none!important;
}

.photo-feature-strip{
  margin-top:0!important;
  padding-top:18px!important;
  background:#f6fbff!important;
}

@media(max-width:1100px){
  .photo-nav{
    width:calc(100% - 18px)!important;
  }

  .photo-links a{
    padding:8px 6px!important;
    font-size:10px!important;
  }

  .photo-links a span{
    display:none!important;
  }

  .photo-hero{
    height:310px!important;
  }
}

@media(max-width:760px){
  .photo-cover{
    padding-top:70px!important;
  }

  .photo-header{
    padding:8px 10px 0!important;
  }

  .photo-nav{
    width:100%!important;
    min-height:54px!important;
    overflow:visible!important;
  }

  .photo-brand img{
    width:52px!important;
    height:34px!important;
  }

  .photo-brand-name{
    font-size:17px!important;
  }

  .photo-links{
    display:none!important;
  }

  .photo-menu-toggle{
    display:flex!important;
    margin-left:auto!important;
  }

  .photo-hero{
    width:calc(100% - 20px)!important;
    height:205px!important;
    margin-top:8px!important;
    border-radius:14px!important;
  }

  .photo-feature-strip{
    padding-top:14px!important;
  }
}
