*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
:root{
  --g900:#0f172a;--g800:#1e293b;--g700:#334155;--g600:#475569;--g400:#94a3b8;
  --g200:#e2e8f0;--g100:#f1f5f9;--g50:#f8fafc;
  --green:#2d6a4f;--green-dark:#1e4a3a;--green-light:#4ade80;--green-pale:#f0fdf4;
  --amber:#d97706;--amber-pale:#fffbeb;
  --white:#fff;
  --ff:'DM Sans',system-ui,sans-serif;--ffd:'Playfair Display',Georgia,serif;
  --hdr-h:60px;
}
body{font-family:var(--ff);color:var(--g900);background:var(--white);line-height:1.6}
img{max-width:100%;height:auto;display:block}

/* HEADER */
.hdr{
  position:sticky;top:0;z-index:1000;height:var(--hdr-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 1.25rem;border-bottom:1px solid var(--g200);
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  transition:box-shadow 0.3s;
}
.hdr.scrolled{box-shadow:0 2px 16px rgba(0,0,0,0.08)}

/* Logo */
.hdr-logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
.hdr-logo-img{width:40px;height:40px;border-radius:10px;object-fit:cover;flex-shrink:0}
.hdr-logo-text{display:flex;flex-direction:column;line-height:1.2}
.hdr-logo-title{font-family:var(--ffd);font-size:1.05rem;font-weight:700;background:linear-gradient(135deg,#2c5f8a,#2d6a4f);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hdr-logo-sub{font-size:0.7rem;color:var(--g600);font-weight:600;text-transform:uppercase;letter-spacing:1px}

/* HAMBURGER */
.hdr-hamburger{
  display:none;flex-direction:column;justify-content:center;align-items:center;
  gap:5px;width:40px;height:40px;background:none;border:none;cursor:pointer;
  padding:8px;border-radius:8px;-webkit-tap-highlight-color:transparent;
}
.hdr-hamburger span{
  display:block;width:22px;height:2px;background:var(--g800);
  border-radius:2px;transition:transform 0.3s ease;transform-origin:center;
}
.hdr-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hdr-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hdr-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* DESKTOP NAV */
.hdr-nav-desktop{display:flex;align-items:center;gap:0.25rem}
.hdr-nav-link{
  font-size:0.82rem;font-weight:500;color:var(--g600);
  text-decoration:none;background:none;border:none;cursor:pointer;
  font-family:var(--ff);padding:0.35rem 0.65rem;border-radius:6px;
  display:flex;align-items:center;gap:0.3rem;
  transition:color 0.2s,background 0.2s;white-space:nowrap;line-height:1;
  margin:0;text-align:left;-webkit-appearance:none;appearance:none;
}
.hdr-nav-link:hover{color:var(--g900);background:var(--g100)}
.hdr-nav-link.active{color:var(--green);background:var(--g100)}
.hdr-nav-link.active .nav-icon{color:var(--green)}
.hdr-cta{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:var(--white)!important;padding:0.5rem 1rem;border-radius:7px;
  font-weight:600!important;font-size:0.82rem;text-decoration:none;
  white-space:nowrap;flex-shrink:0;
  transition:opacity 0.2s,transform 0.15s;-webkit-tap-highlight-color:transparent;
}
.hdr-cta:hover{opacity:0.9;transform:translateY(-1px)}

/* DROPDOWN ISLAS */
.hdr-dropdown{position:relative}
.hdr-dropdown-icon{width:12px;height:12px;transition:transform 0.25s;flex-shrink:0;color:var(--g400)}
.hdr-dropdown.open .hdr-dropdown-icon{transform:rotate(180deg)}
.nav-icon{display:flex;align-items:center;justify-content:center;width:16px;height:16px;color:var(--g400);flex-shrink:0}
.nav-icon svg{width:100%;height:100%}
.hdr-nav-link:hover .nav-icon{color:var(--g600)}
.hdr-dropdown-menu a .nav-icon{color:var(--g400)}
.hdr-dropdown-menu a:hover .nav-icon{color:var(--green)}
.hdr-dropdown-menu a.active{color:var(--green);font-weight:600}
.hdr-dropdown-menu a.active .nav-icon{color:var(--green)}
.hdr-dropdown.active .hdr-dropdown-btn{color:var(--green);background:var(--g100)}
.hdr-dropdown.active .hdr-dropdown-btn .nav-icon{color:var(--green)}

.hdr-dropdown-menu{
  position:absolute;top:calc(100% + 10px);right:0;
  background:var(--white);border:1px solid var(--g200);border-radius:10px;
  padding:0.35rem;min-width:210px;list-style:none;
  box-shadow:0 8px 28px rgba(0,0,0,0.12),0 2px 8px rgba(0,0,0,0.06);
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:opacity 0.2s ease,transform 0.2s ease,visibility 0.2s;z-index:200;
}
.hdr-dropdown.open .hdr-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.hdr-dropdown-menu a{
  display:flex;align-items:center;gap:0.6rem;padding:0.55rem 0.75rem;
  font-size:0.82rem;color:var(--g700);text-decoration:none;border-radius:7px;
  transition:background 0.15s,color 0.15s;font-weight:500;
}
.hdr-dropdown-menu a:hover{background:var(--green-pale);color:var(--green)}
.isla-flag{font-size:1rem;line-height:1;flex-shrink:0}

/* HERO */
.hero{
  position:relative;min-height:88vh;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;background:var(--g900);
}
.hero-media{position:absolute;inset:0;width:100%;height:100%}
.hero-img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-gradient{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.72) 0%,rgba(0,0,0,0.5) 45%,rgba(0,0,0,0.22) 100%);
}
.hero-content{
  position:relative;z-index:10;padding:3rem 2rem;
  max-width:640px;width:100%;color:var(--white);text-align:left;
}
.hero-eyebrow{
  font-size:0.72rem;font-weight:600;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--green-light);margin-bottom:1rem;opacity:0.9;
}
.hero-h1{
  font-family:var(--ffd);font-size:3rem;font-weight:700;
  line-height:1.05;letter-spacing:-0.01em;margin-bottom:1.25rem;
}
.hero-h1 em{font-style:normal;color:var(--green-light)}
.hero-lead{
  font-size:1.05rem;line-height:1.7;color:rgba(255,255,255,0.72);
  margin-bottom:2rem;max-width:520px;
}
.hero-lead strong{color:rgba(255,255,255,0.92);font-weight:500}
.hero-actions{display:flex;gap:0.875rem;align-items:center;flex-wrap:wrap}
.btn-primary{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:var(--white);padding:0.8rem 1.6rem;border-radius:8px;
  font-weight:600;font-size:0.9rem;text-decoration:none;border:none;cursor:pointer;
  display:inline-flex;align-items:center;gap:0.4rem;
  box-shadow:0 4px 16px rgba(45,106,79,0.4);
  transition:opacity 0.2s,transform 0.15s;-webkit-tap-highlight-color:transparent;
}
.btn-primary:hover{opacity:0.92;transform:translateY(-1px)}
.btn-ghost{
  color:rgba(255,255,255,0.65);font-size:0.875rem;font-weight:500;
  text-decoration:none;display:inline-flex;align-items:center;gap:0.3rem;
  border:none;background:none;cursor:pointer;transition:color 0.2s;
  -webkit-tap-highlight-color:transparent;
}
.btn-ghost:hover{color:var(--white)}
.hero-detail{
  position:absolute;bottom:2rem;right:2rem;z-index:10;
  background:rgba(0,0,0,0.48);
  border:1px solid rgba(255,255,255,0.12);border-radius:12px;
  padding:1rem 1.25rem;color:var(--white);
}
.hero-detail-label{font-size:0.65rem;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.4);margin-bottom:0.5rem}
.hero-detail-line{display:flex;align-items:center;gap:0.5rem;font-size:0.8rem;color:rgba(255,255,255,0.75);margin-bottom:0.3rem}
.hero-detail-line:last-child{margin-bottom:0}
.hero-detail-dot{width:6px;height:6px;background:var(--green-light);border-radius:50%;flex-shrink:0}

