html {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
    scroll-behavior: smooth;
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p{
    padding: 0;
    margin: 0;
}

section, main, header{
    position: relative;
}



/* 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;
  }
}

/*hero-section*/

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../img/img-hero-section.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 5%;
}

.hero-content {
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-highlight {
  color: #2ecc71; /* Verde contraste */
}

.hero-subheadline {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.hero-cta-btn {
  display: inline-block;
  background: #2ecc71;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-cta-btn:hover {
  background: #27ae60;
}

.hero-testimonials {
  margin-top: 40px;
  font-size: 1.1rem;
  font-style: italic;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.hero-testimonial {
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
}

.hero-testimonial.hero-active {
  opacity: 1;
  position: relative;
}

/*Responsive */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }
}

/*confianza*/

.confianza-section {
  padding: 80px 5%;
  background: #f9f9f9;
  color: #333;
}

.confianza-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.confianza-image {
  flex: 1;
}

.confianza-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.confianza-content {
  flex: 1.2;
}

.confianza-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2c3e50;
}

.confianza-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.confianza-highlight {
  color: #2ecc71;
  font-weight: 600;
}

.confianza-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.confianza-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.confianza-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .confianza-container {
    flex-direction: column;
    text-align: center;
  }

  .confianza-content {
    flex: unset;
  }

  .confianza-title {
    font-size: 2rem;
  }

  .confianza-text {
    font-size: 1.05rem;
  }

  .confianza-list {
    text-align: left;
    display: inline-block;
  }
}

/*servicios/index*/

.servicios-section {
  padding: 80px 5%;
  background: #ffffff;
}

.servicios-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicios-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 6px solid #2ecc71; /* verde adorno */
  position: relative;
}

.servicios-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.servicios-card::after {
  content: "";
  width: 40px;
  height: 4px;
  background: #f1c40f; /* amarillo adorno */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.servicios-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.servicios-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #2c3e50;
}

.servicios-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.servicios-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.servicios-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  color: #333;
}

.servicios-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .servicios-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .servicios-container {
    grid-template-columns: 1fr;
  }
}


.servicios-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #2ecc71; /* verde */
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.servicios-btn:hover {
  background: #f1c40f; /* amarillo */
  color: #2c3e50;
  transform: translateY(-2px);
}

/*testimonios*/

.testimonios-section {
  padding: 80px 5%;
  background: #f9f9f9;
  color: #333;
  text-align: center;
}

.testimonios-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
}

.testimonios-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Tarjetas */
.testimonios-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.testimonios-card {
  flex: 1 1 calc(20% - 20px);
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonios-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.testimonios-icon {
  font-size: 2rem;
  color: #2ecc71;
  display: block;
  margin-bottom: 10px;
}

.testimonios-card-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* Slider */
.testimonios-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonios-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonios-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
}

.testimonios-text {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonios-author {
  font-weight: bold;
  color: #2ecc71;
}

/* Botones slider */
.testimonios-prev,
.testimonios-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}

.testimonios-prev:hover,
.testimonios-next:hover {
  background: #f1c40f;
  color: #2c3e50;
}

.testimonios-prev {
  left: -50px;
}

.testimonios-next {
  right: -50px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonios-card {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 600px) {
  .testimonios-card {
    flex: 1 1 100%;
  }
  .testimonios-prev { left: 10px; }
  .testimonios-next { right: 10px; }
}

/*footer*/

.footer-section {
  background: #2c3e50;
  color: #fff;
  padding: 80px 5% 40px;
  text-align: center;
}

.footer-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-highlight {
  color: #f1c40f;
}

.footer-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ddd;
}

.footer-form {
  max-width: 600px;
  margin: 0 auto 40px;
}

.footer-form-group {
  margin-bottom: 20px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.footer-form textarea {
  resize: none;
}

.footer-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2ecc71;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-btn:hover {
  background: #f1c40f;
  color: #2c3e50;
  transform: translateY(-2px);
}

.footer-legal {
  font-size: 0.9rem;
  color: #bbb;
}

.footer-link {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 8px;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.6rem;
  }
  .footer-text {
    font-size: 1rem;
  }
}

/* =======================
   HERO SERVICIOS
======================= */
.hero-servicios {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  background: #f5f5f5;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-servicios__title {
  font-size: 2rem;
  color: #1b5e20;
}

