/*
Theme Name:  El Perforador Child
Template:    astra
Description: Tema hijo de Astra para El Perforador — Pozos Profundos en O'Higgins y Maule
Version:     1.0.0
Author:      Agencia
Text Domain: el-perforador-child
*/

/* ══════════════════════════════════════════════
   VARIABLES GLOBALES
══════════════════════════════════════════════ */
:root {
  --dark: #0a120a;
  --dark-green: #142210;
  --mil-green: #1a2e14;
  --accent-green: #2d5a27;
  --accent-green-light: #3a7a32;
  --yellow: #FFD23F;
  --yellow-dim: #e6bd38;
  --yellow-pale: #fff8e1;
  --warm-bg: #f4f1eb;
  --warm-bg-dark: #eae5db;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-soft: #3d3d3d;
  --text-muted: #6b6b6b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   BOTONES
══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px; border-radius: 60px;
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: var(--yellow); color: var(--dark);
  box-shadow: 0 4px 20px rgba(255,210,63,0.3);
}
.btn-primary:hover {
  background: var(--yellow-dim); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,210,63,0.45);
}
.btn-secondary {
  background: var(--accent-green); color: var(--white);
  box-shadow: 0 4px 20px rgba(45,90,39,0.3);
}
.btn-secondary:hover {
  background: var(--accent-green-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,90,39,0.4);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700; padding: 20px 40px;
  border-radius: 60px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-whatsapp:hover {
  background: #1fb855; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45); color: var(--white);
}
.btn.btn-whatsapp { font-size: 1.15rem; padding: 22px 44px; }
.btn-outline {
  background: transparent; color: var(--accent-green); border: 2px solid var(--accent-green);
  text-decoration: none;
}
.btn-outline:hover { background: var(--accent-green); color: var(--white); }

/* ══════════════════════════════════════════════
   TIPOGRAFÍA COMPARTIDA
══════════════════════════════════════════════ */
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-green); margin-bottom: 16px;
}
.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  line-height: 1.15; color: var(--dark-green); margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-soft); line-height: 1.7; max-width: 640px;
}

/* ══════════════════════════════════════════════
   ANIMACIONES
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
.top-bar { background: #060a05; padding: 10px 0; text-align: center; }
.top-bar p { color: var(--yellow); font-size: 0.85rem; font-weight: 600; }
.top-bar span { color: var(--white); }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  background: rgba(10,18,10,0.95); backdrop-filter: blur(12px);
  padding: 16px 0; position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,210,63,0.1);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.navbar-logo {
  font-family: 'Roboto Slab', serif; font-size: 1.25rem;
  font-weight: 800; color: var(--white); text-decoration: none;
}
.navbar-logo span { color: var(--yellow); }
.navbar-links { display: flex; gap: 32px; align-items: center; margin-left: 40px; }
.navbar-links a {
  font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.3s ease; position: relative;
}
.navbar-links a:hover { color: var(--yellow); }
.navbar-links a.active { color: var(--yellow); }
.navbar-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px; background: var(--yellow); border-radius: 2px;
}
.navbar-links a.navbar-cta {
  font-size: 0.85rem; font-weight: 700; padding: 10px 22px;
  background: var(--yellow); color: #0a120a; border-radius: 60px;
  text-decoration: none; transition: all 0.3s ease;
}
.navbar-links a.navbar-cta:hover {
  background: var(--yellow-dim); color: #0a120a; transform: translateY(-1px);
}

/* Navbar dropdown */
.navbar-dropdown { position: relative; display: flex; align-items: center; }
.navbar-dropdown-toggle { cursor: pointer; }
.dropdown-arrow { font-size: 0.7em; margin-left: 2px; }
.navbar-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: var(--dark-green);
  border-radius: var(--radius); padding: 8px 0; min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 1000;
}
.navbar-dropdown:hover .navbar-dropdown-menu { display: block; }
.navbar-dropdown-menu a {
  display: block; padding: 10px 20px; color: rgba(255,255,255,0.7);
  font-size: 0.88rem; white-space: nowrap;
}
.navbar-dropdown-menu a:hover { background: rgba(255,210,63,0.1); color: var(--yellow); }