/* EDITORIAL TAG */
.editorial-tag{
  display:inline-block;font-size:0.7rem;font-weight:700;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--green);border-left:3px solid var(--green);
  padding-left:0.75rem;margin-bottom:1.5rem;
}

/* INTRO EDITORIAL */
.editorial{padding:4rem 2rem;max-width:720px;margin:0 auto}
.editorial h2{font-family:var(--ffd);font-size:2rem;font-weight:700;line-height:1.15;color:var(--g900);margin-bottom:1.25rem}
.editorial p{font-size:1rem;line-height:1.8;color:var(--g600);margin-bottom:1rem}
.editorial p:last-of-type{margin-bottom:0}
.editorial p strong{color:var(--g800);font-weight:600}
.editorial-data{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;
  margin-top:2.5rem;padding-top:2.5rem;border-top:1px solid var(--g200);
}
.edata-item{text-align:center}
.edata-num{font-family:var(--ffd);font-size:2rem;font-weight:700;color:var(--green);display:block;line-height:1}
.edata-lbl{font-size:0.78rem;color:var(--g400);margin-top:0.35rem;line-height:1.4}

/* POR QUÉ MADERA */
.porque{background:var(--g900);color:var(--white);padding:4rem 2rem}
.porque-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.porque-text .editorial-tag{color:var(--green-light);border-color:var(--green-light)}
.porque-text h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;line-height:1.2;color:var(--white);margin-bottom:1.25rem}
.porque-text p{font-size:0.95rem;line-height:1.8;color:rgba(255,255,255,0.6);margin-bottom:0.875rem}
.porque-text p strong{color:rgba(255,255,255,0.9);font-weight:600}
.porque-facts{display:flex;flex-direction:column;gap:1rem}
.pfact{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:10px;padding:1.25rem 1.5rem;border-left:3px solid var(--green-light)}
.pfact-title{font-weight:600;font-size:0.875rem;color:var(--white);margin-bottom:0.35rem}
.pfact-desc{font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.55}

