/* =============================================================
   ESCOLAND-TEMPLATES.CSS — estilos para el theme sin Elementor.
   Renderea Hero + BUSCAMOS + OFRECEMOS + CTA navy + Header + Footer
   complementando base44-clone.css.
   ============================================================= */

:root {
  --eb-navy: #1A2A4A;
  --eb-cyan: #1A9FC1;
  --eb-text: #1C2B40;
  --eb-muted: #4A5568;
  --eb-bg-light: #F7FBFD;
  --eb-border: #E8EEF7;
}

/* ============ BASE ============ */
body.escoland {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--eb-text);
  -webkit-font-smoothing: antialiased;
}
.escoland-main { display: block; }
.escoland-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HEADER ============ */
.escoland-header {
  background: #fff;
  border-bottom: 1px solid var(--eb-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(15, 31, 64, 0.05);
}
.escoland-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.escoland-header__logo img {
  display: block;
  height: 40px;
  width: auto;
}
.escoland-header__nav--desktop {
  margin-left: auto;
  display: flex;
  gap: 32px;
}
.escoland-header__nav--desktop a {
  color: var(--eb-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}
.escoland-header__nav--desktop a:hover { color: var(--eb-cyan); }
.escoland-header__cta {
  background: var(--eb-cyan);
  color: #fff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.escoland-header__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(26,159,193,0.5); }
.escoland-header__cta-icon svg { display: block; }
.escoland-header__toggle {
  display: none;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 1100;
  box-shadow: none !important;
}
.escoland-header__toggle:hover,
.escoland-header__toggle:focus,
.escoland-header__toggle:active {
  background: transparent !important;
  background-color: transparent !important;
  outline: none;
}
.escoland-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 5px auto;
  background: var(--eb-cyan);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.escoland-header__mobile-menu { display: none; }

/* Mobile */
@media (max-width: 1024px) {
  .escoland-header__nav--desktop { display: none; }
  .escoland-header__toggle { display: block; margin-left: auto; }
  .escoland-header__cta {
    padding: 8px 14px;
    font-size: 12px;
    margin-left: auto;
  }
  .escoland-header__cta-text { display: inline; }
  .escoland-header.is-open .escoland-header__cta { visibility: hidden; }
  .escoland-header.is-open .escoland-header__toggle { visibility: hidden; }
  .escoland-header__mobile-close {
    color: var(--eb-cyan);
  }
  .escoland-header__mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 88px 32px 48px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
    pointer-events: none;
  }
  .escoland-header.is-open .escoland-header__mobile-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .escoland-header__mobile-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    font-size: 36px;
    line-height: 1;
    color: var(--eb-navy);
    cursor: pointer;
  }
  .escoland-header__mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 0;
  }
  .escoland-header__mobile-nav a {
    display: block;
    text-align: center;
    padding: 22px 16px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: var(--eb-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--eb-border);
    transition: color 0.25s, background 0.25s;
  }
  .escoland-header__mobile-nav a:hover {
    color: var(--eb-cyan);
    background: var(--eb-bg-light);
  }
  .escoland-header__mobile-nav a:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .escoland-header__logo img { height: 32px; }
  .escoland-header__cta { padding: 7px 12px; font-size: 11px; }
}

/* ============ SECTIONS ============ */
.escoland-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.escoland-section--hero {
  padding: 64px 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.escoland-section--buscamos { background: #fff; }
.escoland-section--ofrecemos {
  background: var(--eb-bg-light);
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}
.escoland-section--cta {
  background: var(--eb-navy);
  padding: 120px 0;
  color: #fff;
}
.escoland-section__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
.escoland-section__eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--eb-cyan);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.escoland-section__h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  line-height: 1.0;
  color: var(--eb-navy);
  margin: 0 0 16px;
  letter-spacing: 0;
}
.escoland-section__accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--eb-cyan);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============ HERO ============ */
.escoland-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.escoland-hero__left { padding-top: 16px; }
.escoland-hero__logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 32px;
}
.escoland-hero__h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 88px;
  line-height: 0.95;
  color: var(--eb-navy);
  margin: 0 0 24px;
  letter-spacing: -1px;
}
.b44-cyan-text { color: var(--eb-cyan) !important; }
.escoland-hero__intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--eb-muted);
  margin: 0 0 32px;
  max-width: 480px;
}
.escoland-hero__lead {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 12px;
}
.escoland-hero__pill {
  display: inline-block;
  background: var(--eb-cyan);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.escoland-hero__h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  line-height: 1.0;
  color: var(--eb-navy);
  margin: 0 0 24px;
  letter-spacing: -1px;
}
.escoland-hero__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--eb-muted);
  margin: 0 0 32px;
  max-width: 480px;
}
.b44-tag-cyan {
  color: var(--eb-cyan) !important;
  font-weight: 700;
}
.escoland-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--eb-navy);
  border: 1.6px solid var(--eb-navy);
  border-radius: 12px;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.escoland-hero__btn:hover {
  background: var(--eb-navy);
  color: #fff;
  transform: translateY(-2px);
}
.b44-arrow { display: inline-flex; transition: transform 0.3s ease; }
.escoland-hero__btn:hover .b44-arrow { transform: translateX(4px); }
.escoland-hero__flyer {
  width: 100%;
  height: auto;
  max-width: 608px;
  display: block;
  border-radius: 8px;
}

