/* landing-regularizacion.css - estilos reutilizables para landings */
:root{
  --green:#0f6b3a;
  --accent:#e0c341;
  --bg:#fbfcfb;
  --card-bg: rgba(255,255,255,0.6);
  --glass-border: rgba(255,255,255,0.35);
  --text:#17321a;
  --muted:#556b57;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}


/* Estilos generales del navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, #929292, #eeeeee44);
  z-index: 1000;
  font-family: Arial, sans-serif;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0.7rem;
}

/* Logo */
.navbar-logo img {
  height: 80px;
  width: auto;
}

/* Enlaces */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar-link:hover {
  color: #126cc0;
}

/* Botón menú móvil */
.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(46, 125, 50, 0.95);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }
}

/* container */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* HERO */
.landing-service__hero{
  background: linear-gradient(180deg, rgba(15,107,58,0.85), rgba(15,107,58,0.65)), url('img/landing-hero-bg.jpg') center/cover no-repeat;
  color:#fff;
  padding:60px 0;
}

.landing-service__hero-inner{
  display:flex;
  align-items:center;
  gap:30px;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  flex-wrap:wrap;
}

.landing-service__hero-copy{
  flex:1 1 520px;
}

.landing-service__title{
  font-size:2.2rem;
  margin:0 0 12px;
  line-height:1.05;
  color:#fff;
}

.landing-service__subtitle{
  font-size:1.05rem;
  margin:0 0 18px;
  color:#f3f7f3;
}

.landing-service__cta-row{
  display:flex;
  gap:12px;
  margin-bottom:12px;
  align-items:center;
}

.landing-service__cta{
  display:inline-block;
  background:var(--accent);
  color:var(--text);
  padding:12px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
}

.landing-service__cta-secondary{
  display:inline-block;
  background:transparent;
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.landing-service__microcopy{
  font-size:0.95rem;
  color:rgba(255,255,255,0.9);
  margin-top:10px;
}

/* hero figure */
.landing-service__hero-figure{
  flex:1 1 420px;
  text-align:right;
}

.landing-service__hero-figure img{
  width:100%;
  max-width:420px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,0.35);
  border:4px solid rgba(255,255,255,0.08);
}

/* WHY */
.landing-service__why{padding:50px 0}
.landing-service__section-title{
  text-align:center;
  font-size:1.6rem;
  color:var(--green);
  margin-bottom:18px;
}

.landing-service__cred{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:28px;
  align-items:center;
}

.landing-service__cred-left p{color:var(--muted); margin-bottom:14px}
.landing-service__trust-list{list-style:none;padding:0;margin:0}
.landing-service__trust-list li{padding:8px 0;border-bottom:1px dashed #e6efe6;color:var(--muted)}

/* problems */
.landing-service__problems{padding:40px 0}
.landing-service__problems-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:18px;
}

.landing-service__problem-card{
  background:#fff;
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(12,45,22,0.06);
  border:1px solid #eef6ee;
}

.landing-service__problem-card h3{margin:0 0 8px;color:var(--green)}
.landing-service__problem-card p{margin:0;color:var(--muted)}

/* process (cards + timeline) */
.landing-service__process{padding:40px 0}
.landing-service__cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:28px;
}

.landing-service__card{
  background:var(--card-bg);
  padding:18px;
  border-radius:12px;
  border:1px solid var(--glass-border);
  backdrop-filter: blur(6px);
  box-shadow:0 8px 20px rgba(12,45,22,0.04);
}

.landing-service__card h4{margin:0 0 10px;color:var(--green)}
.landing-service__card p{margin:0;color:var(--muted)}

/* timeline */
.landing-service__timeline{
  display:flex;
  gap:12px;
  align-items:stretch;
  justify-content:space-between;
  margin-top:8px;
  flex-wrap:wrap;
}

.landing-service__timeline-step{
  flex:1 1 18%;
  background:#fff;
  border-radius:10px;
  padding:12px;
  text-align:left;
  border:1px solid #eef6ee;
  transition:transform .25s ease, box-shadow .25s ease;
  opacity:0.55;
}

.landing-service__timeline-step.active{
  transform:translateY(-6px);
  box-shadow:0 8px 24px rgba(12,45,22,0.08);
  opacity:1;
}

.landing-service__timeline-step .step-num{
  width:36px;height:36px;border-radius:50%;background:var(--green);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-weight:700;margin-bottom:8px;
}

.step-body h5{margin:0 0 6px;font-size:0.98rem;color:var(--green)}
.step-body p{margin:0;color:var(--muted);font-size:0.92rem}