/* ══════════════════════════════════════════════
   PAGE HEADER (Nuestros Trabajos / Quiénes Somos)
══════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(165deg, #080e07 0%, #111e0e 35%, var(--mil-green) 70%, #1f3518 100%);
  padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255,210,63,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Roboto Slab', serif; font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900; color: var(--white); margin-bottom: 16px; position: relative; z-index: 2;
}
.page-header h1 em { font-style: normal; color: var(--yellow); }
.page-header > .container > p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 2;
}
.page-header .stat-bar {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,210,63,0.15); position: relative; z-index: 2;
}
.page-header .stat h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.8rem; font-weight: 800; color: var(--yellow);
}
.page-header .stat p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ══════════════════════════════════════════════
   CTA BANNER (Nuestros Trabajos / Quiénes Somos)
══════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(160deg, #080e07 0%, #111e0e 50%, var(--mil-green) 100%);
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Roboto Slab', serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: #060a05; padding: 60px 0 0; text-align: left; }
footer a { color: #999; text-decoration: none; }
footer a:hover { color: var(--yellow); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid #1a1f1a; }
.footer-logo { font-family: 'Roboto Slab', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-logo span { color: var(--yellow); }
.footer-tagline { font-size: 0.88rem; color: #777; margin-top: 12px; line-height: 1.5; }
.footer-wa { display: inline-block; margin-top: 16px; font-size: 0.88rem; color: #25d366; font-weight: 500; }
.footer-wa:hover { color: #20bf5e; }

.footer-col h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: #999; }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: #555; margin: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ══════════════════════════════════════════════
   LANDING — HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(165deg, #080e07 0%, #111e0e 35%, #1a2e14 70%, #1f3518 100%);
  padding: 80px 0 100px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255,210,63,0.07) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,210,63,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f4f1eb' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,210,63,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,210,63,0.25);
  padding: 10px 20px; border-radius: 60px; margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span { font-size: 0.88rem; font-weight: 600; color: var(--yellow); }
.hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 900;
  color: var(--white); line-height: 1.12; margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.15s both;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-cintillo {
  display: inline-block;
  background: rgba(255,210,63,0.18);
  border: 1px solid rgba(255,210,63,0.35);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease both;
}
.hero h2.hero-h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 36px; max-width: 560px; animation: fadeUp 0.6s ease 0.3s both;
}
.hero-cta-group {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  animation: fadeUp 0.6s ease 0.45s both;
}
.hero .btn-outline { border-color: var(--yellow); color: var(--yellow); }
.hero .btn-outline:hover { background: var(--yellow); color: var(--dark); }
.hero-urgency {
  margin-top: 20px; display: flex; align-items: center; gap: 8px;
  animation: fadeUp 0.6s ease 0.55s both;
}
.hero-urgency .dot {
  width: 8px; height: 8px; background: var(--yellow);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero-urgency p { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,210,63,0.15);
  animation: fadeUp 0.6s ease 0.65s both;
}
.hero-stat h3 {
  font-family: 'Roboto Slab', serif; font-size: 2.2rem;
  font-weight: 800; color: var(--yellow);
}
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ══════════════════════════════════════════════
   LANDING — PAIN
══════════════════════════════════════════════ */
.pain { padding: 80px 0; background: var(--warm-bg); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pain-card { display: flex; gap: 16px; padding: 20px 0; }
.pain-card .icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: #fce8e8; border: 1px solid #f0caca;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.pain-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--dark-green); }
.pain-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.pain-bridge {
  margin-top: 32px; padding: 24px 28px;
  background: rgba(45,90,39,0.08);
  border-left: 4px solid var(--accent-green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pain-bridge p { font-size: 1.05rem; font-weight: 600; color: var(--dark-green); line-height: 1.6; }

/* ══════════════════════════════════════════════
   LANDING — PROOF (Videos)
══════════════════════════════════════════════ */
.proof {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--warm-bg-dark) 0%, var(--warm-bg) 100%);
}
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.proof-item {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 9/16;
  background: var(--dark-green);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.proof-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.proof-item iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); }

/* ══════════════════════════════════════════════
   LANDING — PILLARS (5 Compromisos)
══════════════════════════════════════════════ */
.pillars {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-green) 0%, var(--mil-green) 100%);
  position: relative;
}
.pillars .section-tag { color: var(--yellow); }
.pillars .section-title { color: var(--white); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 48px;
}
.pillar-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 36px 32px; transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden;
  backdrop-filter: blur(4px);
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px);
}
.pillar-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,210,63,0.12); border: 1px solid rgba(255,210,63,0.2);
}
.pillar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--yellow); }
.pillar-card p { font-size: 0.94rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.pillar-card p strong { color: rgba(255,255,255,0.95); }

/* ══════════════════════════════════════════════
   LANDING — PROCESS (4 Pasos)
══════════════════════════════════════════════ */
.process { padding: 100px 0; background: var(--warm-bg); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 44px; left: 12.5%; width: 75%; height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light), var(--yellow));
  border-radius: 2px;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 88px; height: 88px; border-radius: 50%; background: var(--warm-bg);
  border: 3px solid var(--accent-green); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; position: relative;
  z-index: 2; transition: all 0.3s ease;
}
.step:hover .step-number { background: var(--accent-green); transform: scale(1.08); }
.step:hover .step-number span { color: var(--white); }
.step-number span { font-size: 2rem; transition: color 0.3s ease; }
.step h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark-green); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; padding: 0 12px; }