/* PRECIOS */
.precios{padding:4rem 2rem;background:var(--g50)}
.precios-inner{max-width:960px;margin:0 auto}
.precios-header{margin-bottom:2.5rem}
.precios-header h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900);margin-bottom:0.75rem}
.precios-header p{font-size:0.95rem;color:var(--g600);line-height:1.7;max-width:540px}
.precios-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-bottom:2rem}
.precio-card{background:var(--white);border:1px solid var(--g200);border-radius:12px;padding:1.5rem}
.precio-card-title{font-size:0.72rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--g400);margin-bottom:1rem}
.precio-linea{display:flex;justify-content:space-between;align-items:center;padding:0.6rem 0;border-bottom:1px solid var(--g100);font-size:0.875rem}
.precio-linea:last-child{border-bottom:none}
.precio-linea-label{color:var(--g600)}
.precio-linea-val{font-weight:600;color:var(--g900)}
.precio-val-aparte{color:var(--amber)!important}
.precio-nota{background:var(--amber-pale);border:1px solid #fde68a;border-radius:10px;padding:1rem 1.25rem;font-size:0.82rem;color:#92400e;line-height:1.6}
.precio-nota strong{font-weight:600}

/* CTA ARQUITECTO */
.cta-arquitecto{
  background:#fffbeb;border-left:3px solid #d97706;border-radius:10px;
  padding:1.25rem 1.5rem;display:flex;gap:1.5rem;align-items:center;margin-top:1.25rem;
}
.cta-arquitecto-text{flex:1;min-width:0}
.cta-arquitecto-title{font-weight:700;font-size:0.9rem;color:#92400e}
.cta-arquitecto-desc{font-size:0.8rem;color:#b45309;line-height:1.6;margin-top:0.25rem}
.cta-arquitecto-btn{
  background:#d97706;color:#fff;padding:0.55rem 1.1rem;border-radius:8px;
  font-size:0.8rem;font-weight:600;white-space:nowrap;border:none;cursor:pointer;
  text-decoration:none;display:inline-block;flex-shrink:0;
  transition:opacity 0.2s,transform 0.15s;-webkit-tap-highlight-color:transparent;
}
.cta-arquitecto-btn:hover{opacity:0.9;transform:translateY(-1px)}

/* CARRUSEL */
.carousel-s{padding:4rem 2rem;background:var(--white)}
.carousel-s-inner{max-width:960px;margin:0 auto;position:relative}
.carousel-s-header{margin-bottom:1.75rem}
.carousel-s-header h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900)}
.c-wrap{position:relative}
.c-clip{overflow:hidden;border-radius:12px}
.c-track{display:flex;gap:0;transition:transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);will-change:transform}
.c-card{flex:0 0 100%;overflow:hidden}
.c-img{width:100%;aspect-ratio:16/9;overflow:hidden;position:relative}
.c-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;transition:transform 0.4s ease}
.c-card:hover .c-img img{transform:scale(1.03)}
.c-overlay{
  position:absolute;bottom:0;left:0;right:0;
  padding:3.5rem 2rem 1.75rem;
  background:linear-gradient(to top,rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%);
  pointer-events:none;
}
.c-lugar{font-size:0.72rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--green-light);margin-bottom:0.35rem}
.c-title{font-family:var(--ffd);font-size:1.4rem;font-weight:700;color:var(--white);margin:0}
.c-btn{
  position:absolute;top:50%;transform:translateY(-50%);z-index:20;
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,0.92);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 14px rgba(0,0,0,0.22);color:var(--g800);
  transition:background 0.2s,box-shadow 0.2s,transform 0.2s;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.c-btn:hover{background:var(--white);transform:translateY(-50%) scale(1.08);box-shadow:0 4px 20px rgba(0,0,0,0.28)}
.c-btn-prev{left:-22px}
.c-btn-next{right:-22px}
.c-dots{display:flex;justify-content:center;gap:0.4rem;margin-top:1.25rem}
.cdot{
  width:6px;height:6px;border-radius:50%;background:var(--g200);border:none;cursor:pointer;
  transition:width 0.25s,background 0.25s,border-radius 0.25s;padding:0;touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.cdot.active{background:var(--green);width:20px;border-radius:3px}
.carousel-s-note{
  font-size:0.8rem;color:var(--g400);text-align:center;margin-top:1.25rem;line-height:1.6;max-width:640px;margin-left:auto;margin-right:auto;
}

/* PROCESO */
.proceso{padding:4rem 2rem;background:var(--green-pale)}
.proceso-inner{max-width:720px;margin:0 auto}
.proceso-inner h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900);margin-bottom:0.5rem}
.proceso-lead{font-size:0.95rem;color:var(--g600);line-height:1.7;margin-bottom:2.5rem}
.proceso-steps{display:flex;flex-direction:column}
.pstep{display:flex;flex-direction:column;gap:0.5rem;padding:1.5rem 0;border-bottom:1px solid #d1fae5}
.pstep:last-child{border-bottom:none}
.pstep-header{display:flex;align-items:center;gap:0.75rem}
.pstep-icon{
  width:28px;height:28px;color:var(--green);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.pstep-icon svg{width:100%;height:100%;stroke-width:2}
.pstep-title{font-weight:700;font-size:0.95rem;color:var(--g900)}
.pstep-desc{font-size:0.85rem;color:var(--g600);line-height:1.65}
.pstep-desc strong{color:var(--g800);font-weight:600}
.proceso-nota{background:rgba(45,106,79,0.08);border:1px solid rgba(45,106,79,0.2);border-radius:10px;padding:1rem 1.25rem;margin-top:2rem;font-size:0.82rem;color:var(--green-dark);line-height:1.6}

/* CTA CONSTRUCTORA */
.cta-constructora{
  background:linear-gradient(135deg,#2d6a4f,#1e4a3a);border-radius:10px;
  padding:1.25rem 1.5rem;display:flex;align-items:center;justify-content:space-between;
  gap:1rem;margin-top:1.25rem;flex-wrap:wrap;
}
.cta-constructora-text{flex:1;min-width:0}
.cta-constructora-title{font-weight:700;font-size:0.9rem;color:#fff}
.cta-constructora-desc{font-size:0.8rem;color:rgba(255,255,255,0.7);margin-top:0.25rem}
.cta-constructora-btn{
  background:#fff;color:#1e4a3a;padding:0.55rem 1.25rem;border-radius:8px;
  font-size:0.8rem;font-weight:700;white-space:nowrap;border:none;cursor:pointer;
  text-decoration:none;display:inline-block;flex-shrink:0;
  transition:opacity 0.2s,transform 0.15s;-webkit-tap-highlight-color:transparent;
}
.cta-constructora-btn:hover{opacity:0.92;transform:translateY(-1px)}

/* FAQ */
.faq-ed{padding:4rem 2rem;background:var(--white)}
.faq-ed-inner{max-width:720px;margin:0 auto}
.faq-ed-inner h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900);margin-bottom:0.5rem}
.faq-ed-lead{font-size:0.95rem;color:var(--g600);margin-bottom:2.5rem;line-height:1.7}
.faq-ed-item{border-bottom:1px solid var(--g200)}
.faq-ed-item:last-child{border-bottom:none}
.faq-ed-q{
  display:flex;justify-content:space-between;align-items:flex-start;
  cursor:pointer;gap:1rem;background:none;border:none;width:100%;text-align:left;
  padding:1.25rem 0;font-family:var(--ff);-webkit-tap-highlight-color:transparent;
}
.faq-ed-q-text{font-weight:600;font-size:0.95rem;color:var(--g900);line-height:1.4;flex:1}
.faq-ed-q-icon{
  width:24px;height:24px;border-radius:50%;background:var(--g100);
  display:flex;align-items:center;justify-content:center;
  font-size:0.75rem;color:var(--g600);flex-shrink:0;transition:transform 0.25s,background 0.25s,color 0.25s;margin-top:0.05rem;
}
.faq-ed-item.open .faq-ed-q-icon{background:var(--green);color:var(--white);transform:rotate(45deg)}
.faq-ed-a{
  font-size:0.875rem;color:var(--g600);line-height:1.75;
  overflow:hidden;max-height:0;
  transition:max-height 0.35s ease,padding-bottom 0.25s ease;padding-bottom:0;
}
.faq-ed-item.open .faq-ed-a{max-height:400px;padding-bottom:1.25rem}
.faq-ed-a strong{color:var(--g800);font-weight:600}
.faq-ed-a a{color:var(--green);text-decoration:underline}

/* FORMULARIO */
.form-s{background:var(--g900);padding:4rem 2rem}
.form-s-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.form-s-left{color:var(--white)}
.form-s-left .editorial-tag{color:rgba(74,222,128,0.8);border-color:rgba(74,222,128,0.4)}
.form-s-left h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;line-height:1.2;color:var(--white);margin-bottom:1rem}
.form-s-left h2 em{font-style:normal;color:var(--green-light)}
.form-s-left p{font-size:0.875rem;line-height:1.8;color:rgba(255,255,255,0.55);margin-bottom:1.5rem}
.form-s-left p strong{color:rgba(255,255,255,0.85);font-weight:500}
.form-s-honesty{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:10px;padding:1rem 1.25rem;font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.65}
.form-s-honesty strong{color:rgba(255,255,255,0.75);font-weight:600}
.form-card{background:var(--white);border-radius:16px;padding:2rem}
.form-card h3{font-family:var(--ffd);font-size:1.2rem;font-weight:700;color:var(--g900);margin-bottom:0.25rem}
.form-card-desc{font-size:0.78rem;color:var(--g400);margin-bottom:1.5rem}

/* Form inputs (unified) */
.form-input, .fi{
  width:100%;padding:0.7rem 0.875rem;border:1.5px solid var(--g200);border-radius:8px;
  font-family:var(--ff);font-size:0.875rem;color:var(--g800);background:var(--white);
  outline:none;margin-bottom:0.6rem;transition:border-color 0.2s,box-shadow 0.2s;
  -webkit-appearance:none;appearance:none;
}
.form-input::placeholder, .fi::placeholder{color:var(--g400)}
.form-input:focus, .fi:focus{border-color:var(--green);box-shadow:0 0 0 3px rgba(45,106,79,0.1)}
.form-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 0.875rem center;padding-right:2.2rem}
textarea.form-input{resize:vertical}
.form-input-hint{font-size:0.75rem;color:var(--g400);margin-top:0.25rem;margin-left:0.25rem}
.form-input-hint-bold{font-weight:500;color:var(--g600)}