.hero-servicios__title span {
  color: #fbc02d;
}

.hero-servicios__subtitle {
  font-size: 1.1rem;
  margin: 10px 0 20px 0;
}

.hero-servicios__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-servicios__btn-small {
  background: #2e7d32;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-servicios__btn-small:hover {
  background: #1b5e20;
}

.hero-servicios__image img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* =======================
   SERVICIO DETALLE
======================= */
.servicio-detalle {
  padding: 60px 10%;
  border-bottom: 1px solid #ddd;
}

.servicio-detalle__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.servicio-detalle__text {
  flex: 1 1 50%;
}

.servicio-detalle__title {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.servicio-detalle__desc {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.servicio-detalle__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
}

.serviciosdetalle__h3{
  margin-top: 20px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.servicio-detalle__list li {
  margin-bottom: 8px;
}

.servicio-detalle__image {
  flex: 1 1 40%;
}

.servicio-detalle__image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* =======================
   BOTÓN DE SERVICIO DETALLE
======================= */
.servicio-detalle__btn {
  display: inline-block;
  margin-top: 20px;
  background: #fbc02d;
  color: #1b5e20;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.servicio-detalle__btn:hover {
  background: #2e7d32;
  color: #fff;
}

/* ================================
   N O S O T R O S . C S S
================================ */

/* -------------------------------
   HERO SECTION
-------------------------------- */
.nosotros-hero {
  background: #f0f8f5;
  padding: 4rem 1rem;
}

.nosotros-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.nosotros-hero__text {
  flex: 1 1 500px;
}

.nosotros-hero__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.nosotros-hero__accent {
  color: #1e8e46;
}

.nosotros-hero__lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.nosotros-hero__btn {
  display: inline-block;
  background: #1e8e46;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.nosotros-hero__btn:hover {
  background: #2cbf5a;
}

.nosotros-hero__image img {
  max-width: 100%;
  border-radius: 12px;
}

/* -------------------------------
   BIO SECTION
-------------------------------- */
.nosotros-bio {
  background: #fff;
  padding: 4rem 1rem;
}

.nosotros-bio__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.nosotros-bio__text {
  flex: 1 1 500px;
}

.nosotros-bio__title {
  font-size: 2rem;
  color: #1e8e46;
  margin-bottom: 1rem;
}

.nosotros-bio__paragraph {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.nosotros-bio__image {
  flex: 1 1 400px;
}

.nosotros-bio__image img {
  width: 100%;
  border-radius: 10px;
}

/* -------------------------------
   COMPARATIVO SECTION
-------------------------------- */
.nosotros-comparativo {
  background: #f6faf7;
  padding: 4rem 1rem;
  text-align: center;
}

.nosotros-comparativo__title {
  font-size: 2rem;
  color: #1e8e46;
  margin-bottom: 2rem;
}

.nosotros-comparativo__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.nosotros-comparativo__col {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid #dcefe3;
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.nosotros-comparativo__col--highlight {
  border-color: #1e8e46;
  box-shadow: 0 8px 20px rgba(30,142,70,0.15);
}

.nosotros-comparativo__col h3 {
  color: #1e8e46;
  margin-bottom: 1rem;
}

.nosotros-comparativo__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nosotros-comparativo__col li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #edf3ee;
  padding-bottom: 0.4rem;
}

/* -------------------------------
   ABUSOS SECTION
-------------------------------- */
.nosotros-abusos {
  background: #fff;
  padding: 4rem 1rem;
}

.nosotros-abusos__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.nosotros-abusos__title {
  color: #1e8e46;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.nosotros-abusos__container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.nosotros-abusos__image img {
  margin-top: 2rem;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* -------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 768px) {
  .nosotros-hero__container,
  .nosotros-bio__container {
    flex-direction: column;
    text-align: center;
  }

  .nosotros-comparativo__wrapper {
    flex-direction: column;
  }
}

/* HERO */
.agrario-hero {
  background: linear-gradient(rgba(0, 60, 30, 0.6), rgba(0, 60, 30, 0.6)), url('agrario-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.agrario-hero__title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.agrario-hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.agrario-hero__text {
  max-width: 700px;
  margin: 0 auto 30px;
}

.agrario-hero__btn {
  background: #e0c341;
  color: #003c1e;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.agrario-hero__btn:hover {
  background: #fff;
  color: #003c1e;
}

/* SERVICIOS */
.agrario-servicios {
  padding: 80px 20px;
  text-align: center;
}

.agrario-servicios__title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004d26;
}

.agrario-servicios__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.agrario-servicio__card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agrario-servicio__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 60, 30, 0.2);
}

.agrario-servicio__card h3 {
  color: #004d26;
  margin-bottom: 10px;
}

/* CASOS */
.agrario-casos {
  background: #f1f5f2;
  padding: 80px 20px;
}

.agrario-casos__title {
  text-align: center;
  font-size: 2rem;
  color: #003c1e;
  margin-bottom: 50px;
}

.agrario-caso {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0, 60, 30, 0.1);
}