/* ══════════════════════════════════════════════
   LANDING — SIMULATOR
══════════════════════════════════════════════ */
.simulator {
  padding: 100px 0;
  background: linear-gradient(170deg, #080e07 0%, var(--mil-green) 100%);
  position: relative; overflow: hidden;
}
.simulator::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,210,63,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.sim-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.sim-text .section-tag { color: var(--yellow); }
.sim-text .section-title { color: var(--white); }
.sim-text .section-subtitle { color: rgba(255,255,255,0.7); }
.sim-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.sim-feature { display: flex; gap: 12px; align-items: flex-start; }
.sim-feature .check {
  width: 24px; height: 24px; background: rgba(255,210,63,0.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.sim-feature .check span { font-size: 0.75rem; color: var(--yellow); }
.sim-feature p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.sim-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-top: 4px solid var(--yellow);
}
.sim-card h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.4rem;
  font-weight: 800; color: var(--dark-green); margin-bottom: 8px;
}
.sim-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-group select, .form-group input {
  width: 100%; padding: 14px 16px; border: 2px solid #ddd8d0;
  border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: border-color 0.3s ease; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%234a4a4a'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group select:focus, .form-group input:focus { outline: none; border-color: var(--accent-green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-sim { width: 100%; padding: 16px; justify-content: center; margin-top: 4px; font-size: 1rem; }
.sim-footer { text-align: center; margin-top: 16px; }
.sim-footer p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   LANDING — PLANS
══════════════════════════════════════════════ */
.plans { padding: 100px 0; background: var(--warm-bg); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.plan-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 2px solid var(--warm-bg-dark);
  transition: all 0.4s ease; position: relative;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-green); }
.plan-card.featured {
  border-color: var(--yellow); box-shadow: var(--shadow-lg);
  transform: scale(1.03); background: var(--white);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark-green); font-size: 0.78rem;
  font-weight: 700; padding: 6px 20px; border-radius: 60px;
  letter-spacing: 0.04em; white-space: nowrap;
}
.plan-card h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.5rem;
  font-weight: 800; color: var(--dark-green); margin-bottom: 4px;
}
.plan-type {
  font-size: 0.82rem; font-weight: 600; color: var(--accent-green);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.plan-card .plan-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.92rem; color: var(--text-soft); line-height: 1.5;
}
.plan-features li::before { content: '\2713'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-cta { text-align: center; }
.plan-cta .btn { width: 100%; justify-content: center; padding: 15px 24px; }
.plans-extra {
  margin-top: 40px; text-align: center; padding: 28px 32px;
  background: var(--white); border-radius: var(--radius-lg); border: 2px dashed var(--yellow);
}
.plans-extra p { font-size: 1rem; color: var(--text-soft); }
.plans-extra strong { color: var(--dark-green); }

/* ══════════════════════════════════════════════
   LANDING — FAQ
══════════════════════════════════════════════ */
.faq { padding: 100px 0; background: var(--dark-green); }
.faq .section-tag { color: var(--yellow); }
.faq .section-title { color: var(--white); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s ease;
}
.faq-item:hover { background: rgba(255,255,255,0.08); }
.faq-question {
  width: 100%; padding: 22px 28px; display: flex;
  justify-content: space-between; align-items: center;
  background: none; border: none; font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem; font-weight: 600; color: var(--white);
  cursor: pointer; text-align: left; transition: color 0.3s ease;
}
.faq-question:hover { color: var(--yellow); }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s ease; color: var(--yellow); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 22px; font-size: 0.94rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.faq-answer-inner strong { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════════
   LANDING — CTA FINAL
══════════════════════════════════════════════ */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(160deg, #080e07 0%, #111e0e 50%, var(--mil-green) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,210,63,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-final .section-title { color: var(--white); margin-bottom: 16px; }
.cta-final .section-subtitle { color: rgba(255,255,255,0.75); margin: 0 auto 20px; max-width: 560px; }
.cta-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,210,63,0.08); border: 1px solid rgba(255,210,63,0.2);
  padding: 10px 22px; border-radius: 60px; margin-bottom: 36px;
}
.cta-urgency span { font-size: 0.88rem; color: var(--yellow); font-weight: 600; }
.cta-guarantee { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════
   NUESTROS TRABAJOS — PROJECTS
══════════════════════════════════════════════ */
.projects { padding: 80px 0; }
.projects-grid { display: flex; flex-direction: column; gap: 40px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--warm-bg-dark); transition: all 0.4s ease;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-card:nth-child(even) { direction: rtl; }
.project-card:nth-child(even) > * { direction: ltr; }
.project-media {
  background: var(--dark-green);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 400px;
}
.project-media iframe {
  width: 100%; height: 100%; border: none; position: absolute; top: 0; left: 0;
}
.project-info { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.project-location {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-green); margin-bottom: 12px;
}
.project-location svg { flex-shrink: 0; }
.project-info h2 {
  font-family: 'Roboto Slab', serif; font-size: 1.4rem;
  font-weight: 800; color: var(--dark-green); margin-bottom: 12px; line-height: 1.3;
}
.project-info .description { font-size: 0.94rem; color: var(--text-soft); line-height: 1.7; }
.project-info .description strong { color: var(--dark-green); }

/* ══════════════════════════════════════════════
   QUIÉNES SOMOS — ABOUT
══════════════════════════════════════════════ */
.about { padding: 80px 0; }
.about-intro { max-width: 760px; margin: 0 auto; text-align: center; margin-bottom: 72px; }
.about-intro p {
  font-size: 1.15rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 20px;
}
.about-intro p strong { color: var(--dark-green); }
.about-intro .highlight {
  font-family: 'Roboto Slab', serif; font-size: 1.4rem;
  font-weight: 800; color: var(--dark-green); line-height: 1.4;
  padding: 28px 32px; margin-top: 32px;
  background: var(--white); border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}

/* ══════════════════════════════════════════════
   QUIÉNES SOMOS — COVERAGE
══════════════════════════════════════════════ */
.coverage {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--dark-green) 0%, var(--mil-green) 100%);
}
.coverage-content { max-width: 760px; margin: 0 auto; text-align: center; }
.coverage-content .section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.coverage-content h2 {
  font-family: 'Roboto Slab', serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--white); margin-bottom: 20px;
}
.coverage-content > p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 40px;
}
.regions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; }
.region-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.region-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3); transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
}
.region-card h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.15rem;
  font-weight: 800; color: var(--yellow); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.region-card h3 svg { color: var(--yellow); flex-shrink: 0; }