/* Form checks */
.form-checks{background:var(--g50);border:1px solid var(--g200);border-radius:12px;padding:1rem;margin-bottom:0.6rem}
.form-checks-label{font-size:0.7rem;font-weight:700;color:var(--g500);text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.75rem}
.form-check-row{display:flex;align-items:flex-start;gap:0.75rem;cursor:pointer;margin-bottom:0.5rem}
.form-check-row:last-child{margin-bottom:0}
.form-check-input{width:16px;height:16px;margin-top:2px;flex-shrink:0;accent-color:var(--green)}
.form-check-text{font-size:0.8rem;color:var(--g600);line-height:1.55}
.form-check-link{color:#2563eb;text-decoration:underline}
.form-checks-header{margin-bottom:0.75rem}
.form-checks-title{font-size:0.85rem;font-weight:600;color:var(--g800)}
.form-checks-title-muted{font-weight:400;color:var(--g400)}
.form-checks-desc{font-size:0.75rem;color:var(--g400);margin-top:0.15rem}

/* Submit buttons */
.form-submit{
  width:100%;padding:0.875rem;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:var(--white);border:none;border-radius:9px;
  font-family:var(--ff);font-size:0.875rem;font-weight:600;cursor:pointer;
  margin-top:0.25rem;display:flex;align-items:center;justify-content:center;gap:0.4rem;
  transition:opacity 0.2s,transform 0.15s;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.form-submit:hover{opacity:0.9;transform:translateY(-1px)}
.form-submit-blue{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
}
.form-note{text-align:center;font-size:0.68rem;color:var(--g400);margin-top:0.6rem}

/* FUNNEL */
.funnel-h3{font-size:1.1rem;font-weight:700;color:var(--g900);line-height:1.3;margin-bottom:0.25rem}
.funnel-sub{font-size:0.82rem;color:var(--g500);margin-bottom:1.25rem}
.funnel-cards-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.75rem}
.funnel-card{
  border:1.5px solid var(--g200);border-radius:12px;padding:1.25rem 1rem;text-align:center;
  background:var(--white);cursor:pointer;transition:border-color 0.2s,box-shadow 0.2s,transform 0.15s;
  -webkit-tap-highlight-color:transparent;display:flex;flex-direction:column;align-items:center;
}
.funnel-card:hover{border-color:var(--green);box-shadow:0 4px 16px rgba(0,0,0,0.06);transform:translateY(-2px)}
.funnel-card-icon{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;margin-bottom:0.75rem}
.funnel-card-icon-a{background:var(--green-pale);color:var(--green)}
.funnel-card-icon-b{background:#eff6ff;color:#2563eb}
.funnel-card-title{font-weight:700;font-size:0.85rem;color:var(--g900);margin-bottom:0.25rem}
.funnel-card-sub{font-size:0.75rem;color:var(--g500);line-height:1.45}
.funnel-back-btn{
  display:inline-flex;align-items:center;gap:0.4rem;font-size:0.8rem;color:var(--g500);
  background:none;border:none;cursor:pointer;padding:0;margin-bottom:0.75rem;
  transition:color 0.2s;-webkit-tap-highlight-color:transparent;
}
.funnel-back-btn:hover{color:var(--g800)}
.funnel-selected-badge{
  display:inline-flex;align-items:center;gap:0.4rem;font-size:0.75rem;font-weight:600;
  padding:0.35rem 0.75rem;border-radius:99px;margin-bottom:0.5rem;
}
.funnel-selected-badge-a{background:var(--green-pale);color:var(--green)}
.funnel-selected-badge-b{background:#eff6ff;color:#1d4ed8}
.funnel-info-box{
  background:#eff6ff;border:1px solid #bfdbfe;border-radius:0.875rem;
  padding:1rem 1.125rem;display:flex;gap:0.75rem;align-items:flex-start;
}
.funnel-info-box-icon{color:#2563eb;font-size:1rem;flex-shrink:0;margin-top:0.15rem}
.funnel-info-box-text{font-size:0.8125rem;color:#1e3a8a;line-height:1.55;margin:0}
.funnel-info-box-link{color:#1d4ed8;font-weight:600;text-decoration:underline}

/* Animaciones funnel */
.funnel-fade-in{animation:funnelFadeIn 0.35s ease both}
@keyframes funnelFadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* Helpers */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.mt-4{margin-top:1rem}
.mb-5{margin-bottom:1.25rem}
.ml-2{margin-left:0.5rem}

/* GUÍAS */
.guias-s{padding:4rem 2rem;background:var(--g50)}
.guias-s-inner{max-width:960px;margin:0 auto}
.guias-s-inner h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900);margin-bottom:0.5rem}
.guias-lead{font-size:0.9rem;color:var(--g600);margin-bottom:2rem;line-height:1.7}
.guias-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}

/* Guías simples (nuevo) */
.guia-card-simple{
  background:var(--white);border:1px solid var(--g200);border-radius:12px;
  padding:1.5rem;text-decoration:none;display:block;transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
}
.guia-card-simple:hover{border-color:var(--green);transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,0.07)}
.guia-simple-title{font-weight:700;font-size:0.9rem;color:var(--g800);margin-bottom:0.4rem}
.guia-simple-desc{font-size:0.8rem;color:var(--g600);line-height:1.55;margin-bottom:0.875rem}
.guia-simple-link{font-size:0.75rem;color:var(--green);font-weight:600;display:inline-flex;align-items:center;gap:0.25rem}

/* FOOTER */
.footer{background:var(--g900);padding:3rem 2rem 1.5rem}
.footer-inner{max-width:960px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.06)}
.footer-brand{max-width:280px}
.footer-logo{display:flex;align-items:center;gap:0.75rem;margin-bottom:1rem}
.footer-logo img{width:40px;height:40px;border-radius:10px;object-fit:cover;flex-shrink:0}
.footer-logo-title{font-family:var(--ffd);font-size:1.05rem;font-weight:700;color:var(--white);line-height:1.2}
.footer-logo-sub{font-size:0.7rem;color:rgba(255,255,255,0.35);font-weight:600;text-transform:uppercase;letter-spacing:1px}
.footer-desc{font-size:0.82rem;color:rgba(255,255,255,0.35);line-height:1.6}
.footer-col h4{font-size:0.85rem;font-weight:700;color:var(--white);margin-bottom:1rem}
.footer-col a{display:block;font-size:0.85rem;color:rgba(255,255,255,0.4);text-decoration:none;margin-bottom:0.6rem;transition:color 0.2s}
.footer-col a:hover{color:var(--green-light)}
.footer-col a.active{color:var(--green-light);font-weight:600}
.footer-contact{display:flex;align-items:center;gap:0.5rem;font-size:0.85rem;color:rgba(255,255,255,0.4);margin:0}
.footer-contact i{color:rgba(255,255,255,0.3);font-size:0.9rem}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:1.5rem;flex-wrap:wrap;gap:0.75rem}
.footer-bottom p{font-size:0.78rem;color:rgba(255,255,255,0.25);margin:0}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{font-size:0.78rem;color:rgba(255,255,255,0.25);text-decoration:none;transition:color 0.2s}
.footer-bottom-links a:hover{color:rgba(255,255,255,0.55)}