.agrario-caso h3 {
  color: #004d26;
}

.agrario-caso__puntos {
  list-style: disc inside;
  margin: 15px 0;
  color: #333;
}

.agrario-caso__resolucion {
  font-weight: bold;
  color: #004d26;
  margin-top: 10px;
}

.agrario-caso__conclusion {
  font-style: italic;
  color: #555;
}

.rd-footer{
  width: 45px;
  height: 45px;
  margin-bottom: 25px;
}

/* From Uiverse.io by NelsonDJCR */ 
.button2 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: fixed;
  overflow: hidden;
  top: 85%;
  right: 0;
  z-index: 1;
  color: #090909;
  padding: 0.7em 3.3em 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
}

.button2 > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button2:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.servicios-extra-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.servicios-extra-container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicios-extra-header {
  text-align: center;
  margin-bottom: 50px;
}

.servicios-extra-title {
  font-size: 2.4rem;
  color: #1c4b2e;
  margin-bottom: 10px;
  font-weight: 700;
}

.servicios-extra-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.servicios-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.servicios-extra-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.servicios-extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.servicios-extra-card-header {
  margin-bottom: 25px;
}

.servicios-extra-card-title {
  color: #1c4b2e;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.servicios-extra-card-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.servicios-extra-list-group {
  margin-bottom: 20px;
}

.servicios-extra-list-title {
  color: #1c4b2e;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.servicios-extra-list {
  list-style: none;
  padding-left: 0;
}

.servicios-extra-item {
  color: #444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.servicios-extra-item::before {
  content: "✔";
  color: #f2b705;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.servicios-extra-gancho {
  margin: 25px 0;
}

.servicios-extra-highlight {
  background-color: #f2b70520;
  color: #1c4b2e;
  font-weight: 600;
  padding: 10px 15px;
  border-left: 4px solid #f2b705;
  border-radius: 6px;
  margin-bottom: 10px;
}

.servicios-extra-card-footer {
  text-align: center;
  margin-top: 20px;
}

.servicios-extra-btn {
  display: inline-block;
  background-color: #1c4b2e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.servicios-extra-btn:hover {
  background-color: #f2b705;
  color: #1c4b2e;
}

/* =========================================
   FOOTER NUEVO POSICIONAMIENTO
   ========================================= */
.footer-cta--centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.footer-contacto-msg {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 25px;
}
.footer-subtitle-tagline {
  font-size: 1.1rem;
  color: #e0c341;
  margin-bottom: 6px;
}
.footer-location-tagline {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 28px;
}
.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-whatsapp-cta {
  display: inline-block;
  margin-top: 14px;
  background: #2ecc71;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  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-brand-tagline {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 30px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.95rem;
  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;
}
.navbar-link--cta {
  background: #2ecc71;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.3s;
}
.navbar-link--cta:hover {
  background: #27ae60;
}

/* =========================================
   SECCIÓN PROBLEMA DEL CLIENTE
   ========================================= */
.problema-section {
  padding: 72px 5%;
  background: #f0f8f5;
}
.problema-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.problema-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 28px;
}
.problema-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .problema-title { font-size: 1.6rem; }
  .problema-text { font-size: 1rem; }
}

/* =========================================
   SECCIÓN REGULARIZACIÓN DE TIERRAS (4 tipos)
   ========================================= */