.region-card .comunas { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.region-card .comunas strong { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════════
   BLOG ARTICLE
══════════════════════════════════════════════ */
.article-category {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.blog-article { padding: 80px 0; background: var(--white); }
.article-content {
  max-width: 760px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.8; color: var(--text-soft);
}
.article-content h2 {
  font-family: 'Roboto Slab', serif; font-size: 1.6rem;
  font-weight: 800; color: var(--dark-green); margin: 48px 0 16px; line-height: 1.3;
}
.article-content h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.2rem;
  font-weight: 700; color: var(--dark-green); margin: 32px 0 12px;
}
.article-content p { margin-bottom: 20px; }
.article-content strong { color: var(--text); }
.article-content ul, .article-content ol { margin: 16px 0 24px 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.6; }
.article-content blockquote {
  border-left: 4px solid var(--yellow); background: var(--warm-bg);
  padding: 20px 24px; margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0; font-style: italic;
}
.article-content blockquote p { margin-bottom: 0; font-style: italic; }
.article-content table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem;
}
.article-content th {
  background: var(--dark-green); color: var(--white);
  padding: 12px 16px; text-align: left; font-weight: 600;
}
.article-content td { padding: 12px 16px; border-bottom: 1px solid var(--warm-bg-dark); }
.article-content tr:nth-child(even) { background: var(--warm-bg); }
.article-toc {
  background: var(--warm-bg); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 40px;
}
.article-toc h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--dark-green); margin-bottom: 12px;
}
.article-toc ol { margin: 0; padding-left: 20px; }
.article-toc li { margin-bottom: 6px; }
.article-toc a { color: var(--accent-green); font-weight: 600; text-decoration: none; }
.article-toc a:hover { color: var(--yellow); }
.article-cta {
  background: linear-gradient(135deg, #0a120a, #142210);
  border-radius: var(--radius-lg); padding: 32px; margin: 40px 0; text-align: center;
}
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 1.05rem; }
.article-cta .btn { display: inline-flex; }

/* ══════════════════════════════════════════════
   BLOG HUB
══════════════════════════════════════════════ */
.blog-hub { padding: 80px 0; background: var(--white); }
.blog-hub-section-title {
  font-family: 'Roboto Slab', serif; font-size: 1.3rem;
  font-weight: 800; color: var(--dark-green); margin: 48px 0 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--warm-bg-dark);
}
.blog-hub-section-title:first-of-type { margin-top: 0; }
/* === VIDEOS REALES (Shorts grid) === */
.videos-reales { padding: 80px 0; background: var(--dark-bg); }
.videos-reales .section-title { color: #fff; }
.videos-reales .section-subtitle { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 48px; }
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.short-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.short-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.short-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.short-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 16px;
}
.blog-card {
  background: var(--warm-bg); border-radius: var(--radius-lg);
  padding: 28px 24px; text-decoration: none; color: var(--text);
  border: 2px solid transparent; transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--accent-green); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-green);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.1rem;
  font-weight: 800; color: var(--dark-green); line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.55;
  flex-grow: 1; margin-bottom: 16px;
}
.blog-card-link {
  font-size: 0.85rem; font-weight: 700; color: var(--accent-green);
  transition: color 0.2s;
}
.blog-card:hover .blog-card-link { color: var(--yellow); }

/* ══════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════ */
.error-404 { padding: 60px 0 80px; background: var(--white); }
.error-404-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-bottom: 48px;
}
.error-404-col h3 {
  font-family: 'Roboto Slab', serif; font-size: 1.1rem;
  font-weight: 800; color: var(--dark-green); margin-bottom: 16px;
}
.error-404-col ul { list-style: none; padding: 0; }
.error-404-col li { margin-bottom: 10px; }
.error-404-col a {
  color: var(--accent-green); text-decoration: none; font-weight: 500;
  font-size: 0.95rem; transition: color 0.2s;
}
.error-404-col a:hover { color: var(--yellow); }
.error-404-cta {
  text-align: center; background: var(--warm-bg);
  border-radius: var(--radius-lg); padding: 32px;
}
.error-404-cta p {
  font-size: 1.05rem; color: var(--text-soft); margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Navbar */
  .navbar-links { gap: 20px; }

  /* Landing */
  .pain-grid, .sim-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; order: -1; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .hero-stats { gap: 24px; }

  /* Nuestros trabajos */
  .project-card,
  .project-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .project-media { min-height: 240px; }

  /* Page header */
  .page-header .stat-bar { gap: 24px; }

  /* Quiénes somos */
  .regions { grid-template-columns: 1fr; }

  /* 404 */
  .error-404-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Navbar — no sticky en mobile */
  .navbar { padding: 10px 0; position: relative !important; }
  .navbar .container { flex-wrap: wrap !important; }
  .navbar-logo { font-size: 1rem !important; width: auto !important; }
  .navbar-links { gap: 12px !important; margin-left: 0 !important; width: 100% !important; flex-wrap: wrap; }
  .navbar-links a { font-size: 0.78rem; }
  .navbar-links a.navbar-cta { display: none; }
  /* Dropdown cerrado por defecto en mobile */
  .navbar-dropdown { position: relative; }
  .navbar-dropdown-toggle .dropdown-arrow { display: inline !important; }
  .navbar-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    transform: none; background: var(--dark-green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3); padding: 8px 0;
    min-width: 180px; border-radius: var(--radius); z-index: 1000;
  }
  .navbar-dropdown.open .navbar-dropdown-menu { display: block; }
  .navbar-dropdown:hover .navbar-dropdown-menu { display: none; }
  .navbar-dropdown.open:hover .navbar-dropdown-menu { display: block; }
  .navbar-dropdown-menu a { padding: 8px 16px; font-size: 0.78rem; }

  /* Landing */
  .hero { padding: 60px 0 80px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { text-align: center; justify-content: center; }
  .hero-cintillo { font-size: 0.8rem; padding: 6px 14px; }

  /* Page header */
  .page-header { padding: 60px 0 48px; }
  .page-header .stat-bar { flex-direction: column; gap: 12px; }

  /* Nuestros trabajos */
  .project-info { padding: 28px 24px; }

  /* Quiénes somos */
  .about-intro p { font-size: 1.05rem; }
  .about-intro .highlight { font-size: 1.2rem; padding: 24px; }

  /* Blog */
  .article-content { font-size: 1rem; }
  .article-content h2 { font-size: 1.35rem; margin-top: 36px; }
  .article-content table { font-size: 0.85rem; display: block; overflow-x: auto; }

  /* Blog hub */
  .blog-grid { grid-template-columns: 1fr; }

  /* 404 */
  .error-404-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   HERO VARIANT B — SPLIT LAYOUT
   Usado por: Pichilemu, Vichuquén
══════════════════════════════════════════════ */
.hero--split .container {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: center;
}
.hero--split .hero-content {
  max-width: 100%;
}
.hero-video-col {
  position: relative;
  z-index: 2;
}
.hero-video-col .proof-item {
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-green);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  max-height: 520px;
}
.hero-video-col .proof-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 900px) {
  .hero--split .container {
    grid-template-columns: 1fr;
  }
  .hero-video-col {
    display: none;
  }
}