/* RESPONSIVE */
@media (max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
}

/* Hide mobile menu elements on desktop */
.mobile-overlay,.mobile-panel{display:none}

@media (max-width:768px){
  .mobile-overlay,.mobile-panel{display:block}
  .hdr{padding:0 1rem}
  .hdr-hamburger{display:flex}
  .hdr-nav-desktop{display:none}
  
  /* Mobile overlay */
  .mobile-overlay{
    position:fixed;inset:0;background:rgba(0,0,0,0.45);z-index:9998;
    opacity:0;visibility:hidden;transition:opacity 0.3s ease,visibility 0.3s;
    backdrop-filter:blur(3px);
  }
  .mobile-overlay.open{opacity:1;visibility:visible}
  
  /* Mobile panel */
  .mobile-panel{
    position:fixed;top:0;right:0;width:92%;max-width:380px;height:100%;
    background:var(--white);z-index:9999;
    transform:translateX(100%);transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display:flex;flex-direction:column;overflow-y:auto;
    box-shadow:-4px 0 24px rgba(0,0,0,0.12);
  }
  .mobile-panel.open{transform:translateX(0)}
  
  /* Mobile panel header */
  .mobile-panel-header{
    display:flex;align-items:center;justify-content:space-between;
    padding:1.25rem 1.5rem;border-bottom:1px solid var(--g200);
    flex-shrink:0;
  }
  .mobile-panel-logo{display:flex;align-items:center;gap:0.75rem}
  .mobile-panel-logo img{width:40px;height:40px;border-radius:10px;object-fit:cover}
  .mobile-panel-title{font-family:var(--ffd);font-size:1.05rem;font-weight:700;background:linear-gradient(135deg,#2c5f8a,#2d6a4f);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
  .mobile-panel-sub{font-size:0.7rem;color:var(--g600);font-weight:600;text-transform:uppercase;letter-spacing:1px}
  .mobile-panel-close{
    width:36px;height:36px;border-radius:50%;background:var(--g100);border:none;
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    color:var(--g700);transition:background 0.2s,color 0.2s;
  }
  .mobile-panel-close:hover{background:var(--g200);color:var(--g900)}
  .mobile-panel-close svg{width:18px;height:18px}
  
  /* Mobile panel nav */
  .mobile-panel-nav{padding:0.5rem 1.5rem;flex:1}
  .mobile-panel-item{
    display:flex;align-items:center;gap:0.75rem;
    padding:1rem 0;color:var(--g600);text-decoration:none;
    font-weight:500;font-size:0.95rem;border-bottom:1px solid var(--g100);
    background:none;border:none;width:100%;cursor:pointer;text-align:left;
    font-family:var(--ff);-webkit-appearance:none;appearance:none;margin:0;
  }
  .mobile-panel-item .nav-icon{width:20px;height:20px;color:var(--g400)}
  .mobile-panel-item:hover{color:var(--green)}
  .mobile-panel-item:hover .nav-icon{color:var(--green)}
  .mobile-panel-item.active{color:var(--green)}
  .mobile-panel-item.active .nav-icon{color:var(--green)}
  .mobile-panel-item.active .mobile-panel-chevron{color:var(--green)}
  .mobile-panel-label{flex:1}
  .mobile-panel-chevron{width:14px;height:14px;color:var(--g400);margin-left:auto;transition:transform 0.25s;flex-shrink:0}
  .mobile-panel-dropdown-btn[aria-expanded="true"] .mobile-panel-chevron{transform:rotate(180deg)}
  
  /* Mobile submenu */
  .mobile-panel-submenu{
    max-height:0;overflow:hidden;transition:max-height 0.3s ease;
    padding-left:0.5rem;
  }
  .mobile-panel-submenu.open{max-height:400px}
  .mobile-panel-submenu a{
    display:flex;align-items:center;gap:0.6rem;
    padding:0.65rem 0.75rem;color:var(--g600);text-decoration:none;
    font-size:0.875rem;font-weight:500;border-radius:6px;
    transition:background 0.15s,color 0.15s;
  }
  .mobile-panel-submenu a:hover{background:var(--green-pale);color:var(--green)}
  .mobile-panel-submenu a .nav-icon{color:var(--g400)}
  .mobile-panel-submenu a:hover .nav-icon{color:var(--green)}
  .mobile-panel-submenu a.active{background:var(--green-pale);color:var(--green);font-weight:600}
  .mobile-panel-submenu a.active .nav-icon{color:var(--green)}
  
  /* Mobile CTA */
  .mobile-panel-cta{padding:1rem 1.5rem;flex-shrink:0}
  .mobile-panel-cta .hdr-cta{display:block;text-align:center;padding:0.875rem 1rem;font-size:0.9rem}
  
  /* Mobile footer */
  .mobile-panel-footer{padding:1.25rem 1.5rem;border-top:1px solid var(--g200);flex-shrink:0}
  .mobile-panel-email{display:flex;align-items:center;gap:0.5rem;font-size:0.85rem;color:var(--g600);margin-bottom:0.5rem}
  .mobile-panel-email i{color:var(--g400);font-size:0.9rem}
  .mobile-panel-note{font-size:0.75rem;color:var(--g400);margin:0}
  
  body.menu-open{overflow:hidden}
  /* Hero */
  .hero{min-height:100svh;min-height:100vh}
  .hero-content{padding:2rem 1.25rem;max-width:100%;width:100%}
  .hero-h1{font-size:2rem}
  .hero-lead{font-size:0.95rem;max-width:100%;margin-bottom:1.5rem}
  .hero-actions{flex-direction:column;gap:0.5rem;align-items:stretch}
  .btn-primary{justify-content:center;padding:0.875rem 1.25rem}
  .btn-ghost{justify-content:center}
  .hero-detail{display:none}
  /* Sections */
  .editorial,.porque,.precios,.proceso,.faq-ed,.form-s,.guias-s{padding:3rem 1.25rem}
  .carousel-s{padding:3rem 0}
  .carousel-s-header{padding:0 1.25rem;margin-bottom:1.25rem}
  .c-dots{padding:0 1.25rem}
  .editorial{max-width:100%}
  .editorial h2,.porque-text h2,.precios-header h2,.carousel-s-header h2,.proceso-inner h2,.faq-ed-inner h2,.form-s-left h2,.guias-s-inner h2{font-size:1.65rem}
  .editorial-data{gap:0.75rem}
  .edata-num{font-size:1.6rem}
  .porque-inner{grid-template-columns:1fr;gap:2rem}
  .precios-grid{grid-template-columns:1fr}
  /* Carousel mobile: solo swipe, portrait, edge-to-edge */
  .c-btn{display:none}
  .c-clip{border-radius:0}
  .c-img{aspect-ratio:4/5}
  .faq-ed-inner{max-width:100%}
  .faq-ed-q-text{font-size:0.9rem}
  .form-s-inner{grid-template-columns:1fr;gap:2rem}
  .fi-row{grid-template-columns:1fr}
  .form-card{padding:1.5rem}
  .guias-grid{grid-template-columns:1fr}
  .footer{padding:2.5rem 1.25rem 1.25rem}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:0.75rem}

  /* CTAs responsive */
  .cta-arquitecto{flex-direction:column;align-items:flex-start;gap:1rem}
  .cta-constructora{flex-direction:column;align-items:flex-start}
  .cta-constructora-btn{width:100%;text-align:center}

  /* Funnel responsive */
  .funnel-cards-grid{grid-template-columns:1fr}
}

@media (max-width:480px){
  .hero-h1{font-size:2rem}
  .footer-grid{grid-template-columns:1fr}
  .hdr-name{display:none}
  .indice-grid{grid-template-columns:1fr}
}

/* ── PRECIO SPLIT (patrón 50/50 texto-imagen) ── */
.precios--split{padding:0}
.precio-split{display:grid;grid-template-columns:1fr 1fr;min-height:280px}
.precio-split-text{
  background:var(--g900);padding:3.5rem 3rem;
  display:flex;flex-direction:column;justify-content:center;
}
.precio-split-text .editorial-tag{color:var(--green-light);border-color:var(--green-light)}
.precio-split-text h2{
  font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--white);
  line-height:1.15;margin-bottom:0.75rem;
}
.precio-split-text p{font-size:0.875rem;color:rgba(255,255,255,0.6);line-height:1.75;max-width:400px}
.precio-split-img{position:relative;overflow:hidden;min-height:240px}
.precio-split-img picture{position:absolute;inset:0;width:100%;height:100%}
.precio-split-img img{width:100%;height:100%;object-fit:cover;object-position:center}
.precios--split .precios-inner{padding:2.5rem 2rem 4rem;background:var(--g50)}

