/**

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2E2E2E; /* Default color used for the majority of the text content across the entire website */
  --heading-color:  #6E1A28; /* Color for headings, subheadings and title throughout the website */
  --accent-color:  #8CC63F; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color:  #8CC63F; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color:  #8CC63F; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f6f1;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* =========================================================
   GLOBAL H2 STYLE (igual al H2 de How-it-works)
   Pegar al FINAL del CSS para sobreescribir Bootstrap/template
   ========================================================= */

/* 1) Base para cualquier H2 dentro de secciones */
section h2,
.section h2,
.section-title h2,
.container .section-title h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--heading-color);
}

/* 2) Si tu template usa títulos con “div > span” arriba (kicker),
   deja el H2 igual y solo aseguras consistencia del espacio */
.section-title h2 {
  padding: 0;
}

/* 3) Evita que Bootstrap mande con su .h2 (clase) */
.h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--heading-color);
}

/* 4) Ajuste responsive fino (opcional, pero recomendado) */
@media (max-width: 575px) {
  section h2,
  .section h2,
  .section-title h2 {
    margin-bottom: 10px;
  }
}


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.visually-hidden{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: auto;
  width: auto;
  max-height: 56px; /* valor base seguro */
  transition: max-height 0.3s ease;
  margin-right: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* =========================
   LOGO RESPONSIVE
   ========================= */

   
/* Móviles pequeños */
@media (max-width: 359px) {
  .header .logo img {
    max-height: 44px;
  }
}

/* Móviles estándar */
@media (min-width: 360px) and (max-width: 575px) {
  .header .logo img {
    max-height: 50px;
  }
}

/* Tablets */
@media (min-width: 576px) and (max-width: 991px) {
  .header .logo img {
    max-height: 54px;
  }
}

/* Desktop estándar */
@media (min-width: 992px) and (max-width: 1399px) {
  .header .logo img {
    max-height: 60px;
  }
}

/* Pantallas grandes / Full HD */
@media (min-width: 1400px) {
  .header .logo img {
    max-height: 64px;
  }
}

/* =========================
   HEADER CTA BUTTON
   ========================= */

.btn-header-cta {
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-header-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 12%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer (Marca izq + Certificaciones der)
--------------------------------------------------------------*/
.footer{
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 34px 0;
  position: relative;
}

/* Top layout: 2 columnas */
.footer .footer-top{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

/* Marca (izq) */
.footer-brand{
  text-align: left;
  max-width: 560px;
}

.footer-logo img{
  max-width: 190px;
  height: auto;
  display: block;
}

.footer-tagline{
  margin: 10px 0 0 0;
  line-height: 1.6;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 52ch;
}

/* Caja certificaciones (der) */
.footer-certbox{
  text-align: right;
  justify-self: end;
  max-width: 520px;
}

.footer-certbox__text{
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Logos certificaciones */
.footer-certs{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.footer-certs__logo{
  height: 57px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-certs__logo:hover{
  transform: translateY(-1px);
  opacity: 1;
}

/* Divider */
.footer .footer-divider{
  margin: 22px 0 16px 0;
  border: 0;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 88%);
}

/* Bottom layout (igual que lo tenías) */
.footer .footer-bottom{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

/* Copyright */
.footer .copyright p{
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

/* Social */
.footer .social-links{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer .social-links a{
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 55%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  transition: .2s ease;
  background: transparent;
}

.footer .social-links a:hover{
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

/* Credits */
.footer .credits{
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
}

.footer .credits a{
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: .2s ease;
}

.footer .credits a:hover{
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 35%);
}

/* Responsive */
@media (max-width: 991px){
  .footer .footer-top{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand{
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo img{
    margin: 0 auto;
    max-width: 170px;
  }

  .footer-tagline{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-certbox{
    text-align: center;
    justify-self: center;
    max-width: 560px;
  }

  .footer-certs{
    justify-content: center;
  }

  .footer .footer-bottom{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer .credits{
    text-align: center;
  }
}

@media (max-width: 575px){
  .footer{
    padding: 28px 0;
  }

  .footer .social-links a{
    width: 38px;
    height: 38px;
  }

  .footer-certs__logo{
    height: 36px;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 90px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/* =========================
   HERO con imagen de fondo
   ========================= */
h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 720;
  margin: 0 0 16px 0;
  color: var(--heading-color)
}   

.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  padding: 120px 0 90px; /* más espacio abajo para que no choque con las cards */
  background-image: url("../img/campo-agricola-huerto-software-agricola.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* CLAVE: NO ocultar overflow o cortará la superposición visual */
  overflow: visible;
}

/* Módulo Control de Cosecha */
.hero.hero-cosecha{
  background-image: url("../img/cosecha-agricola-control-productividad-fruta.webp");
}

/* Módulo CD Campo */
.hero.hero-cd-campo{
  background-image: url("../img/huerto-agricola-gestion-labores-cd-campo.webp");
}

/* Módulo CD Campo */
.hero.hero-erp-agricola{
  background-image: url("../img/huerto-agricola-gestion-erp-agricola.webp");
}

/* Módulo CD Campo */
.hero.hero-alerta-heladas{
  background-image: url("../img/heladas-agricolas-proteccion-huerto.webp");
}


.hero .container {
  position: relative;
  z-index: 2;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78); /* ajusta según tu fondo */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* Visual derecha */
.hero-visual {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
}

.hero-visual-heladas {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 375px) {
  .hero-visual-heladas {
    max-width: 300px;
  }
}

@media (min-width: 540px) {
  .hero-visual-heladas {
    max-width: 330px;
  }
}

@media (min-width: 768px) {
  .hero-visual-heladas {
    max-width: 454px;
  }
}

@media (min-width: 820px) {
  .hero-visual-heladas {
    max-width: 630px;
  }
}

@media (min-width: 912px) {
  .hero-visual-heladas {
    max-width: 555px;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .hero-visual-heladas {
    max-width: 380px;
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .hero-visual-heladas {
    max-width: 454px;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .hero-visual-heladas {
    max-width: 420px;
  }
}



/* =========================
   CTA PRINCIPAL (Global)
   ========================= */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  border-radius: 999px;
  gap: 10px;

  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  background: #8CC63F;
  color: #ffffff;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  background-color: #4C940C;
  color: #ffffff;
}


/* =========================
   CTAs
   ========================= */
.hero-ctas .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  /* Colores */
  background: #8CC63F;
  color: #fff;

  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-ctas .btn-get-started:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
  background: #4C940C;
  color: #fff;
}

.hero-ctas .btn-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;

  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.08);
  color: #4C940C;

  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-ctas .btn-watch-video i {
  font-size: 26px;
  line-height: 1;
}

.hero-ctas .btn-watch-video:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.85);
  border-color: rgba(140,198,63,0.35);
}

/* =========================
   ICON BOXES flotando sobre hero
   ========================= */
.hero-icon-boxes {
  padding: 0 0 80px;
  background: #ffffff;
  position: relative;
  z-index: 5; /* por encima del hero */
  margin-top: -70px; /* “sube” las cards sobre el hero */
}

.hero-icon-boxes .icon-box {
  background: #fff;
  padding: 34px 22px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  height: 100%;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero-icon-boxes .icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(140, 198, 63, 0.30);
}

.hero-icon-boxes .icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px auto;
  background: rgba(140, 198, 63, 0.14);
  color: #4C940C;
}

.hero-icon-boxes .icon i {
  font-size: 40px;
}

.hero-icon-boxes .title {
  margin: 0 0 10px 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
}

.hero-icon-boxes .title a {
  color: rgba(43, 43, 43, 0.92);
  text-decoration: none;
}

.hero-icon-boxes p {
  margin: 0;
  color: rgba(43, 43, 43, 0.70);
  line-height: 1.55;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero { padding: 110px 0 90px; }
  .hero-icon-boxes { margin-top: -45px; }
}

@media (max-width: 575px) {
  .hero { padding: 95px 0 80px; }
  .hero-icon-boxes { margin-top: -30px; }
}


/* =========================
   CERTIFICACIONES (Trust bar simple)
   ========================= */
.certifications{
  padding: 22px 0;
}

.certifications__inner{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.certifications__logo{
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity .2s ease, transform .2s ease;
}

.certifications__logo:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 575px){
  .certifications{
    padding: 16px 0;
  }

  .certifications__logo{
    height: 75px;
  }

  .certifications__inner{
    gap: 120px;
  }
}


/* =========================
   HOW IT WORKS (Como funciona)
   ========================= */
.how-it-works {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  max-width: 860px;
  margin: 0 auto 38px auto;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(140, 198, 63, 0.14);
  color: #4c940c;
  font-weight: 700;
  margin-bottom: 14px;
}

.how-it-works h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--heading-color);
}

.section-lead {
  margin: 0 auto;
  color: rgba(43, 43, 43, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

/* Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 26px;
}

/* Cards */
.step-card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.09);
  border-color: rgba(140, 198, 63, 0.25);
}

.step-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.step-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(140, 198, 63, 0.14);
  color: #4c940c;
  flex: 0 0 auto;
}

.step-icon i {
  font-size: 40px;
  line-height: 1;
}

.step-meta {
  min-width: 0;
}

.step-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(43, 43, 43, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #2b2b2b;
}

.step-text {
  color: rgba(43, 43, 43, 0.74);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 12px 0 14px 0;
}

.step-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.step-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(43, 43, 43, 0.78);
  font-size: 13.5px;
  line-height: 1.45;
}

.step-bullets i {
  color: #4c940c;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 2px;
}

/* CTA */
.how-cta {
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid rgba(140, 198, 63, 0.22);
  background: rgba(140, 198, 63, 0.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: center;
}

.how-cta__content h3 {
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 20px;
  color: #2b2b2b;
}

.how-cta__content p {
  margin: 0 0 8px 0;
  color: rgba(43, 43, 43, 0.74);
  line-height: 1.6;
}

.how-cta__content small {
  color: rgba(43, 43, 43, 0.62);
}

.how-cta__actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.how-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #8cc63f;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  white-space: nowrap;
}

.how-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  background: #4C940C;
}

.how-cta__btn i {
  font-size: 18px;
  line-height: 1;
}

.how-cta__hint {
  color: rgba(43, 43, 43, 0.62);
  font-size: 12.5px;
  text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
  .step-card { grid-column: span 6; }
  .how-cta { grid-template-columns: 1fr; }
  .how-cta__actions { justify-items: start; }
  .how-cta__hint { text-align: left; }
}

@media (max-width: 575px) {
  .how-it-works { padding: 60px 0; }
  .step-card { grid-column: span 12; }
  .step-card { padding: 20px; }
  .how-cta { padding: 18px; }
  .how-cta__btn { width: 100%; justify-content: center; }
}

/* =========================
   PROBLEMAS vs SOLUCIÓN (pain-solution)
   Sección alta conversión + escaneable
   ========================= */

.pain-solution {
  padding: 80px 0;
  background: #ffffff;
}

/* Header reutiliza tus clases:
   .section-header, .section-kicker, .section-lead
   (no las duplico aquí para evitar conflictos)
*/

/* Cards contenedoras (Dolor / Solución) */
.ps-card {
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  padding: 26px 24px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.ps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.08);
  border-color: rgba(140, 198, 63, 0.20);
}

/* Diferenciación suave (sin “rojo” agresivo) */
.ps-card--pain {
  background: linear-gradient(
    180deg,
    rgba(255, 70, 70, 0.03),
    rgba(255, 255, 255, 1) 45%
  );
}

.ps-card--solution {
  background: linear-gradient(
    180deg,
    rgba(140, 198, 63, 0.06),
    rgba(255, 255, 255, 1) 45%
  );
}

/* Encabezado de cada card */
.ps-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.ps-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(140, 198, 63, 0.10);
  color: #4c940c;
}

.ps-card--pain .ps-card__icon {
  background: rgba(255, 70, 70, 0.08);
  color: rgba(200, 45, 45, 0.92);
}

.ps-card__icon i {
  font-size: 40px;
  line-height: 1;
}

.ps-card__title {
  margin: 0 0 4px 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  color: rgba(43, 43, 43, 0.94);
}

.ps-card__subtitle {
  color: rgba(43, 43, 43, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

/* Listas */
.ps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ps-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.75);
}

.ps-list__mark {
  font-size: 20px;
  margin-top: 3px;
  line-height: 1;
}

.ps-card--pain .ps-list__mark {
  color: rgba(200, 45, 45, 0.92);
}

.ps-card--solution .ps-list__mark {
  color: #4c940c;
}

.ps-list strong {
  display: block;
  font-weight: 900;
  color: rgba(43, 43, 43, 0.92);
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 2px;
}

.ps-list span {
  display: block;
  color: rgba(43, 43, 43, 0.70);
  font-size: 13.5px;
  line-height: 1.45;
}

/* CTA inferior (suave, pero visible) */
.ps-cta {
  margin-top: 26px;
  border-radius: 20px;
  border: 1px solid rgba(140, 198, 63, 0.20);
  background: linear-gradient(
    90deg,
    rgba(140, 198, 63, 0.10),
    rgba(140, 198, 63, 0.04)
  );
  padding: 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  align-items: center;
}

.ps-cta__content h3 {
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 20px;
  color: rgba(43, 43, 43, 0.95);
}

.ps-cta__content p {
  margin: 0;
  color: rgba(43, 43, 43, 0.74);
  line-height: 1.6;
}

/* Botón CTA: usa tu botón global */
.ps-cta__btn {
  /* aplica tu estilo unificado */
  /* Recomendado: agregar class="btn-cta-primary ps-cta__btn" en HTML */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.ps-cta__btn i {
  font-size: 18px;
  line-height: 1;
}

.ps-cta__actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.ps-cta__hint {
  color: rgba(43, 43, 43, 0.62);
  font-size: 12.5px;
  text-align: right;
}

/* Accesibilidad */
.ps-card:focus-within {
  outline: 3px solid rgba(140, 198, 63, 0.35);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 991px) {
  .ps-cta {
    grid-template-columns: 1fr;
  }

  .ps-cta__actions {
    justify-items: start;
  }

  .ps-cta__btn {
    justify-self: start;
  }

  .ps-cta__hint {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .pain-solution {
    padding: 60px 0;
  }

  .ps-card {
    padding: 22px 18px;
  }

  .ps-list li {
    padding: 10px 10px;
  }

  .ps-cta {
    padding: 20px;
  }

  /* Si usas btn-cta-primary, hazlo full width en móvil */
  .ps-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   CONTROL DE COSECHA: FLUJO (FIX LINEA + CTA BLANCO)
   ========================= */

.harvest-flow{
  background: #4C940C;
  color:#fff;
  padding:72px 0;
  position:relative;
  overflow:hidden;
}

.harvest-flow::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(255,255,255,.12), transparent 62%),
    radial-gradient(700px 320px at 15% 45%, rgba(0,0,0,.14), transparent 60%),
    radial-gradient(700px 320px at 85% 60%, rgba(0,0,0,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18));
  pointer-events:none;
}

.harvest-flow .container{ position:relative; z-index:1; }

.harvest-flow__header{
  max-width: 980px;
  margin: 0 auto 28px auto;
}
.harvest-flow__title{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.harvest-flow__lead{
  opacity: 0.92;
  margin: 0 auto;
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =========================
   STEPS (LINEA PERFECTA)
   ========================= */
.harvest-flow__steps{
  --icon-size: 74px;
  --line-y: calc(var(--icon-size) / 2);

  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 34px;
  position: relative;
  padding-top: 12px;
}

/*
  Línea: anclada a los centros de las columnas externas.
  En una grilla de 3 columnas iguales:
  - centro columna 1 ≈ 16.666%
  - centro columna 3 ≈ 83.333%
*/
.harvest-flow__steps::before{
  content:"";
  position:absolute;

  /* anclaje matemático al centro de col 1 y col 3 */
  left: 16.666%;
  right: 16.666%;

  top: var(--line-y);
  height: 2px;
  background: rgba(255,255,255,.34);
  border-radius: 999px;
  z-index: 1;
}

/* STEP CARD */
.harvest-step{
  text-align:center;
  padding: 0 14px;
  position:relative;
}

.harvest-step__icon{
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  display:grid;
  place-items:center;
  margin: 0 auto 14px auto;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  position:relative;
  z-index: 2;
  transition: transform .25s ease, box-shadow .25s ease;
}

.harvest-step__icon::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:999px;
  border: 2px solid rgba(255,255,255,.20);
  opacity: .9;
}

.harvest-step__icon i{
  font-size: 1.85rem;
  color: #2B5E07;
}

.harvest-step:hover .harvest-step__icon,
.harvest-step:focus-within .harvest-step__icon{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

/* Animación sutil */
@media (prefers-reduced-motion: no-preference){
  .harvest-step__icon{
    animation: harvestPulse 3.6s ease-in-out infinite;
  }
  .harvest-step:nth-child(2) .harvest-step__icon{ animation-delay: .35s; }
  .harvest-step:nth-child(3) .harvest-step__icon{ animation-delay: .7s; }
}
@keyframes harvestPulse{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.harvest-step__title{
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 10px 0;
}

.harvest-step__text{
  margin: 0 auto;
  max-width: 360px;
  opacity: 0.93;
  font-size: 1rem;
  line-height: 1.65;
}

/* =========================
   CTA (BLANCO + CONTRASTE REAL)
   ========================= */
.harvest-flow__cta{
  margin-top: 32px;

  background: #ffffff;                 /* ✅ fondo blanco real */
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px 18px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
  text-align:center;

  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.harvest-flow__cta-text{
  color: #1f2937;                      /* texto oscuro */
  font-weight: 900;
  font-size: 1.05rem;
  margin: 0;
}

/* Botón CTA: burdeo alto contraste */
.harvest-flow__cta-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;

  background: #6E1A28;                 /* ✅ burdeo marca */
  color: #ffffff;

  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.harvest-flow__cta-btn i{ font-size: 1.1rem; }

/* Hover: NO verde, burdeo más oscuro + elevación */
.harvest-flow__cta-btn:hover{
  background: #57141F;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

/* =========================
   FIX MOBILE: línea entre íconos (por tramo)
   ========================= */
@media (max-width: 991px){

  /* 1) Controlamos el gap con variable para usarlo en la línea */
  .harvest-flow__steps{
    --icon-size: 74px;      /* ya lo usas, lo dejamos aquí por seguridad */
    --step-gap: 22px;       /* mismo gap visual */
    gap: var(--step-gap);

    grid-template-columns: 1fr;
    position: relative;
  }

  /* 2) Apagamos la línea “única” del contenedor (la que falla) */
  .harvest-flow__steps::before{
    content: none !important;
  }

  /* 3) Cada step dibuja su propio tramo hacia el siguiente */
  .harvest-step{
    position: relative;
    padding-bottom: 0;
  }

  /* Tramo de línea: desde abajo del ícono hasta el próximo step */
  .harvest-step::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    /* empieza justo debajo del ícono */
    top: calc(var(--icon-size) + 12px);

    /* altura: cubre el resto del step + el gap hasta el siguiente */
    height: calc(100% - var(--icon-size) + var(--step-gap));

    width: 2px;
    background: rgba(255,255,255,.28);
    border-radius: 999px;
    z-index: 0; /* debajo de los íconos */
    pointer-events: none;
  }

  /* 4) El último step NO debe tener línea */
  .harvest-step:last-child::after{
    content: none;
  }

  /* 5) Aseguramos que el ícono quede por encima de la línea */
  .harvest-step__icon{
    position: relative;
    z-index: 2;
  }
}

/* =========================
   CD CAMPO: CAPTURAS (VISTA MÓVIL)
   ========================= */

.cd-screens{
  position: relative;
}

.cd-screens .section-kicker{
  display: inline-block;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  opacity: .85;
}

/* Bullets */
.cd-screens__bullets i{
  font-size: 1.05rem;
  line-height: 1.2;
  margin-top: .15rem;
}

/* Figure / mockup container */
.cd-screens__figure{
  width: 100%;
}

.cd-screens__mockup{
  position: relative;
  width: min(420px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.06);
}

/* Simula borde de teléfono (sutil, sin imagen extra) */
.cd-screens__mockup::before{
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  pointer-events: none;
}

/* Imagen */
.cd-screens__img{
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0); /* mejora nitidez en algunos navegadores */
}

/* Caption */
.cd-screens__caption{
  opacity: .8;
}

/* Micro CTA */
.cd-screens__cta{
  border-top: 1px dashed rgba(0,0,0,.15);
  padding-top: 1rem;
}

/* Ajustes responsive */
@media (max-width: 991.98px){
  .cd-screens__mockup{
    width: min(380px, 100%);
  }
}

@media (max-width: 575.98px){
  .cd-screens__mockup{
    border-radius: 22px;
  }
  .cd-screens__mockup::before{
    inset: 8px;
    border-radius: 18px;
  }
}



/* =========================
   CONTROL DE COSECHA: BENEFICIOS (look distinto)
   Fondo claro + layout 2 columnas + cards limpias
   ========================= */

.harvest-benefits{
  padding: 76px 0;
  background: #F7FAF7;
  color: #0f172a;
}

.harvest-benefits__wrap{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Intro */
.harvest-benefits__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #2B5E07;
  background: rgba(140,198,63,.16);
  border: 1px solid rgba(140,198,63,.28);
  padding: 8px 12px;
  border-radius: 999px;
}

.harvest-benefits__title{
  margin: 14px 0 10px 0;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  letter-spacing: -0.02em;
  font-weight: 900;
}

.harvest-benefits__accent{
  color: #6E1A28;
}

.harvest-benefits__lead{
  margin: 0;
  color: #334155;
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 54ch;
}

/* Highlight */
.harvest-benefits__highlight{
  margin-top: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 44px rgba(2,6,23,.06);
  padding: 16px;
  display: flex;
  gap: 12px;
}

.harvest-benefits__highlight-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(110,26,40,.10);
  color: #6E1A28;
  flex: 0 0 auto;
}

.harvest-benefits__highlight-icon i{ font-size: 1.25rem; }

.harvest-benefits__highlight-title{
  margin: 0 0 4px 0;
  font-weight: 900;
  font-size: 1.05rem;
}

.harvest-benefits__highlight-text{
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

/* Actions */
.harvest-benefits__actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Importante: NO definimos colores acá.
   Los colores y hover los controla .btn-cta-primary (botón oficial) */
.harvest-benefits__btn{
  padding: 12px 18px; /* ajuste local (si lo necesitas) */
}

/* Hint */
.harvest-benefits__hint{
  color: #64748b;
  font-weight: 700;
  font-size: .92rem;
}

/* Grid */
.harvest-benefits__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(2,6,23,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.benefit-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(2,6,23,.10);
  border-color: rgba(140,198,63,.35);
}

.benefit-card__top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.benefit-card__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(76,148,12,.10);
  color: #2B5E07;
}

.benefit-card__icon i{ font-size: 1.2rem; }

.benefit-card__title{
  margin: 0;
  font-size: 1.03rem;
  font-weight: 900;
  color: #0f172a;
}

.benefit-card__text{
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: .98rem;
}

/* Responsive */
@media (max-width: 991px){
  .harvest-benefits{
    padding: 64px 0;
  }

  .harvest-benefits__wrap{
    grid-template-columns: 1fr;
  }

  .harvest-benefits__lead{
    max-width: 70ch;
  }

  .harvest-benefits__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   ERP MODULES (10 módulos + GlobalG.A.P)
   ========================= */

.erp-modules {
  position: relative;
}

.erp-modules .section-header {
  margin-bottom: 1.25rem;
}

/* Grid cards (solo dentro de ERP) */
.erp-modules .module-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.erp-modules .module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
  border-color: rgba(140, 198, 63, 0.35);
}

/* Icon (IMPORTANTE: SOLO el ícono principal del card) */
.erp-modules .module-card > i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(140, 198, 63, 0.12);
  color: #8CC63F;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Title */
.erp-modules .module-card h3 {
  font-size: 1.02rem;
  line-height: 1.2;
  margin: 0 0 6px;
  color: #0f172a;
  font-weight: 700;
}

/* Text */
.erp-modules .module-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Certification block */
.erp-modules .erp-certification {
  margin-top: 2.25rem;
}

.erp-modules .erp-certification__box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(140, 198, 63, 0.10), rgba(140, 198, 63, 0.04));
  border: 1px solid rgba(140, 198, 63, 0.25);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.erp-modules .erp-certification__box > i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(140, 198, 63, 0.16);
  color: #8CC63F;
  font-size: 22px;
  margin-top: 2px;
}

.erp-modules .erp-certification__box h3 {
  margin: 0 0 4px;
  font-size: 1.12rem;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 800;
}

.erp-modules .erp-certification__box p {
  margin: 0;
  color: rgba(15, 23, 42, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.erp-modules .erp-certification__box strong {
  color: #0f172a;
  font-weight: 800;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .erp-modules .module-card {
    padding: 16px 16px 14px;
    border-radius: 14px;
  }

  .erp-modules .erp-certification__box {
    border-radius: 16px;
    padding: 16px 16px;
  }
}

@media (max-width: 575.98px) {
  .erp-modules .module-card > i,
  .erp-modules .erp-certification__box > i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 20px;
    border-radius: 12px;
  }

  .erp-modules .module-card h3 {
    font-size: 1rem;
  }

  .erp-modules .module-card p {
    font-size: 0.93rem;
  }

  .erp-modules .erp-certification__box {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   MODULOS / SOFTWARES (4)
   ========================= */

.modules{
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
.modules .section-header{
  max-width: 920px;
  margin: 0 auto 38px auto;
}

.modules .section-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(140, 198, 63, 0.14);
  color: #4c940c;
  font-weight: 800;
  margin-bottom: 14px;
}

.modules .section-lead{
  margin: 0 auto;
  color: rgba(43, 43, 43, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

/* Grid */
.modules .modules-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 26px;
  align-items: stretch;
}

/* Card base */
.modules .module-card{
  grid-column: span 6;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.modules .module-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.09);
  border-color: rgba(140, 198, 63, 0.25);
}

/* Variante destacada */
.modules .module-card--primary{
  border-color: rgba(140, 198, 63, 0.25);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.modules .module-card--primary::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(140, 198, 63, 0.12),
    rgba(140, 198, 63, 0.00) 55%
  );
}

/* Top */
.modules .module-top{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.modules .module-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(140, 198, 63, 0.14);
  color: #4c940c;
  flex: 0 0 52px;
}

.modules .module-icon i{
  font-size: 30px;
  line-height: 1;
}

.modules .module-meta{ min-width: 0; }

.modules .module-title{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 4px 0;
  color: #2b2b2b;
}

.modules .module-subtitle{
  margin: 0;
  color: rgba(43, 43, 43, 0.74);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Bullets */
.modules .module-bullets{
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.modules .module-bullets li{
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(43, 43, 43, 0.80);
  font-size: 13.5px;
  line-height: 1.4;
}

.modules .module-bullets i{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(140, 198, 63, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c940c;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}

/* Acciones (layout fijo y consistente) */
.modules .module-actions{
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

/* ======================================================
   BOTÓN PRIMARIO (AISLADO) - con reset anti CSS global
   ====================================================== */
.modules a.modules-btn-primary{
  /* Reset típico de conflictos */
  all: unset;
  box-sizing: border-box;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 26px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 14.5px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;

  background: #8CC63F;
  color: #ffffff;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.modules a.modules-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  background-color: #4C940C;
  color: #ffffff;
}

.modules a.modules-btn-primary i{
  font-size: 16px;
  line-height: 1;
}

/* Link secundario (Pedir demo) */
.modules .module-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12.5px;
  color: #4c940c;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background-color .2s ease, transform .2s ease;
  white-space: nowrap;
}

.modules .module-link:hover{
  background: rgba(140, 198, 63, 0.14);
  transform: translateY(-1px);
}

.modules .module-link i{
  font-size: 14px;
  line-height: 1;
}

/* CTA inferior */
.modules .modules-cta{
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid rgba(140, 198, 63, 0.22);
  background: rgba(140, 198, 63, 0.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: center;
}

.modules .modules-cta__content h3{
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 20px;
  color: #2b2b2b;
}

.modules .modules-cta__content p{
  margin: 0 0 8px 0;
  color: rgba(43, 43, 43, 0.74);
  line-height: 1.6;
}

.modules .modules-cta__content small{
  color: rgba(43, 43, 43, 0.62);
}

.modules .modules-cta__actions{
  display: grid;
  justify-items: end;
}

/* Responsive */
@media (max-width: 991px){
  .modules .module-card{ grid-column: span 12; }
  .modules .modules-cta{ grid-template-columns: 1fr; }
  .modules .modules-cta__actions{ justify-items: start; }
}

@media (max-width: 575px){
  .modules{ padding: 60px 0; }

  .modules .module-card{ padding: 20px; }

  .modules .module-actions{
    flex-wrap: wrap;
    align-items: stretch;
  }

  .modules a.modules-btn-primary{
    width: 100%;
  }

  .modules .module-link{
    width: 100%;
    justify-content: center;
  }

  .modules .modules-cta{ padding: 18px; }

  .modules .modules-cta__actions a.modules-btn-primary{
    width: 100%;
    justify-content: center;
  }
}




/* =========================
   USO REAL EN TERRENO (Videos)
   ========================= */
.real-use {
  padding: 80px 0;
  background: #ffffff;
}

.real-use .section-header {
  max-width: 860px;
  margin: 0 auto 34px auto;
}

/* Grid */
.real-use-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 26px;
}

/* Card */
.real-use-card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}

.real-use-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.09);
  border-color: rgba(140, 198, 63, 0.25);
}

/* Video thumb */
.real-use-video {
  display: block;
  position: relative;
  text-decoration: none;
  background: #f4f6f4;
}

.real-use-video img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay suave para legibilidad */
.real-use-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.22)
  );
  opacity: 0;
  transition: opacity .2s ease;
}

.real-use-card:hover .real-use-video::after {
  opacity: 1;
}

/* Play button */
.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.play-button i {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(140, 198, 63, 0.92);
  color: #ffffff;
  font-size: 34px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  transform: translateY(0);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.real-use-card:hover .play-button i {
  transform: translateY(-2px);
  background: rgba(76, 148, 12, 0.95);
  box-shadow: 0 16px 32px rgba(0,0,0,0.22);
}

/* Info */
.real-use-info {
  padding: 18px 18px 20px;
}

.real-use-info h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: #2b2b2b;
}

.real-use-info p {
  margin: 0;
  color: rgba(43, 43, 43, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

/* CTA bloque */
.real-use-cta {
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid rgba(140, 198, 63, 0.22);
  background: rgba(140, 198, 63, 0.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: center;
}

.real-use-cta__text h3 {
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 20px;
  color: #2b2b2b;
}

.real-use-cta__text p {
  margin: 0 0 8px 0;
  color: rgba(43, 43, 43, 0.74);
  line-height: 1.6;
}

.real-use-cta__text small {
  color: rgba(43, 43, 43, 0.62);
}

.real-use-cta__actions {
  display: grid;
  justify-items: end;
}

@media (max-width: 991px) {
  .real-use-card { grid-column: span 6; }
  .real-use-cta { grid-template-columns: 1fr; }
  .real-use-cta__actions { justify-items: start; }
}

@media (max-width: 575px) {
  .real-use { padding: 60px 0; }
  .real-use-card { grid-column: span 12; }
  .real-use-cta { padding: 18px; }
  .real-use-cta__actions .btn-cta-primary {
    width: 100%;
    justify-content: center;
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  background-color: var(--surface-color);
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* =========================
   FINAL CTA
   ========================= */

.cta-final {
  padding: 80px 0;
}

.cta-final__box {
  background: rgba(140, 198, 63, 0.08);
  border: 1px solid rgba(140, 198, 63, 0.25);
  border-radius: 20px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 24px;
}

.cta-final__content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  margin: 0 0 10px 0;
  color: #2b2b2b;
}

.cta-final__content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.78);
  margin: 0 0 8px 0;
}

.cta-final__content small {
  color: rgba(43, 43, 43, 0.6);
}

/* Actions */
.cta-final__actions {
  display: flex;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-final__box {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-final__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .cta-final {
    padding: 60px 0;
  }

  .cta-final__box {
    padding: 28px 22px;
  }

  .cta-final__actions a {
    width: 100%;
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*--------------------------------------------------------------
# Whatsapp Butoon
--------------------------------------------------------------*/

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  }
}

/* Botón de WhatsApp flotante */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 150px;
  right: 10px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: breathe 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.12);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 45px;
  height: 45px;
}

/*--------------------------------------------------------------
# End Whatsapp Butoon
--------------------------------------------------------------*/


/* =========================
   ABOUT – COSECHANDO DATOS
   ========================= */

   

.about-cd .section-header .kicker{
  display:inline-block;
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  font-weight:600;
  margin-bottom:.65rem;
}

.about-cd .section-header .lead{
  max-width: 820px;
  margin: 0.75rem auto 0;
  color: rgba(15,23,42,.78);
}

.about-cd__panel{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.about-cd__badge{
  margin-bottom: 12px;
}

.about-cd__title{
  font-size: 1.35rem;
  margin: 0 0 .65rem;
  letter-spacing: -0.2px;
}

.about-cd__text{
  color: rgba(15,23,42,.80);
  line-height: 1.65;
  margin-bottom: .75rem;
}

/* Trust line */
.about-cd__trust{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.08);
  display: grid;
  gap: 12px;
}

.trust-item{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.trust-item i{
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(2px);
  color: rgba(15,23,42,.85);
}

.trust-item strong{
  display:block;
  font-weight: 700;
  color: rgba(15,23,42,.95);
  margin-bottom: 2px;
}

.trust-item span{
  display:block;
  color: rgba(15,23,42,.72);
  font-size: .95rem;
}

/* Cards derecha */
.about-cd__cards{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.about-cd__card{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.9);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.about-cd__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15,23,42,.08);
  border-color: rgba(140,198,63,.35);
}

.about-cd__card .icn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(140,198,63,.10);
}

.about-cd__card .icn i{
  font-size: 1.25rem;
  color: rgba(15,23,42,.90);
}

.about-cd__card h4{
  font-size: 1.05rem;
  margin: 0 0 4px;
  letter-spacing: -.15px;
}

.about-cd__card p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.55;
}

/* Impact box */
.about-cd__impact{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, rgba(140,198,63,.12), rgba(255,255,255,.85));
}

.about-cd__impact h4{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.about-cd__impact p{
  color: rgba(15,23,42,.78);
  line-height: 1.6;
}

/* FAQ wrapper */
.about-cd__faq{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.about-cd__faqnote small{
  display:block;
  margin-top: 14px;
  color: rgba(15,23,42,.70);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .about-cd__panel{ padding: 18px; }
  .about-cd__faq{ padding: 18px; }
}

.accordion-button:not(.collapsed){
  color: #2b2b2b;
  background-color: rgba(140,198,63,.10);
}

/* =========================
   END ABOUT – COSECHANDO DATOS
   ========================= */