/* ══════════════════════════════════════════════
   HERO VARIANT C — BIG STAT LAYOUT
   Usado por: Marchigüe, Paredones
══════════════════════════════════════════════ */
.hero--bigstat .container {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 48px;
  align-items: center;
}
.hero--bigstat .hero-content {
  max-width: 100%;
}
.hero--bigstat .hero-stats {
  display: none;
}
.hero-bigstat-col {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-bigstat-number {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.hero-bigstat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.4;
  display: block;
}
.hero-bigstat-sublabel {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
@media (max-width: 900px) {
  .hero--bigstat .container {
    grid-template-columns: 1fr;
  }
  .hero-bigstat-col {
    display: none;
  }
  .hero--bigstat .hero-stats {
    display: flex;
  }
}


/* ══════════════════════════════════════════════
   PROOF VARIANT — FEATURED GRID
   Usado por: La Estrella
══════════════════════════════════════════════ */
.proof--featured .proof-featured-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}
.proof-main {
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-green);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: relative;
}
.proof-main::after {
  content: 'PROYECTO REAL \2022  LA ESTRELLA';
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1.4;
  pointer-events: none;
}
.proof-main:hover { transform: scale(1.02); }
.proof-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.proof-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.proof-secondary .proof-item {
  flex: 1;
  min-height: 0;
}
@media (max-width: 900px) {
  .proof--featured .proof-featured-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .proof-secondary {
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .proof-secondary {
    flex-direction: column;
  }
}


/* ══════════════════════════════════════════════
   BLOCK 1 — MACHINE COMPARE
   Usado por: Litueche
══════════════════════════════════════════════ */
.machine-compare {
  padding: 72px 0;
  background: var(--warm-bg-dark);
}
.machine-compare-header {
  text-align: center;
  margin-bottom: 40px;
}
.machine-compare-header h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0;
}
.machine-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.machine-col {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid transparent;
}
.machine-col--bad {
  background: #fff5f5;
  border-color: #f5c6c6;
}
.machine-col--good {
  background: #f0f7ee;
  border-color: #b8d9b2;
}
.machine-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.machine-col-icon { font-size: 2rem; line-height: 1; }
.machine-col-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-green);
  margin: 0;
  flex: 1;
}
.machine-verdict {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.machine-col--bad .machine-verdict { background: #fce4e4; color: #c0392b; }
.machine-col--good .machine-verdict { background: #d4edda; color: #1e6b35; }
.machine-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.machine-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.machine-col--bad ul li::before { content: '\2717'; color: #c0392b; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.machine-col--good ul li::before { content: '\2713'; color: #1e6b35; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 600px) {
  .machine-compare-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   BLOCK 2 — COASTAL ALERT BANNER
   Usado por: Pichilemu
══════════════════════════════════════════════ */
.coastal-alert {
  background: var(--yellow-pale);
  border-left: 6px solid var(--yellow);
}
.coastal-alert-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.coastal-alert-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.coastal-alert-text h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 6px;
}
.coastal-alert-text p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.coastal-alert-text strong { color: var(--dark-green); }
@media (max-width: 600px) {
  .coastal-alert-inner { flex-direction: column; gap: 12px; }
}


/* ══════════════════════════════════════════════
   BLOCK 3 — ALJIBE COST BLOCK
   Usado por: Marchigüe
══════════════════════════════════════════════ */
.aljibe-cost {
  padding: 72px 0;
  background: linear-gradient(160deg, var(--dark-green) 0%, var(--mil-green) 100%);
  position: relative;
  overflow: hidden;
}
.aljibe-cost::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,210,63,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.aljibe-cost-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.aljibe-cost-header .section-tag { color: var(--yellow); }
.aljibe-cost-header h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}
.aljibe-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.aljibe-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.aljibe-stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.aljibe-stat-card--highlight {
  border-color: var(--yellow);
  background: rgba(255,210,63,0.08);
}
.aljibe-stat-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: block;
}
.aljibe-stat-number {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.aljibe-stat-card--highlight .aljibe-stat-number { color: var(--white); }
.aljibe-stat-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.aljibe-cta-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  position: relative;
  z-index: 2;
}
.aljibe-cta-note strong { color: var(--yellow); font-style: normal; }
@media (max-width: 700px) {
  .aljibe-stats-grid { grid-template-columns: 1fr; max-width: 360px; }
}


/* ══════════════════════════════════════════════
   BLOCK 4 — NORIA VS POZO TABLE
   Usado por: Vichuquén
══════════════════════════════════════════════ */
.noria-compare {
  padding: 72px 0;
  background: var(--warm-bg);
}
.noria-compare-header {
  text-align: center;
  margin-bottom: 40px;
}
.noria-compare-header h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0;
}
.noria-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.noria-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  background: var(--white);
}
.noria-table thead tr { background: var(--dark-green); }
.noria-table thead th {
  padding: 18px 24px;
  color: var(--white);
  font-weight: 700;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}