/* ── PARCELA SECTION (header full-width + icon-card grid) ── */
.parcela-s{padding:4rem 2rem;background:var(--g50)}
.parcela-inner{max-width:960px;margin:0 auto}
.parcela-header{max-width:640px;margin-bottom:2.5rem}
.parcela-header .editorial-tag{color:var(--green);border-color:var(--green)}
.parcela-header h2{
  font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900);
  margin-bottom:1rem;line-height:1.2;
}
.parcela-header p{font-size:0.95rem;color:var(--g600);line-height:1.75;margin-bottom:0.75rem}
.parcela-header p:last-child{margin-bottom:0}
.parcela-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:2.5rem}
.parcela-card-icon{
  width:36px;height:36px;background:var(--green-pale);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:var(--green);margin-bottom:0.875rem;flex-shrink:0;
}
.parcela-card-icon svg{width:18px;height:18px;stroke-width:2}
.parcela-card-title{font-weight:700;font-size:0.875rem;color:var(--g900);margin-bottom:0.35rem;line-height:1.3}
.parcela-card-desc{font-size:0.8rem;color:var(--g600);line-height:1.6}
.parcela-cta{
  background:var(--g900);border-radius:12px;
  padding:2rem 2.5rem;display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;flex-wrap:wrap;
}
.parcela-cta-text{flex:1;min-width:0}
.parcela-cta-title{font-family:var(--ffd);font-size:1.05rem;font-weight:700;color:var(--white);margin-bottom:0.35rem}
.parcela-cta-desc{font-size:0.82rem;color:rgba(255,255,255,0.58);line-height:1.6}
.parcela-cta-btn{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:var(--white);padding:0.75rem 1.5rem;border-radius:8px;
  font-weight:600;font-size:0.85rem;text-decoration:none;white-space:nowrap;
  flex-shrink:0;display:inline-block;
  transition:opacity 0.2s,transform 0.15s;-webkit-tap-highlight-color:transparent;
}
.parcela-cta-btn:hover{opacity:0.9;transform:translateY(-1px)}