/* offers grid (7 cards) */
.landing-service__offers{padding:48px 0}
.landing-service__offers-grid{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

.landing-service__offer-card{
  width:280px;
  background:var(--card-bg);
  border-radius:12px;
  padding:16px;
  border:1px solid var(--glass-border);
  box-shadow:0 6px 18px rgba(12,45,22,0.04);
}

.landing-service__offer-card h4{margin:0 0 8px;color:var(--green)}
.landing-service__offer-card p{margin:0;color:var(--muted)}

/* final CTA and form */
.landing-service__final-cta{padding:50px 0;background:linear-gradient(180deg, #fff, #f9fbf8)}
.landing-service__final-cta-inner{display:flex;gap:24px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.landing-service__final-copy{flex:1 1 420px}
.landing-service__final-title{font-size:1.4rem;color:var(--green);margin:0 0 8px}
.landing-service__final-sub{margin:0 0 12px;color:var(--muted)}

.landing-service__form{flex:1 1 420px;display:flex;flex-direction:column;gap:10px}
.landing-service__form input,
.landing-service__form textarea{
  padding:12px;border-radius:8px;border:1px solid #e8f1e9;font-size:0.95rem;
}

.landing-service__form-cta{
  background:var(--green);
  color:#fff;border:none;padding:12px;border-radius:8px;font-weight:700;cursor:pointer;
}

.landing-service__other{margin-top:18px;text-align:center}
.landing-service__other-link{color:var(--green);text-decoration:underline}

/* responsive */
@media (max-width:980px){
  .landing-service__cards{grid-template-columns:repeat(2,1fr)}
  .landing-service__hero-figure{text-align:center}
  .landing-service__hero-figure img{max-width:360px}
  .landing-service__cred{grid-template-columns:1fr}
  .landing-service__problems-grid{grid-template-columns:1fr}
  .landing-service__timeline{gap:8px}
}

@media (max-width:640px){
  .landing-service__cards{grid-template-columns:1fr}
  .landing-service__cards .landing-service__card{padding:14px}
  .landing-service__hero-inner{padding:0 12px}
  .landing-service__hero-copy{text-align:center}
  .landing-service__hero-figure{order:-1;margin-bottom:18px}
}


/* METODOLOGÍA */
.metodologia {
  background-color: #ffffff;
  padding: 5rem 2rem;
}

.metodologia .intro-texto {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

.pasos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.paso {
  background: #f7faf7;
  border: 1px solid #dfe8df;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.paso:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.paso .numero {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #2e7d32;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.paso h3 {
  margin-bottom: 0.5rem;
  color: #164a1f;
}

.paso p {
  font-size: 0.95rem;
  color: #555;
}


.servicios-extras {
  padding: 5rem 2rem;
  background: #ffffff;
}

.servicios-extras .contenedor {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.servicios-extras h2 {
  font-size: 2.2rem;
  color: #164a1f;
  margin-bottom: 1rem;
}

.servicios-extras .intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.grid-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.servicio-card {
  background: rgba(240, 250, 240, 0.9);
  border: 1px solid #dceadc;
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  background-color: #f7fcf7;
}

.servicio-card h3 {
  color: #2e7d32;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.servicio-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* =========================================
   SECCIÓN REGULARIZACIÓN DE TIERRAS (4 tipos)
   ========================================= */
.tierras-section {
  padding: 60px 0;
  background: #ffffff;
}
.tierras-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.tierras-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 14px;
}
.tierras-intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.tierras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.tierras-card {
  background: #f9fbf9;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e1ece1;
  border-top: 4px solid #2ecc71;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tierras-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.tierras-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.tierras-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 10px;
}
.tierras-card-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
}
@media (max-width: 992px) {
  .tierras-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tierras-grid { grid-template-columns: 1fr; }
  .tierras-title { font-size: 1.8rem; }
}

/* =========================================
   FOOTER Y BOTÓN WHATSAPP FLOTANTE
   ========================================= */
.button2 {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, background 0.3s ease;
}
.button2:hover {
  transform: scale(1.05);
  background-color: #1ebe57;
}
.button2 svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* CTA FINAL */
.cta-final-section {
  padding: 60px 20px;
  background: #1c4b2e;
  color: #fff;
  text-align: center;
}
.cta-final-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.cta-final-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 10px;
}
.cta-final-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #2ecc71;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-final-btn:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

/* FOOTER */
.footer-section {
  background: #2c3e50;
  color: #fff;
  padding: 70px 5% 35px;
  text-align: center;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-cta--centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.footer-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}
.footer-contacto-msg {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer-service-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 22px 24px;
  max-width: 580px;
  margin: 0 auto 30px;
}
.footer-service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-price {
  color: #e0c341;
}
.footer-text {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 10px;
}
.footer-whatsapp-cta {
  display: inline-block;
  margin-top: 14px;
  background: #2ecc71;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.footer-whatsapp-cta:hover {
  background: #27ae60;
  transform: translateY(-2px);
}
.footer-legal {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.rd-footer {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.rd-footer:hover {
  transform: scale(1.1);
}
.footer-brand-tagline {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 25px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.footer-brand-tagline p {
  margin: 4px 0;
}
.footer-brand-tagline strong {
  color: #ffffff;
  letter-spacing: 0.5px;
}
.footer-brand-wa {
  color: #2ecc71;
  text-decoration: none;
  font-weight: 700;
}
.footer-brand-wa:hover {
  text-decoration: underline;
}