.noria-table thead th:first-child { width: 36%; }
.noria-table thead th:nth-child(2) { color: rgba(255,255,255,0.6); }
.noria-table thead th:nth-child(3) { color: var(--yellow); }
.noria-table tbody tr {
  border-bottom: 1px solid var(--warm-bg-dark);
  transition: background 0.2s ease;
}
.noria-table tbody tr:hover { background: var(--warm-bg); }
.noria-table tbody tr:last-child { border-bottom: none; }
.noria-table tbody td {
  padding: 16px 24px;
  color: var(--text-soft);
  vertical-align: top;
  line-height: 1.5;
}
.noria-table tbody td:first-child {
  font-weight: 700;
  color: var(--dark-green);
  font-size: 0.9rem;
}
.noria-table .cell-bad { color: #c0392b; font-weight: 600; }
.noria-table .cell-good { color: #1e6b35; font-weight: 600; }
@media (max-width: 600px) {
  .noria-table thead th,
  .noria-table tbody td { padding: 12px 14px; font-size: 0.84rem; }
}


/* ══════════════════════════════════════════════
   BLOCK 5 — LOCAL PROOF BLOCK
   Usado por: Paredones
══════════════════════════════════════════════ */
.local-proof {
  padding: 64px 0 100px;
  background: linear-gradient(160deg, #090f09 0%, var(--dark-green) 60%, var(--mil-green) 100%);
  position: relative;
  overflow: hidden;
}
.local-proof::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--warm-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}
.local-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.local-proof-text .section-tag { color: var(--yellow); }
.local-proof-text h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.local-proof-text h2 em { font-style: normal; color: var(--yellow); }
.local-proof-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.local-proof-address {
  background: rgba(255,210,63,0.1);
  border: 1px solid rgba(255,210,63,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.local-proof-address-icon { font-size: 1.8rem; flex-shrink: 0; }
.local-proof-address strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
}
.local-proof-address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}
.local-proof-address a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.local-proof-address a:hover { text-decoration: underline; }
.local-proof-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.local-proof-stats { display: flex; flex-direction: column; gap: 24px; }
.local-proof-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: all 0.3s ease;
}
.local-proof-stat:hover { background: rgba(255,255,255,0.09); transform: translateX(4px); }
.local-proof-stat-num {
  font-family: 'Roboto Slab', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.local-proof-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .local-proof-grid { grid-template-columns: 1fr; }
  .local-proof { padding-bottom: 72px; }
}


/* ══════════════════════════════════════════════
   BLOCK 6 — DUAL CHALLENGE
   Usado por: Navidad
══════════════════════════════════════════════ */
.dual-challenge {
  padding: 72px 0;
  background: var(--warm-bg-dark);
}
.dual-challenge-header {
  text-align: center;
  margin-bottom: 40px;
}
.dual-challenge-header h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0;
}
.dual-challenge-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 24px;
}
.challenge-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.challenge-card-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.challenge-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.challenge-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; margin: 0; }
.challenge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-shrink: 0;
}
.challenge-plus {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-green);
  font-family: 'Roboto Slab', serif;
  line-height: 1;
}
.dual-challenge-result {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mil-green) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.dual-challenge-result p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.6;
}
.dual-challenge-result strong { color: var(--yellow); }
@media (max-width: 600px) {
  .dual-challenge-row { flex-direction: column; gap: 16px; }
  .challenge-divider { padding: 4px 0; }
  .challenge-plus { font-size: 2rem; }
}


/* ══════════════════════════════════════════════════════════
   VARIANTES DE LAYOUT — Secciones Repetidas
   Cada landing de ubicación usa una combinación única
══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   PLANS — Variante TABLE (filas horizontales)
   Usado por: Marchigüe, La Estrella
────────────────────────────────────── */
.plans--table .plans-grid {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 740px;
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.plans--table .plan-card {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--warm-bg-dark);
  padding: 28px 32px;
  border-left: 4px solid transparent;
}
.plans--table .plan-card:last-child { border-bottom: none; }
.plans--table .plan-card:hover { transform: none; box-shadow: none; background: var(--warm-bg); }
.plans--table .plan-card.featured {
  transform: none;
  border-left-color: var(--yellow);
  background: var(--yellow-pale);
  box-shadow: none;
}
.plans--table .plan-card.featured:hover { transform: none; background: var(--yellow-pale); }
.plans--table .plan-badge {
  position: static;
  transform: none;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
}
.plans--table .plan-features { columns: 2; column-gap: 20px; margin-bottom: 20px; }
.plans--table .plan-features li { break-inside: avoid; padding: 5px 0; }
.plans--table .plan-cta .btn { width: auto; padding: 12px 32px; }

