.cambridge {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(135deg, #0b3c5d, #1e6091);
  color: #fff;
  padding: clamp(50px, 8vw, 80px) 0;  
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 920px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-highlights {
  padding: 0;
  list-style: none;
   margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
}

.hero-highlights li {
  margin-bottom: 8px;
    font-size: 0.95rem;
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffd166;
  color: #000;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
    
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
     
}

.content {
  padding: 60px 0;
}

.two-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.sidebar .box {
  background: #f4f6f8;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
}

.internal-links {
  list-style: none;
  padding: 0;
}

.internal-links li {
  margin-bottom: 8px;
}

.internal-links a {
  color: #1e6091;
  font-weight: 500;
}

.checklist li {
  margin-bottom: 8px;
}

.cta-final {
  background: #0b3c5d;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.local-ref {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.duracion-resultados {
  background: #f4f6f8;
  padding: 50px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cta-intermedio {
  background: #ffd166;
  text-align: center;
  padding: 50px 20px;
}

.cta-intermedio h2 {
  margin-bottom: 10px;
}

.social-proof {
  background: #fff;
  padding: 60px 0;
}

.testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.testimonios blockquote {
  background: #f4f6f8;
  padding: 25px;
  border-left: 5px solid #1e6091;
}

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e6091;
    text-align: center;
    padding: 14px;
    z-index: 999;
  }

  .sticky-cta a {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
  }
}
/* ===== ARTICLE CAMBRIDGE UX ===== */

.article-cambridge {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Intro */
.article-intro .lead {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 650px;
  margin-top: 10px;
}

/* Grid de beneficios */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  background: #f4f6f8;
  padding: 25px;
  border-radius: 10px;
}

.feature-box h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #0b3c5d;
}

.feature-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Para quién es */
.who-is-for h3 {
  margin-bottom: 15px;
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* CTA interno */
.inline-cta {
  background: #ffd166;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.inline-cta p {
  margin-bottom: 15px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   HERO CAMBRIDGE – UX / UI
   =============================== 

.hero {
  background: linear-gradient(135deg, #0b3c5d, #1e6091);
  color: #fff;
  padding: clamp(50px, 8vw, 80px) 0;
}*/

.hero-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: #e5f1ff;
  text-decoration: none;
}

.breadcrumbs span {
  font-weight: 600;
}

/* Title 
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 18px;
}*/

/* Subtitle 
.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 920px;
  margin-bottom: 28px;
  opacity: 0.95;
}*/

/* Highlights list 
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
}

.hero-highlights li {
  font-size: 0.95rem;
  line-height: 1.45;
}*/

/* CTA buttons 
.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffd166;
  color: #000;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid #fff;
  padding: 13px 24px;
  border-radius: 6px;
  color: #fff;
  background: transparent;
}*/

/* Local reference */
.local-ref {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 10px;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    width: 100%;
  }
}
.proximos-intensivos {
  background: #fff;
  padding: 60px 0;
}

.proximos-intensivos h2 {
  text-align: center;
  margin-bottom: 10px;
}

.proximos-intensivos .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.intensivos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.intensivo-card {
  background: #f4f6f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.intensivo-card h3 {
  margin-bottom: 15px;
  color: #0b3c5d;
}

.intensivo-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.intensivo-card li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.nota {
  margin-top: 35px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}