/* PARCELA CARDS — centrado */
.parcela-card{
  background:var(--white);border:1px solid var(--g200);border-radius:12px;
  padding:1.5rem;border-top:3px solid var(--green);
  text-align:center;display:flex;flex-direction:column;align-items:center;
}

/* IMAGEN DE PRECIOS (debajo de la nota) */
.precio-img-block{
  margin-top:1.5rem;border-radius:12px;overflow:hidden;
  border:1px solid var(--g200);
}
.precio-img-block picture{display:block}
.precio-img-block img{
  width:100%;height:320px;object-fit:cover;object-position:center;display:block;
}
.precio-img-caption{
  padding:0.875rem 1.25rem;background:var(--white);
  border-top:1px solid var(--g200);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.precio-img-caption p{font-size:0.8rem;color:var(--g500);line-height:1.45;flex:1}
.precio-img-caption a{
  font-size:0.82rem;font-weight:600;color:var(--green);text-decoration:none;
  white-space:nowrap;flex-shrink:0;
  display:inline-flex;align-items:center;gap:0.25rem;
  transition:color 0.2s;
}
.precio-img-caption a:hover{color:var(--green-dark)}

/* ── ÍNDICE INTERACTIVO ── */
.indice-s{padding:2.5rem 2rem;background:var(--g50);border-top:1px solid var(--g200);border-bottom:1px solid var(--g200)}
.indice-inner{max-width:960px;margin:0 auto}
.indice-eyebrow{font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--g400);margin-bottom:0.6rem}
.indice-inner>h2{font-family:var(--ffd);font-size:1.25rem;font-weight:700;color:var(--g700);margin-bottom:1.25rem;line-height:1.3}
.indice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.65rem}
.indice-item{
  display:flex;align-items:center;gap:0.75rem;padding:0.875rem 1rem;
  background:var(--white);border:1px solid var(--g200);border-radius:10px;
  text-decoration:none;transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
}
.indice-item:hover{border-color:var(--green);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.06)}
.indice-num{font-family:var(--ffd);font-size:1.2rem;font-weight:700;color:var(--green);flex-shrink:0;line-height:1;min-width:1.75rem}
.indice-content{flex:1;min-width:0}
.indice-title{font-weight:600;font-size:0.82rem;color:var(--g800);line-height:1.3}
.indice-desc{font-size:0.71rem;color:var(--g500);margin-top:0.15rem;line-height:1.35}
.indice-arrow{color:var(--green);font-size:0.85rem;flex-shrink:0;opacity:0.5;transition:opacity 0.2s,transform 0.2s}
.indice-item:hover .indice-arrow{opacity:1;transform:translateX(3px)}