/* ──────────────────────────────────────
   PLANS — Variante STACKED (bandas anchas)
   Usado por: Pichilemu, Navidad
────────────────────────────────────── */
.plans--stacked .plans-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 48px auto 0;
}
.plans--stacked .plan-card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  padding: 28px 36px;
  border-left: 5px solid var(--warm-bg-dark);
}
.plans--stacked .plan-card.featured {
  transform: none;
  border-left-color: var(--yellow);
}
.plans--stacked .plan-card.featured:hover { transform: translateY(-4px); }
.plans--stacked .plan-badge {
  position: static;
  transform: none;
  order: -1;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
}
.plans--stacked .plan-card h3 { margin-bottom: 0; }
.plans--stacked .plan-type { margin-bottom: 0; }
.plans--stacked .plan-desc { width: 100%; margin-bottom: 16px; }
.plans--stacked .plan-features {
  width: 100%;
  columns: 2;
  column-gap: 24px;
  margin-bottom: 16px;
}
.plans--stacked .plan-features li { break-inside: avoid; }
.plans--stacked .plan-cta { width: 100%; text-align: left; }
.plans--stacked .plan-cta .btn { width: auto; }

/* ──────────────────────────────────────
   PLANS — Variante ACCORDION (paneles colapsables)
   Usado por: Vichuquén
────────────────────────────────────── */
.plans--accordion .plans-grid {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 48px auto 0;
}
.plans--accordion .plan-card {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--warm-bg-dark);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}
.plans--accordion .plan-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.plans--accordion .plan-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-bottom: none; }
.plans--accordion .plan-card:hover { transform: none; }
.plans--accordion .plan-card.featured {
  transform: none;
  border-left: 4px solid var(--yellow);
}
.plans--accordion .plan-card.featured:hover { transform: none; }
.plans--accordion .plan-badge {
  position: static;
  transform: none;
  display: inline-block;
  margin: 20px 0 0 28px;
  font-size: 0.72rem;
}
.plans--accordion .plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
}
.plans--accordion .plan-header h3 { margin: 0; font-size: 1.2rem; }
.plans--accordion .plan-type { margin: 0 0 0 12px; }
.plans--accordion .plan-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 28px;
}
.plans--accordion .plan-card.plan-open .plan-body {
  max-height: 500px;
  padding: 0 28px 24px;
}
.plans--accordion .plan-arrow {
  font-size: 1.2rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
}
.plans--accordion .plan-card.plan-open .plan-arrow { transform: rotate(180deg); }
.plans--accordion .plan-desc { margin-bottom: 16px; }
.plans--accordion .plan-cta { text-align: left; }
.plans--accordion .plan-cta .btn { width: auto; }

/* ──────────────────────────────────────
   PROCESS — Variante VERTICAL (timeline izquierda)
   Usado por: Pichilemu, Paredones
────────────────────────────────────── */
.process--vertical .process-steps {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 600px;
  margin: 56px auto 0;
  position: relative;
  padding-left: 60px;
}
.process--vertical .process-steps::before {
  display: block;
  top: 0;
  left: 43px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-green), var(--yellow));
}
.process--vertical .step {
  text-align: left;
  padding: 24px 0;
  position: relative;
}
.process--vertical .step-number {
  position: absolute;
  left: -60px;
  top: 24px;
  width: 56px;
  height: 56px;
  margin: 0;
  border-width: 2px;
  background: var(--warm-bg);
}
.process--vertical .step-number span { font-size: 1.4rem; }
.process--vertical .step h4 { margin-bottom: 6px; }
.process--vertical .step p { padding: 0; }

/* ──────────────────────────────────────
   PROCESS — Variante GRID 2×2
   Usado por: Marchigüe, Navidad
────────────────────────────────────── */
.process--grid2x2 .process-steps {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 56px auto 0;
}
.process--grid2x2 .process-steps::before { display: none; }
.process--grid2x2 .step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  border: 2px solid var(--warm-bg-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.process--grid2x2 .step::before {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: 12px;
  font-family: 'Roboto Slab', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-green);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.process--grid2x2 .step:hover { border-color: var(--accent-green); transform: translateY(-4px); box-shadow: var(--shadow); }
.process--grid2x2 .step-number {
  width: 48px;
  height: 48px;
  border-width: 2px;
  margin: 0 0 16px 0;
}
.process--grid2x2 .step-number span { font-size: 1.2rem; }
.process--grid2x2 .step p { padding: 0; }

/* ──────────────────────────────────────
   PROCESS — Variante MINIMAL (lista numerada limpia)
   Usado por: Vichuquén, La Estrella
────────────────────────────────────── */
.process--minimal .process-steps {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 600px;
  margin: 56px auto 0;
}
.process--minimal .process-steps::before { display: none; }
.process--minimal .step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 24px 0;
  border-bottom: 1px solid var(--warm-bg-dark);
}
.process--minimal .step:last-child { border-bottom: none; }
.process--minimal .step-number {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: none;
  margin: 0;
  flex-shrink: 0;
}
.process--minimal .step-number span {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-green);
}
.process--minimal .step:hover .step-number { background: none; transform: none; }
.process--minimal .step:hover .step-number span { color: var(--yellow); }
.process--minimal .step h4 { margin-bottom: 4px; }
.process--minimal .step p { padding: 0; }

/* ──────────────────────────────────────
   PILLARS — Variante ROWS (filas horizontales)
   Usado por: Pichilemu, Navidad
────────────────────────────────────── */
.pillars--rows .pillars-grid {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  margin: 48px auto 0;
}
.pillars--rows .pillar-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  align-items: start;
  border-radius: 0;
  border: none;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: none;
}
.pillars--rows .pillar-card:nth-child(odd) { background: rgba(255,255,255,0.07); }
.pillars--rows .pillar-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pillars--rows .pillar-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.pillars--rows .pillar-card::before { display: none; }
.pillars--rows .pillar-card:hover { transform: none; box-shadow: none; background: rgba(255,255,255,0.12); }
.pillars--rows .pillar-icon { grid-row: 1 / 3; margin-bottom: 0; }
.pillars--rows .pillar-card h3 { margin-bottom: 4px; }