/* ============ BUSCAMOS CARDS ============ */
.buscamos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.b-card {
  background: #fff;
  border: 0.8px solid var(--eb-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.b-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 42, 74, 0.12);
}
.b-card[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: 17px;
  right: 25px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  line-height: 80px;
  color: rgba(26, 159, 193, 0.08);
  pointer-events: none;
  z-index: 0;
}
.b-card-inner { position: relative; z-index: 1; }
.b-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E8F7FC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.b-icon svg { stroke: var(--eb-cyan); width: 24px; height: 24px; transition: stroke 0.3s ease; }
.b-card:hover .b-icon { background: var(--eb-cyan); transform: scale(1.08); }
.b-card:hover .b-icon svg { stroke: #fff; }
.b-h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--eb-navy);
  margin: 0 0 12px;
}
.b-p {
  font-size: 16px;
  color: var(--eb-muted);
  line-height: 1.625;
  margin: 0;
}

/* ============ OFRECEMOS CARDS ============ */
.ofrecemos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.o-card {
  background: rgba(255, 255, 255, 0.8);
  border: 0.8px solid rgba(26, 159, 193, 0.15);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.o-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 42, 74, 0.12);
}
.o-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.o-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  color: var(--eb-cyan);
  line-height: 1;
}
.o-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 42, 74, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.o-icon svg { stroke: var(--eb-navy); width: 24px; height: 24px; transition: stroke 0.3s ease; }
.o-card:hover .o-icon { background: var(--eb-navy); transform: scale(1.08); }
.o-card:hover .o-icon svg { stroke: #fff; }
.o-chip {
  display: inline-block;
  background: rgba(26, 159, 193, 0.1);
  color: var(--eb-cyan);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.o-h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--eb-navy);
  margin: 0 0 12px;
}
.o-p {
  font-size: 16px;
  color: var(--eb-muted);
  line-height: 1.625;
  margin: 0;
}

/* ============ CTA NAVY ============ */
.escoland-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.escoland-cta__eyebrow {
  color: var(--eb-cyan);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.escoland-cta__h2,
body.escoland .escoland-cta__h2 {
  font-family: 'Archivo Black', sans-serif !important;
  font-size: 86px !important;
  line-height: 0.98 !important;
  color: #fff !important;
  margin: 0 0 32px !important;
  letter-spacing: 0;
}
.escoland-cta__body,
body.escoland .escoland-cta__body,
body.escoland p.escoland-cta__body {
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 0 48px !important;
}
.escoland-cta__btn {
  background: var(--eb-cyan);
  color: var(--eb-navy);
  border-radius: 8px;
  padding: 24px 64px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: escPulseGlow 2.2s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.escoland-cta__btn:hover { transform: translateY(-2px); animation-play-state: paused; }
.escoland-cta__email {
  margin-top: 32px;
}
.escoland-cta__email a {
  color: var(--eb-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

/* ============ FOOTER ============ */
.escoland-footer {
  background: #111D33;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
}
.escoland-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}
.escoland-footer__logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.escoland-footer__tagline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.escoland-footer__block h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.escoland-footer__block p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.escoland-footer__block a {
  color: var(--eb-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}
.escoland-footer__block a:hover { color: #fff; }
.escoland-footer__block strong { color: #fff; }
.escoland-footer__social-icons {
  display: flex;
  gap: 12px;
}
.escoland-footer__social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--eb-cyan);
  transition: background 0.3s ease, color 0.3s ease;
}
.escoland-footer__social-icons a:hover {
  background: var(--eb-cyan);
  color: #fff;
}
.escoland-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 24px 32px;
  text-align: center;
}
.escoland-footer__legal p {
  margin: 0 0 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.escoland-footer__legal strong { color: rgba(255,255,255,0.78); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .escoland-hero { grid-template-columns: 1fr; gap: 48px; }
  body.escoland .escoland-hero__h1 { font-size: 64px !important; }
  body.escoland .escoland-hero__h2 { font-size: 48px !important; }
  body.escoland .escoland-section__h2 { font-size: 48px !important; }
  body.escoland .escoland-cta__h2 { font-size: 56px !important; }
  .escoland-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .escoland-container { padding: 0 20px; }
  .escoland-section { padding: 64px 0; }
  .escoland-section--cta { padding: 80px 0; }
  body.escoland .escoland-hero__h1 { font-size: 52px !important; line-height: 0.95 !important; }
  body.escoland .escoland-hero__h2 { font-size: 36px !important; }
  body.escoland .escoland-section__h2 { font-size: 36px !important; }
  body.escoland .escoland-cta__h2 { font-size: 34px !important; line-height: 1.05 !important; }
  body.escoland .escoland-cta__btn { padding: 18px 36px !important; font-size: 16px !important; }
  .buscamos-grid { grid-template-columns: 1fr; }
  .ofrecemos-grid { grid-template-columns: 1fr; }
  .escoland-footer__inner { grid-template-columns: 1fr; }
  .b-card[data-num]::before { font-size: 60px; }
}
@media (max-width: 480px) {
  body.escoland .escoland-hero__h1 { font-size: 44px !important; line-height: 0.95 !important; }
  body.escoland .escoland-hero__h2 { font-size: 32px !important; }
  body.escoland .escoland-section__h2 { font-size: 30px !important; }
  body.escoland .escoland-cta__h2 { font-size: 28px !important; line-height: 1.1 !important; word-break: break-word; }
  body.escoland .escoland-cta__btn { padding: 14px 24px !important; font-size: 13px !important; }
}
@media (max-width: 380px) {
  body.escoland .escoland-hero__h1 { font-size: 38px !important; }
  body.escoland .escoland-cta__h2 { font-size: 24px !important; }
}