.tierras-section {
  padding: 80px 5%;
  background: #fff;
}
.tierras-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.tierras-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 16px;
}
.tierras-intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}
.tierras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.tierras-card {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  border-top: 5px solid #2ecc71;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tierras-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.tierras-card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.tierras-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 12px;
}
.tierras-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .tierras-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .tierras-grid { grid-template-columns: 1fr; }
  .tierras-title { font-size: 1.8rem; }
}

/* =========================================
   SECCIÓN NUESTROS SERVICIOS (con precios)
   ========================================= */
.nservicios-section {
  padding: 80px 5%;
  background: #f0f8f5;
}
.nservicios-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}
.nservicios-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nservicios-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}
.lineas-comerciales {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d7e8db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lineas-comerciales-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1c4b2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lineas-comerciales-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.linea-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #eef7f0;
  color: #1c4b2e;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 25px;
  text-decoration: none;
  border: 1px solid #c2e2c8;
  transition: all 0.3s ease;
}
.linea-pill:hover {
  background: #1c4b2e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(28,75,46,0.15);
}
.nservicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.nservicios-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  border-top: 5px solid #2ecc71;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nservicios-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.nservicios-card-tag {
  align-self: flex-start;
  background: #e8f5e9;
  color: #1b5e20;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nservicios-card-tag--featured {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}
.nservicios-promo-banner {
  background: #eef9f1;
  border: 1px dashed #2ecc71;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: #1c4b2e;
  margin-bottom: 14px;
}
.nservicios-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 8px;
  line-height: 1.35;
}
.nservicios-card-price {
  font-size: 1.85rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.nservicios-currency {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
}
.nservicios-price-free {
  color: #27ae60;
  font-size: 1.7rem;
}
.nservicios-price-sub {
  font-size: 0.88rem;
  color: #666;
  font-weight: 500;
  width: 100%;
}
.nservicios-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}
.nservicios-card-details {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
  background: #fbfbfb;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.nservicios-card-details strong {
  color: #1c4b2e;
}
.nservicios-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 0.9rem;
  color: #444;
}
.nservicios-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.45;
}
.nservicios-list li::before {
  content: "✔";
  color: #2ecc71;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.nservicios-note {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.nservicios-note strong {
  color: #444;
}
.nservicios-wa-btn {
  display: block;
  margin-top: 16px;
  background: #2ecc71;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.3px;
}
.nservicios-wa-btn:hover {
  background: #27ae60;
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .nservicios-grid { grid-template-columns: 1fr; max-width: 540px; }
}

/* =========================================
   SECCIÓN POR QUÉ AGROAMBIENTAL
   ========================================= */
.porque-section {
  padding: 80px 5%;
  background: #fff;
}
.porque-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.porque-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 20px;
}
.porque-intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
}
.porque-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 620px;
  text-align: left;
}
.porque-list li {
  font-size: 1.05rem;
  color: #333;
  padding: 12px 14px 12px 46px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.porque-list li:last-child { border-bottom: none; }
.porque-list li::before {
  content: "✔";
  color: #2ecc71;
  font-weight: bold;
  position: absolute;
  left: 14px;
  top: 14px;
}
@media (max-width: 768px) {
  .porque-title { font-size: 1.7rem; }
}

/* =========================================
   SECCIÓN SOBRE LA ABOGADA
   ========================================= */
.abogada-section {
  padding: 80px 5%;
  background: #f0f8f5;
}
.abogada-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.abogada-image {
  flex: 0 0 280px;
}
.abogada-image img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.abogada-content {
  flex: 1;
}
.abogada-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1c4b2e;
  margin-bottom: 6px;
}
.abogada-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 18px;
}
.abogada-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .abogada-container { flex-direction: column; text-align: center; }
  .abogada-image { flex: unset; }
  .abogada-image img { width: 200px; height: 230px; }
}

/* =========================================
   SECCIÓN CTA FINAL DE CONTACTO
   ========================================= */
.cta-final-section {
  padding: 80px 5%;
  background: #1c4b2e;
  text-align: center;
  color: #fff;
}
.cta-final-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.cta-final-text {
  font-size: 1.1rem;
  color: #c8e6c9;
  margin-bottom: 10px;
}
.cta-final-btn {
  display: inline-block;
  margin-top: 28px;
  background: #2ecc71;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.cta-final-btn:hover {
  background: #f2b705;
  color: #1c4b2e;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-final-title { font-size: 1.6rem; }
}