/* ──────────────────────────────────────
   PILLARS — Variante TWOCOL (2 columnas compactas)
   Usado por: Marchigüe, La Estrella
────────────────────────────────────── */
.pillars--twocol .pillars-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.pillars--twocol .pillar-card { padding: 28px 24px; }
.pillars--twocol .pillar-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
.pillars--twocol .pillar-card h3 { font-size: 1.05rem; }
.pillars--twocol .pillar-card p { font-size: 0.88rem; }
/* El 5to pilar se centra */
.pillars--twocol .pillar-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

/* ──────────────────────────────────────
   PILLARS — Variante LIST (lista vertical con divisores)
   Usado por: Paredones
────────────────────────────────────── */
.pillars--list .pillars-grid {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 640px;
  margin: 48px auto 0;
}
.pillars--list .pillar-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,210,63,0.15);
  backdrop-filter: none;
}
.pillars--list .pillar-card:last-child { border-bottom: none; }
.pillars--list .pillar-card::before { display: none; }
.pillars--list .pillar-card:hover { transform: none; box-shadow: none; background: rgba(255,255,255,0.04); }
.pillars--list .pillar-icon { margin-bottom: 0; flex-shrink: 0; }
.pillars--list .pillar-card h3 { margin-bottom: 6px; }

/* ──────────────────────────────────────
   PROOF — Variante STACK (videos apilados vertical)
   Usado por: Marchigüe, Navidad
────────────────────────────────────── */
.proof--stack .proof-grid {
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 400px;
  margin: 48px auto 0;
}

/* ──────────────────────────────────────
   PROOF — Variante PYRAMID (2 arriba + 1 centrado abajo)
   Usado por: Pichilemu, Paredones
────────────────────────────────────── */
.proof--pyramid .proof-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 520px;
  margin: 48px auto 0;
}
.proof--pyramid .proof-item:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

/* ──────────────────────────────────────
   SIMULATOR — Variante CENTERED (centrado, sin split)
   Usado por: Marchigüe, Vichuquén, Navidad
────────────────────────────────────── */
.sim--centered .sim-wrapper {
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 560px;
  margin: 0 auto;
}
.sim--centered .sim-text { text-align: center; }
.sim--centered .sim-text .section-subtitle { margin: 0 auto; }
.sim--centered .sim-features {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

/* ──────────────────────────────────────
   SIMULATOR — Variante REVERSED (formulario izq, texto der)
   Usado por: Pichilemu, La Estrella
────────────────────────────────────── */
.sim--reversed .sim-wrapper { direction: rtl; }
.sim--reversed .sim-wrapper > * { direction: ltr; }

/* ──────────────────────────────────────
   FAQ — Variante TWOCOL (2 columnas de acordeón)
   Usado por: Pichilemu, Paredones
────────────────────────────────────── */
.faq--twocol .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  max-width: 100%;
}

/* ──────────────────────────────────────
   FAQ — Variante BORDERED (cards abiertas, sin acordeón)
   Usado por: Vichuquén, Navidad
────────────────────────────────────── */
.faq--bordered .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 100%;
}
.faq--bordered .faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,210,63,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.faq--bordered .faq-item:hover { background: rgba(255,255,255,0.09); }
.faq--bordered .faq-question {
  padding: 0 0 12px;
  cursor: default;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.faq--bordered .faq-arrow { display: none; }
.faq--bordered .faq-answer {
  max-height: none;
  overflow: visible;
}
.faq--bordered .faq-answer-inner { padding: 0; font-size: 0.88rem; }


/* ══════════════════════════════════════════════════════════
   VARIANTES — RESPONSIVE 900px
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Plans variants */
  .plans--stacked .plan-features { columns: 1; }
  .plans--stacked .plan-card { padding: 24px; }

  /* Process variants */
  .process--grid2x2 .process-steps { grid-template-columns: 1fr 1fr; }

  /* Pillars variants */
  .pillars--twocol .pillars-grid { grid-template-columns: 1fr; }
  .pillars--twocol .pillar-card:nth-child(5) { max-width: 100%; }

  /* Proof variants */
  .proof--pyramid .proof-grid { max-width: 400px; }
  .proof--pyramid .proof-item:nth-child(3) { max-width: 70%; }

  /* Simulator variants */
  .sim--reversed .sim-wrapper { direction: ltr; grid-template-columns: 1fr; }

  /* FAQ variants */
  .faq--twocol .faq-list { grid-template-columns: 1fr; }
  .faq--bordered .faq-list { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════
   VARIANTES — RESPONSIVE 600px
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Plans variants */
  .plans--table .plan-features { columns: 1; }
  .plans--stacked .plan-card { flex-direction: column; }

  /* Process variants */
  .process--vertical .process-steps { padding-left: 50px; }
  .process--vertical .step-number { left: -50px; width: 44px; height: 44px; }
  .process--vertical .step-number span { font-size: 1.1rem; }
  .process--grid2x2 .process-steps { grid-template-columns: 1fr; }

  /* Proof variants */
  .proof--pyramid .proof-grid { grid-template-columns: 1fr; }
  .proof--pyramid .proof-item:nth-child(3) { max-width: 100%; }
}