/* ── PRECIO BANNER (hero dentro de sección precios) ── */
.precios--banner{padding:0}
.precios--banner .precios-inner{padding:2.5rem 2rem 4rem}
.precio-banner{
  position:relative;width:100%;height:300px;overflow:hidden;
}
.precio-banner picture{position:absolute;inset:0;width:100%;height:100%}
.precio-banner img{width:100%;height:100%;object-fit:cover;object-position:center}
.precio-banner-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(0,0,0,0.82) 0%,rgba(0,0,0,0.5) 55%,rgba(0,0,0,0.12) 100%);
  display:flex;align-items:center;padding:0 2.5rem;
}
.precio-banner-content{color:var(--white);max-width:580px}
.precio-banner-content .editorial-tag{color:var(--green-light);border-color:var(--green-light);margin-bottom:0.875rem}
.precio-banner-content h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--white);line-height:1.2;margin-bottom:0.65rem}
.precio-banner-content p{font-size:0.88rem;color:rgba(255,255,255,0.68);line-height:1.65;max-width:460px}

/* ── CTA DEBAJO DEL CARRUSEL ── */
.cta-carousel-s{background:linear-gradient(135deg,var(--green),var(--green-dark));padding:3.5rem 2rem}
.cta-carousel-inner{max-width:960px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2.5rem;flex-wrap:wrap}
.cta-carousel-content{flex:1;min-width:0}
.cta-carousel-eyebrow{font-size:0.68rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.55);margin-bottom:0.6rem}
.cta-carousel-h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--white);margin-bottom:0.65rem;line-height:1.2}
.cta-carousel-p{font-size:0.92rem;color:rgba(255,255,255,0.72);line-height:1.7;max-width:460px}
.cta-carousel-btn{
  background:var(--white);color:var(--green-dark);padding:0.9rem 1.75rem;border-radius:9px;
  font-weight:700;font-size:0.9rem;text-decoration:none;
  display:inline-flex;align-items:center;gap:0.4rem;flex-shrink:0;
  box-shadow:0 4px 16px rgba(0,0,0,0.18);
  transition:opacity 0.2s,transform 0.15s;-webkit-tap-highlight-color:transparent;
}
.cta-carousel-btn:hover{opacity:0.95;transform:translateY(-1px)}

/* ── OTRAS GUÍAS ── */
.otras-guias-s{padding:4rem 2rem;background:var(--g50)}
.otras-guias-inner{max-width:960px;margin:0 auto}
.otras-guias-inner>h2{font-family:var(--ffd);font-size:1.75rem;font-weight:700;color:var(--g900);margin-bottom:0.5rem}
.otras-guias-lead{font-size:0.9rem;color:var(--g600);margin-bottom:2rem;line-height:1.7}
.otras-guias-group{margin-bottom:2rem}
.otras-guias-group-label{
  font-size:0.68rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--g400);margin-bottom:0.875rem;
  display:flex;align-items:center;gap:0.75rem;
}
.otras-guias-group-label::after{content:'';flex:1;height:1px;background:var(--g200)}
.otras-guias-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}

/* ── RESPONSIVE nuevos componentes ── */
@media (max-width:768px){
  .indice-s{padding:2rem 1.25rem}
  .indice-grid{grid-template-columns:repeat(2,1fr);gap:0.5rem}
  .indice-desc{display:none}
  /* precio split → apilado: imagen arriba, texto abajo */
  .precio-split{grid-template-columns:1fr}
  .precio-split-img{min-height:200px;order:-1}
  .precio-split-text{padding:2rem 1.25rem}
  .precio-split-text h2{font-size:1.4rem}
  .precios--split .precios-inner{padding:2rem 1.25rem 3rem}
  /* precio linea → apila etiqueta/valor en pantallas pequeñas */
  .precio-linea{flex-wrap:wrap;gap:0.15rem}
  .precio-linea-label{flex:1 1 100%}
  .precio-linea-val{font-size:0.82rem;padding-bottom:0.35rem}
  .precio-card{padding:1.25rem}
  /* precio imagen caption → apila texto y enlace */
  .precio-img-caption{flex-direction:column;align-items:flex-start;gap:0.5rem}
  /* parcela */
  .parcela-s{padding:3rem 1.25rem}
  .parcela-header{max-width:100%}
  .parcela-grid{grid-template-columns:repeat(2,1fr);gap:0.75rem}
  .parcela-card{padding:1.25rem}
  .parcela-cta{flex-direction:column;gap:1rem}
  .parcela-cta-btn{width:100%;text-align:center;display:block}
  /* cta carousel */
  .cta-carousel-s{padding:2.5rem 1.25rem}
  .cta-carousel-inner{flex-direction:column;gap:1.5rem}
  .cta-carousel-h2{font-size:1.4rem}
  .cta-carousel-btn{width:100%;text-align:center;justify-content:center}
  .otras-guias-s{padding:3rem 1.25rem}
  .otras-guias-grid{grid-template-columns:1fr}
}
@media (max-width:480px){
  .parcela-grid{grid-template-columns:1fr}
}

/* ── BOTÓN VOLVER AL ÍNDICE ── */
.btn-indice{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:900;
  width:44px;height:44px;border-radius:12px;
  background:var(--green);color:#fff;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(45,106,79,.35);
  opacity:0;visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s,visibility .25s,transform .25s;
}
.btn-indice.visible{opacity:1;visibility:visible;transform:translateY(0)}
.btn-indice:hover{background:var(--green-dark);box-shadow:0 6px 20px rgba(45,106,79,.45)}
@media(max-width:768px){.btn-indice{bottom:1rem;right:1rem;width:40px;height:40px}}
