@charset "UTF-8";
html,
body {
  font-family: "Roboto", arial, sans-serif !important;
  color: #ffffff;
  background-color: #2B2B2B;
  text-align: center;
  font-size: 16px;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  html,
  body {
    text-align: left;
  }
}
@media (max-width: 576px) {
  html,
  body {
    font-size: 14px;
  }
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none !important;
}
a:hover {
  color: #5E17EB;
}

h1,
h2,
h3,
h4,
h5,
.footn {
  font-weight: 700;
}

h1 {
  margin: 0 auto 10px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
  }
}

h3 {
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
}
@media (max-width: 1530px) {
  h3 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 28px;
  }
}

/* Ocultar badge reCAPTCHA v3 */
.grecaptcha-badge {
  visibility: hidden;
}

/* NAV PRINCIPAL (fijo tipo sticky arriba) */
nav.arados {
  position: sticky; /* ← antes era fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* por encima del sub-nav */
  padding: 0 !important;
  background: #000000 !important; /* negro */
  color: #ffffff;
  border-bottom: 1px solid rgb(12.75, 12.75, 12.75);
  /* Estilo del dropdown */
}
nav.arados .nav-link {
  font-size: 16px;
  font-weight: 600;
  padding: 0.75rem 1rem;
}
nav.arados .dropdown-menu {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  margin-top: 0rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  z-index: 2000;
}
nav.arados .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
nav.arados .dropdown-item:hover {
  background: #222;
  color: #5E17EB;
  transform: translateX(4px);
}
nav.arados .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0.25rem 0;
}

/* Detalles del nav */
.logotipo {
  height: 80px;
}

.navbar-toggler {
  border-color: #d0d0d0 !important;
}
.navbar-toggler .navbar-toggler-icon {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") center center no-repeat;
}

/* Links del nav */
.cosechadora a {
  color: #ffffff;
  /* o tu violeta si ya lo definiste */
}
.cosechadora a:hover {
  color: #5E17EB;
}

/* Variante mobile: logo y botón hamburguesa centrados */
@media (max-width: 768px) {
  nav.arados {
    /* Si el menú se despliega en mobile, que aparezca bien debajo */
  }
  nav.arados .container {
    display: flex;
    flex-direction: column; /* uno debajo del otro */
    align-items: center; /* centrados horizontalmente */
    justify-content: center;
    padding: 0.5rem 0;
  }
  nav.arados .navbar-brand {
    margin: 0 auto 0.3rem auto; /* logo centrado con espacio abajo */
    display: block;
  }
  nav.arados .navbar-toggler {
    margin: 0 auto; /* centrado debajo del logo */
  }
  nav.arados .navbar-collapse {
    background: #000000; /* fondo negro */
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}
.whatsapp-widget-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.whatsapp-widget-container.visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  animation: bounce-float 0.5s ease-in-out infinite;
}
.whatsapp-button i {
  font-size: 2rem;
}
.whatsapp-button:hover {
  animation: none;
  transform: scale(1.1);
  background-color: #128c7e;
}
.whatsapp-button:hover + .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  background-color: #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.5rem;
  background-color: #2c3e50;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-modal-container {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.whatsapp-modal-container.open {
  opacity: 1;
  visibility: visible;
}

.whatsapp-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.whatsapp-chat-card {
  position: relative;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 380px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.whatsapp-modal-container.open .whatsapp-chat-card {
  transform: translateX(0);
}

.chat-header {
  background-color: #e74c3c;
  color: white;
  padding: 1rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header .header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-header .header-icon-container {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-header .header-icon-container i {
  font-size: 1.25rem;
}
.chat-header .header-title {
  font-weight: 700;
}
.chat-header .header-status {
  font-size: 0.875rem;
  opacity: 0.8;
}
.chat-header .close-modal-button {
  background: none;
  border: none;
  color: white;
  padding: 0.25rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.chat-header .close-modal-button:hover {
  opacity: 1;
}
.chat-header .close-modal-button i {
  font-size: 1.25rem;
}

.chat-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #333;
}
.chat-body .welcome-message {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.chat-body .open-whatsapp-button {
  width: 100%;
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.chat-body .open-whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.03);
}
.chat-body .response-time {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes bounce-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
html,
body {
  font-family: "Roboto", arial, sans-serif !important;
  color: #ffffff;
  background-color: #2B2B2B;
  text-align: center;
  font-size: 16px;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  html,
  body {
    text-align: left;
  }
}
@media (max-width: 576px) {
  html,
  body {
    font-size: 14px;
  }
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none !important;
}
a:hover {
  color: #5E17EB;
}

h1,
h2,
h3,
h4,
h5,
.footn {
  font-weight: 700;
}

h1 {
  margin: 0 auto 10px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
  }
}

h3 {
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
}
@media (max-width: 1530px) {
  h3 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 28px;
  }
}

/* Ocultar badge reCAPTCHA v3 */
.grecaptcha-badge {
  visibility: hidden;
}

/* === DRONE TOPBAR (BARRA VERDE LANDING DRONE) === */
/* Este bloque debe ir al FINAL del stylesheet para tener prioridad visual. */
.drone-topbar {
  width: 100%;
  background-color: #304d20;
  color: #ffffff;
  position: relative;
  z-index: 1020;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  /* En mobile se ve igual de fuerte que el header */
  /* En mobile: ocultar navegación interna si se desea */
}
@media (min-width: 768px) {
  .drone-topbar {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .drone-topbar .drone-topbar__nav {
    display: none;
  }
}

/* Contenedor interno (equivale a tu `.dbar`) */
.drone-topbar__inner {
  max-width: 1320px; /* ⬅️ igual al container del header (podés ajustar a 1200/1280/1440 según tu diseño) */
  margin: 0 auto;
  padding-left: 5rem; /* ⬅️ más aire lateral */
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 0.75rem; /* espacio vertical mobile */
}
@media (min-width: 768px) {
  .drone-topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* izquierda / derecha */
    text-align: left;
    row-gap: 0;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

/* BLOQUE CONTACTO (lado izquierdo en desktop) */
.drone-topbar__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centrado en mobile */
  align-items: center;
  row-gap: 0.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 768px) {
  .drone-topbar__contact {
    justify-content: flex-start; /* izquierda desktop */
  }
}

.drone-topbar__contact-item {
  display: flex;
}

.drone-topbar__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px; /* hit area accesible */
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: inherit; /* hereda 16/17px */
  font-weight: inherit; /* hereda 700 */
}
.drone-topbar__contact-link:hover, .drone-topbar__contact-link:focus {
  text-decoration: underline;
  outline: none;
}
.drone-topbar__contact-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

.drone-topbar__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

.drone-topbar__text {
  white-space: nowrap;
}

/* BLOQUE NAV INTERNO (lado derecho en desktop) */
.drone-topbar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centrado en mobile */
  align-items: center;
  row-gap: 0.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 768px) {
  .drone-topbar__nav {
    justify-content: flex-end; /* derecha desktop */
    -moz-column-gap: 1rem;
         column-gap: 1rem; /* más aire estilo nav principal */
  }
}

.drone-topbar__nav-item {
  display: flex;
}

.drone-topbar__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: inherit; /* hereda 16/17px */
  font-weight: inherit; /* hereda 700 */
}
.drone-topbar__nav-link:hover, .drone-topbar__nav-link:focus {
  text-decoration: underline;
  outline: none;
}
.drone-topbar__nav-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================
   HERO DRONE LANDING
   ========================= */
.hero-drone {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 70vh, 640px); /* altura flexible ~60vh en desktop */
  color: #fff;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* capa de imagen de fondo */
.hero-drone__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/T50.jpg");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 100%; /* imagen levemente “alejada” */
  z-index: 0;
  transition: background-size 0.4s ease;
}

/* overlay con degradé oscuro hacia abajo */
.hero-drone__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

/* wrapper interno */
.hero-drone__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: inherit;
  /* margen/gutter lateral consistente con el resto de la página 
  padding-left: 1rem;
  padding-right: 1rem;*/
  /* mantener el texto abajo de todo */
  padding-top: 3rem;
  padding-bottom: 3rem; /* cerca del pasto */
}

/* bloque de texto */
.hero-drone__content {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  text-align: left;
  max-width: inherit;
}

/* eyebrow / categoría */
.hero-drone__eyebrow {
  margin: 0;
  font-size: 0.875rem; /* ~14px */
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* título principal */
.hero-drone__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  /* El Figma muestra un H1 muy grande pero no todo mayúscula histérica.
     Dejamos tamaño fluido similar a lo que estás viendo:
     desktop ~48px, mobile ~32px */
  font-size: clamp(2rem, 1rem + 2vw, 3rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* descripción */
.hero-drone__desc {
  margin: 0;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .hero-drone__desc {
    font-size: 1.0625rem; /* ~17px */
    line-height: 1.5;
  }
}

/* CTA amarillo */
.hero-drone__cta {
  align-self: flex-start;
  background-color: #f4a41f;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.hero-drone__cta:hover {
  background-color: rgb(245.1936170213, 173.8744680851, 55.3063829787);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-drone__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .hero-drone__cta {
    font-size: 1rem;
    padding: 1rem 1.75rem;
    min-height: 50px;
  }
}

/* =====================================================
   HERO DRONE — Mobile overrides (NO cambia desktop)
   Colocar este bloque al final del archivo
   ===================================================== */
@media (max-width: 767.98px) {
  .hero-drone {
    min-height: clamp(520px, 70vh, 680px); /* un poco más alta en mobile */
  }
  /* La imagen SIEMPRE cubre (sin bordes negros) y muestra más dron */
  .hero-drone__bg {
    background-size: cover; /* <- clave para evitar bordes */
    background-position: center 38%;
  }
  /* Overlay más marcado para mejorar legibilidad del texto */
  .hero-drone__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.65) 100%);
  }
  /* Gutters y colocación del bloque de texto */
  .hero-drone__inner {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 2rem; /* texto más abajo */
  }
  .hero-drone__content {
    row-gap: 0.85rem;
    max-width: 34rem; /* ~544px, lectura cómoda */
  }
  /* El título ENVUELVE en mobile (sin romper desktop) */
  .hero-drone__title {
    white-space: normal; /* <- importante */
    word-break: normal;
    letter-spacing: -0.02em;
    font-size: clamp(1.75rem, 1.1rem + 4vw, 2.5rem); /* ~28–40px */
  }
  /* Párrafo más legible en móviles */
  .hero-drone__desc {
    max-width: 40ch;
    font-size: 1rem;
    line-height: 1.5;
  }
  /* CTA full-width en mobile para mejor tap target */
  .hero-drone__cta {
    align-self: stretch;
    padding: 0.9rem 1.25rem;
    min-height: 48px;
  }
}
/* Respeto a usuarios con “reducir movimiento” (opcional) */
@media (prefers-reduced-motion: reduce) {
  .hero-drone__bg {
    transition: none !important;
  }
  .hero-drone__cta {
    transition: none !important;
  }
}
/* =========================
   SECCIÓN: TECNOLOGÍA Y BENEFICIOS
   ========================= */
.tecnologia {
  background-color: #304d20; /* verde más oscuro, tono militar/agro tech */
  color: #fff;
  padding: 3rem 5rem 4rem 5rem;
}
@media (min-width: 768px) {
  .tecnologia {
    padding: 4rem 5rem 5rem 5rem;
  }
}
@media (min-width: 1200px) {
  .tecnologia {
    padding: 5rem 5rem 6rem 5rem;
  }
}

.tecnologia__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .tecnologia__inner {
    row-gap: 3rem;
  }
}

/* Título general */
.tecnologia__header {
  text-align: center;
}

.tecnologia__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
  font-size: clamp(2rem, 1.2rem + 1vw, 3rem); /* ~32px -> ~48px */
}

/* Contenedor principal (imagen + specs + beneficios) */
.tecnologia__card {
  background-color: transparent; /* la card no tiene fondo propio, está todo sobre el verde */
  display: grid;
  /* Mobile: apilado */
  grid-template-columns: 1fr;
  row-gap: 2rem;
}
@media (min-width: 992px) {
  .tecnologia__card {
    /* Desktop: imagen a la izquierda, texto a la derecha */
    grid-template-columns: minmax(320px, 560px) minmax(320px, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .tecnologia__card {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}

/* ==== Columna izquierda: imagen del drone ==== */
.tecnologia__media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tecnologia__media-frame {
  background-color: #0d0d0d;
  border-radius: 1rem;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  min-height: 300px;
}
@media (min-width: 768px) {
  .tecnologia__media-frame {
    min-height: 360px;
  }
}
@media (min-width: 1200px) {
  .tecnologia__media-frame {
    min-height: 420px; /* da esa sensación de bloque sólido que se ve en tu captura */
  }
}

.tecnologia__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #0d0d0d;
}

/* ==== Columna derecha: texto técnico + beneficios ==== */
.tecnologia__info {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .tecnologia__info {
    margin: 0; /* ya alinea con el grid */
  }
}

/* bloque specs */
.tecnologia__specs {
  color: #fff;
}

.tecnologia__label {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;
  color: #d3d3d3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.tecnologia__name {
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1.5rem, 1rem + 0.8vw, 2rem); /* ~24px -> ~32px */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
  text-align: left;
}

.tecnologia__desc {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: left;
}
@media (min-width: 768px) {
  .tecnologia__desc {
    font-size: 1.0625rem; /* ~17px */
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .tecnologia__desc {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.5;
  }
}

/* ==== Beneficios (icono + texto) ==== */
.tecnologia__benefits {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .tecnologia__benefits {
    grid-template-columns: 1fr 1fr; /* dos columnas en desktop como tu captura */
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .tecnologia__benefits {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}

.tecnologia__benefit {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  color: #fff;
}

@media (min-width: 768px) {
  .tecnologia__benefit {
    flex-direction: row;
    align-items: flex-start;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.tecnologia__benefit-icon {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  /* para íconos tipo stroke blanco en círculo,
     cuando metas SVG reales vas a reemplazar esto */
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tecnologia__benefit-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem; /* ~18px base */
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .tecnologia__benefit-text {
    font-size: 1.25rem; /* ~20px */
  }
}

/* =========================
   SECCIÓN: MUESTRA GRATIS
   ========================= */
.cta-muestra {
  background-color: #759863; /* mismo verde del resto */
  color: #fff;
  padding: 3rem 5rem 4rem 5rem;
}
@media (min-width: 768px) {
  .cta-muestra {
    padding: 4rem 5rem 5rem 5rem;
  }
}
@media (min-width: 1000px) {
  .cta-muestra {
    padding: 5rem 5rem 6rem 5rem;
  }
}

.cta-muestra__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.cta-muestra__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cta-muestra__header {
    margin-bottom: 2.5rem;
  }
}

.cta-muestra__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(2rem, 1.2rem + 1vw, 3rem); /* 32 → 48 */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Grid: texto izq + formulario der */
.cta-muestra__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .cta-muestra__grid {
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 560px);
    align-items: start;
    gap: 3rem;
  }
}

/* Copy */
.cta-muestra__copy {
  max-width: 760px;
}

.cta-muestra__eyebrow {
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #e7eadd;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.cta-muestra__headline {
  margin: 0 0 1rem 0;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1.75rem, 1.2rem + 1vw, 2.5rem); /* 28 → 40 */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.cta-muestra__desc {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.8vw, 3rem);
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}

/* Formulario */
.cta-muestra__form {
  background: transparent; /* en el prototipo los campos flotan sobre el verde */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-field {
  display: block;
}

.cta-muestra__form input,
.cta-muestra__form textarea {
  width: 100%;
  border: 0;
  border-radius: 0.6rem;
  background: #fff;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta-muestra__form textarea {
  resize: vertical;
  min-height: 130px;
}

/* estados de foco accesibles */
.cta-muestra__form input:focus,
.cta-muestra__form textarea:focus {
  outline: 3px solid #ffcc66;
  outline-offset: 2px;
}

/* botón */
.cta-muestra__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #1a1a1a;
  background-color: #f4a41f; /* naranja CTA */
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.06s ease;
}

.cta-muestra__submit:hover {
  filter: brightness(1.06);
}

.cta-muestra__submit:active {
  transform: translateY(1px);
}

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

/* =========================
   SECCIÓN: SERVICIOS AÉREOS
   ========================= */
.servicios-aereos {
  background-color: #759863; /* verde claro tipo Figma */
  color: #fff;
  padding: 2rem 5rem 3rem 5rem;
}

.servicios-aereos__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .servicios-aereos__inner {
    gap: 2.5rem;
  }
}

/* Título "Servicios aéreos" */
.servicios-aereos__header {
  text-align: center;
}

.servicios-aereos__title {
  margin: 0;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Card blanca con imagen y texto */
.servicios-aereos__card {
  background-color: #fff;
  color: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0), 0 4px 16px rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
}

.servicios-aereos__media {
  width: 100%;
  background-color: #000;
  line-height: 0;
}

.servicios-aereos__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.servicios-aereos__body {
  padding: 2rem 1.5rem 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .servicios-aereos__body {
    padding: 2rem 2rem 2.5rem 2rem;
  }
}
@media (min-width: 1200px) {
  .servicios-aereos__body {
    padding: 2.5rem 3rem 3rem 3rem;
  }
}

.servicios-aereos__item-title {
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: #131414;
}

.servicios-aereos__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #131414;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .servicios-aereos__desc {
    font-size: 1.0625rem;
  }
}
@media (min-width: 1200px) {
  .servicios-aereos__desc {
    font-size: 1.125rem;
  }
}

/* =========================
   SECCIÓN: ALCANCE
   ========================= */
.alcance {
  background-color: #759863; /* mismo verde base de la pantalla de referencia */
  color: #fff;
  padding: 3rem 5rem 4rem 5rem;
}
@media (min-width: 768px) {
  .alcance {
    padding: 4rem 5rem 5rem 5rem;
  }
}
@media (min-width: 1200px) {
  .alcance {
    padding: 5rem 5rem 6rem 5rem;
  }
}

.alcance__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .alcance__inner {
    row-gap: 3rem;
  }
}

/* Título principal "Alcance" */
.alcance__header {
  text-align: center;
}

.alcance__title {
  margin: 0;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Grid de contenido: mapa + lista */
.alcance__grid {
  display: grid;
  align-items: start;
  justify-content: center;
  row-gap: 2rem;
  /* Mobile: una sola columna (mapa arriba, lista abajo) */
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .alcance__grid {
    /* Desktop: 2 columnas */
    grid-template-columns: minmax(300px, 500px) minmax(300px, 480px);
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (min-width: 1200px) {
  .alcance__grid {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
@media (min-width: 1400px) {
  .alcance__grid {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}

/* Columna del mapa */
.alcance__map-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.alcance__map {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

/* Columna info (lista de provincias) */
.alcance__info-col {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .alcance__info-col {
    margin: 0;
  }
}

.alcance__subtitle {
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  font-size: clamp(1.25rem, 1rem + 0.4vw, 1.5rem); /* ~20px -> ~24px */
  text-transform: uppercase;
  text-align: left;
}

/* Lista de provincias */
.alcance__list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  display: grid;
  row-gap: 1rem;
}

.alcance__item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  color: #fff;
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.5rem); /* ~18px -> ~24px */
  line-height: 1.4;
  font-weight: 500;
}

.alcance__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #000000;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.3rem;
  text-align: center;
  font-weight: 600;
  color: #000000;
  /* efecto leve de sombra como en el prototipo */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 0, 0, 0.4) inset;
  /* para alinear el check verticalmente con el texto */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alcance__provincia {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Nota de disponibilidad */
.alcance__nota {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
  max-width: 28ch;
}
@media (min-width: 768px) {
  .alcance__nota {
    font-size: 1rem;
  }
}

html,
body {
  font-family: "Roboto", arial, sans-serif !important;
  color: #ffffff;
  background-color: #2B2B2B;
  text-align: center;
  font-size: 16px;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  html,
  body {
    text-align: left;
  }
}
@media (max-width: 576px) {
  html,
  body {
    font-size: 14px;
  }
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none !important;
}
a:hover {
  color: #5E17EB;
}

h1,
h2,
h3,
h4,
h5,
.footn {
  font-weight: 700;
}

h1 {
  margin: 0 auto 10px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
  }
}

h3 {
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
}
@media (max-width: 1530px) {
  h3 {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 28px;
  }
}

/* Ocultar badge reCAPTCHA v3 */
.grecaptcha-badge {
  visibility: hidden;
}

/* === DRONE TOPBAR (BARRA VERDE LANDING DRONE) === */
/* Este bloque debe ir al FINAL del stylesheet para tener prioridad visual. */
.drone-topbar {
  width: 100%;
  background-color: #304d20;
  color: #ffffff;
  position: relative;
  z-index: 1020;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  /* En mobile se ve igual de fuerte que el header */
  /* En mobile: ocultar navegación interna si se desea */
}
@media (min-width: 768px) {
  .drone-topbar {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .drone-topbar .drone-topbar__nav {
    display: none;
  }
}

/* Contenedor interno (equivale a tu `.dbar`) */
.drone-topbar__inner {
  max-width: 1320px; /* ⬅️ igual al container del header (podés ajustar a 1200/1280/1440 según tu diseño) */
  margin: 0 auto;
  padding-left: 5rem; /* ⬅️ más aire lateral */
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 0.75rem; /* espacio vertical mobile */
}
@media (min-width: 768px) {
  .drone-topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* izquierda / derecha */
    text-align: left;
    row-gap: 0;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

/* BLOQUE CONTACTO (lado izquierdo en desktop) */
.drone-topbar__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centrado en mobile */
  align-items: center;
  row-gap: 0.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 768px) {
  .drone-topbar__contact {
    justify-content: flex-start; /* izquierda desktop */
  }
}

.drone-topbar__contact-item {
  display: flex;
}

.drone-topbar__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px; /* hit area accesible */
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: inherit; /* hereda 16/17px */
  font-weight: inherit; /* hereda 700 */
}
.drone-topbar__contact-link:hover, .drone-topbar__contact-link:focus {
  text-decoration: underline;
  outline: none;
}
.drone-topbar__contact-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

.drone-topbar__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

.drone-topbar__text {
  white-space: nowrap;
}

/* BLOQUE NAV INTERNO (lado derecho en desktop) */
.drone-topbar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centrado en mobile */
  align-items: center;
  row-gap: 0.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 768px) {
  .drone-topbar__nav {
    justify-content: flex-end; /* derecha desktop */
    -moz-column-gap: 1rem;
         column-gap: 1rem; /* más aire estilo nav principal */
  }
}

.drone-topbar__nav-item {
  display: flex;
}

.drone-topbar__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: inherit; /* hereda 16/17px */
  font-weight: inherit; /* hereda 700 */
}
.drone-topbar__nav-link:hover, .drone-topbar__nav-link:focus {
  text-decoration: underline;
  outline: none;
}
.drone-topbar__nav-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================
   HERO DRONE LANDING
   ========================= */
.hero-drone {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 70vh, 640px); /* altura flexible ~60vh en desktop */
  color: #fff;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* capa de imagen de fondo */
.hero-drone__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/T50.jpg");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 100%; /* imagen levemente “alejada” */
  z-index: 0;
  transition: background-size 0.4s ease;
}

/* overlay con degradé oscuro hacia abajo */
.hero-drone__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

/* wrapper interno */
.hero-drone__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: inherit;
  /* margen/gutter lateral consistente con el resto de la página 
  padding-left: 1rem;
  padding-right: 1rem;*/
  /* mantener el texto abajo de todo */
  padding-top: 3rem;
  padding-bottom: 3rem; /* cerca del pasto */
}

/* bloque de texto */
.hero-drone__content {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  text-align: left;
  max-width: inherit;
}

/* eyebrow / categoría */
.hero-drone__eyebrow {
  margin: 0;
  font-size: 0.875rem; /* ~14px */
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* título principal */
.hero-drone__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  /* El Figma muestra un H1 muy grande pero no todo mayúscula histérica.
     Dejamos tamaño fluido similar a lo que estás viendo:
     desktop ~48px, mobile ~32px */
  font-size: clamp(2rem, 1rem + 2vw, 3rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* descripción */
.hero-drone__desc {
  margin: 0;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .hero-drone__desc {
    font-size: 1.0625rem; /* ~17px */
    line-height: 1.5;
  }
}

/* CTA amarillo */
.hero-drone__cta {
  align-self: flex-start;
  background-color: #f4a41f;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.hero-drone__cta:hover {
  background-color: rgb(245.1936170213, 173.8744680851, 55.3063829787);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-drone__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .hero-drone__cta {
    font-size: 1rem;
    padding: 1rem 1.75rem;
    min-height: 50px;
  }
}

/* =====================================================
   HERO DRONE — Mobile overrides (NO cambia desktop)
   Colocar este bloque al final del archivo
   ===================================================== */
@media (max-width: 767.98px) {
  .hero-drone {
    min-height: clamp(520px, 70vh, 680px); /* un poco más alta en mobile */
  }
  /* La imagen SIEMPRE cubre (sin bordes negros) y muestra más dron */
  .hero-drone__bg {
    background-size: cover; /* <- clave para evitar bordes */
    background-position: center 38%;
  }
  /* Overlay más marcado para mejorar legibilidad del texto */
  .hero-drone__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.65) 100%);
  }
  /* Gutters y colocación del bloque de texto */
  .hero-drone__inner {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 2rem; /* texto más abajo */
  }
  .hero-drone__content {
    row-gap: 0.85rem;
    max-width: 34rem; /* ~544px, lectura cómoda */
  }
  /* El título ENVUELVE en mobile (sin romper desktop) */
  .hero-drone__title {
    white-space: normal; /* <- importante */
    word-break: normal;
    letter-spacing: -0.02em;
    font-size: clamp(1.75rem, 1.1rem + 4vw, 2.5rem); /* ~28–40px */
  }
  /* Párrafo más legible en móviles */
  .hero-drone__desc {
    max-width: 40ch;
    font-size: 1rem;
    line-height: 1.5;
  }
  /* CTA full-width en mobile para mejor tap target */
  .hero-drone__cta {
    align-self: stretch;
    padding: 0.9rem 1.25rem;
    min-height: 48px;
  }
}
/* Respeto a usuarios con “reducir movimiento” (opcional) */
@media (prefers-reduced-motion: reduce) {
  .hero-drone__bg {
    transition: none !important;
  }
  .hero-drone__cta {
    transition: none !important;
  }
}
/* =========================
   SECCIÓN: TECNOLOGÍA Y BENEFICIOS
   ========================= */
.tecnologia {
  background-color: #304d20; /* verde más oscuro, tono militar/agro tech */
  color: #fff;
  padding: 3rem 5rem 4rem 5rem;
}
@media (min-width: 768px) {
  .tecnologia {
    padding: 4rem 5rem 5rem 5rem;
  }
}
@media (min-width: 1200px) {
  .tecnologia {
    padding: 5rem 5rem 6rem 5rem;
  }
}

.tecnologia__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .tecnologia__inner {
    row-gap: 3rem;
  }
}

/* Título general */
.tecnologia__header {
  text-align: center;
}

.tecnologia__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
  font-size: clamp(2rem, 1.2rem + 1vw, 3rem); /* ~32px -> ~48px */
}

/* Contenedor principal (imagen + specs + beneficios) */
.tecnologia__card {
  background-color: transparent; /* la card no tiene fondo propio, está todo sobre el verde */
  display: grid;
  /* Mobile: apilado */
  grid-template-columns: 1fr;
  row-gap: 2rem;
}
@media (min-width: 992px) {
  .tecnologia__card {
    /* Desktop: imagen a la izquierda, texto a la derecha */
    grid-template-columns: minmax(320px, 560px) minmax(320px, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .tecnologia__card {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}

/* ==== Columna izquierda: imagen del drone ==== */
.tecnologia__media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tecnologia__media-frame {
  background-color: #0d0d0d;
  border-radius: 1rem;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  min-height: 300px;
}
@media (min-width: 768px) {
  .tecnologia__media-frame {
    min-height: 360px;
  }
}
@media (min-width: 1200px) {
  .tecnologia__media-frame {
    min-height: 420px; /* da esa sensación de bloque sólido que se ve en tu captura */
  }
}

.tecnologia__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #0d0d0d;
}

/* ==== Columna derecha: texto técnico + beneficios ==== */
.tecnologia__info {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .tecnologia__info {
    margin: 0; /* ya alinea con el grid */
  }
}

/* bloque specs */
.tecnologia__specs {
  color: #fff;
}

.tecnologia__label {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;
  color: #d3d3d3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.tecnologia__name {
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1.5rem, 1rem + 0.8vw, 2rem); /* ~24px -> ~32px */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
  text-align: left;
}

.tecnologia__desc {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: left;
}
@media (min-width: 768px) {
  .tecnologia__desc {
    font-size: 1.0625rem; /* ~17px */
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .tecnologia__desc {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.5;
  }
}

/* ==== Beneficios (icono + texto) ==== */
.tecnologia__benefits {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .tecnologia__benefits {
    grid-template-columns: 1fr 1fr; /* dos columnas en desktop como tu captura */
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .tecnologia__benefits {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}

.tecnologia__benefit {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  color: #fff;
}

@media (min-width: 768px) {
  .tecnologia__benefit {
    flex-direction: row;
    align-items: flex-start;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.tecnologia__benefit-icon {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  /* para íconos tipo stroke blanco en círculo,
     cuando metas SVG reales vas a reemplazar esto */
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tecnologia__benefit-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem; /* ~18px base */
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .tecnologia__benefit-text {
    font-size: 1.25rem; /* ~20px */
  }
}

/* =========================
   SECCIÓN: MUESTRA GRATIS
   ========================= */
.cta-muestra {
  background-color: #759863; /* mismo verde del resto */
  color: #fff;
  padding: 3rem 5rem 4rem 5rem;
}
@media (min-width: 768px) {
  .cta-muestra {
    padding: 4rem 5rem 5rem 5rem;
  }
}
@media (min-width: 1000px) {
  .cta-muestra {
    padding: 5rem 5rem 6rem 5rem;
  }
}

.cta-muestra__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.cta-muestra__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cta-muestra__header {
    margin-bottom: 2.5rem;
  }
}

.cta-muestra__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(2rem, 1.2rem + 1vw, 3rem); /* 32 → 48 */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Grid: texto izq + formulario der */
.cta-muestra__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .cta-muestra__grid {
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 560px);
    align-items: start;
    gap: 3rem;
  }
}

/* Copy */
.cta-muestra__copy {
  max-width: 760px;
}

.cta-muestra__eyebrow {
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #e7eadd;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.cta-muestra__headline {
  margin: 0 0 1rem 0;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1.75rem, 1.2rem + 1vw, 2.5rem); /* 28 → 40 */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.cta-muestra__desc {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.8vw, 3rem);
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}

/* Formulario */
.cta-muestra__form {
  background: transparent; /* en el prototipo los campos flotan sobre el verde */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-field {
  display: block;
}

.cta-muestra__form input,
.cta-muestra__form textarea {
  width: 100%;
  border: 0;
  border-radius: 0.6rem;
  background: #fff;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta-muestra__form textarea {
  resize: vertical;
  min-height: 130px;
}

/* estados de foco accesibles */
.cta-muestra__form input:focus,
.cta-muestra__form textarea:focus {
  outline: 3px solid #ffcc66;
  outline-offset: 2px;
}

/* botón */
.cta-muestra__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #1a1a1a;
  background-color: #f4a41f; /* naranja CTA */
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.06s ease;
}

.cta-muestra__submit:hover {
  filter: brightness(1.06);
}

.cta-muestra__submit:active {
  transform: translateY(1px);
}

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

/* scoped de fondos*/
.page--aplicacion-drone .hero-drone__bg {
  background-image: url("../img/hero-aplicacion-drone.png");
}
.page--aplicacion-drone .drone-topbar,
.page--aplicacion-drone .cta-muestra {
  background-color: #151f2c;
}
.page--aplicacion-drone .tecnologia {
  background-color: #11315b;
}

.air-services {
  background: linear-gradient(180deg, #0e1b2b, #111);
  padding: 90px 0;
  color: #fff;
}
@media (max-width: 991px) {
  .air-services {
    padding: 70px 0;
  }
}

.air-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 28px;
}

.air-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}
@media (max-width: 575px) {
  .air-tabs {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
}

.air-tab {
  border: none;
  padding: 16px 120px;
  min-width: 300px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  background: #fff;
  color: #111;
  transition: all 0.25s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.air-tab.active {
  background: #f6a623;
  color: #fff;
}
.air-tab:hover:not(.active) {
  background: #f2f2f2;
}
@media (max-width: 768px) {
  .air-tab {
    min-width: 100%;
    font-size: 16px;
    padding: 14px 24px;
  }
}

.air-description {
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  opacity: 0.95;
  padding: 0 12px;
}

/* ✅ IMPORTANTE:
   En vez de usar absolute (que puede “romper” el flujo),
   ocultamos con display/opacity y mantenemos layout estable. */
.air-panel {
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.air-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.air-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 991px) {
  .air-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.air-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  background: #000;
}
.air-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.air-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
}

.air-card-text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.air-card-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: none;
}
.air-card-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.35;
  max-width: 40ch;
}

.btn-new {
  padding: 14px 35px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  border: 3px solid #ffffff;
  border-radius: 2px;
  cursor: pointer;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.btn-new:hover {
  background: #ffffff;
  color: #131414;
}

#navdat {
  width: 100%;
  background: #2b2b2b; /* gris oscuro del prototipo */
  position: relative;
  top: auto;
  left: auto;
  color: #ffffff;
  height: auto;
  overflow: visible;
  text-align: left;
  z-index: 1020;
  font-weight: 600;
  padding: 5px 0;
  /* En mobile lo podés mostrar u ocultar según prefieras */
}
#navdat .dbar {
  padding-top: 0;
}
#navdat .dbar a {
  margin-right: 32px; /* 👈 separación entre cada item */
  display: inline-flex;
  align-items: center;
}
#navdat .dbar i {
  margin-right: 7px;
}
#navdat a:hover {
  color: #ffffff;
  opacity: 0.85;
}
#navdat .social-icons-top {
  display: flex;
  align-items: center;
  gap: 1.2rem; /* separación entre íconos sociales */
}
#navdat .social-icons-top a {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  #navdat {
    /* display: none; */ /* si querés ocultarlo en móviles */
    font-size: 13px;
  }
}

#hero-form.hero {
  position: relative;
  padding: 2rem 0;
  color: #ffffff;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fondo con IMAGEN*/
  /* Capa de contraste (ayuda a que el texto siempre se lea) */
}
#hero-form.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/fumigacion.jpeg") center/cover no-repeat;
  z-index: -2;
}
#hero-form.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.55) 100%);
  z-index: -1;
  pointer-events: none;
}
#hero-form.hero .text-content {
  padding-right: 3rem; /* + aire a la derecha */
}
#hero-form.hero .text-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
}
#hero-form.hero .text-content .subtitle {
  font-size: 1.3rem;
}
#hero-form.hero .text-content .subtitle strong {
  color: #5E17EB;
}
#hero-form.hero .plagas-iconos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
#hero-form.hero .plagas-iconos span {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
#hero-form.hero .plagas-iconos span:hover {
  transform: translateY(-3px);
}
#hero-form.hero .plagas-iconos i {
  color: #5E17EB;
}
#hero-form.hero .form-container {
  margin-left: 0; /* <- importante */
  padding-left: 2rem; /* separa sin romper el grid */
}
#hero-form.hero .form-container form {
  text-align: left;
  width: 500px;
  max-width: 100%;
  background: rgba(43, 43, 43, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #EDEDED;
  padding: 30px 15px;
  border-radius: 16px;
  border-bottom: 5px solid #5E17EB;
}
#hero-form.hero .form-container .form-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
#hero-form.hero .form-container .form-control {
  border-radius: 10px;
  border: 0;
  background-color: #EDEDED;
  color: #131414;
}
#hero-form.hero .form-container .form-control:active, #hero-form.hero .form-container .form-control:focus {
  background-color: #EDEDED;
  color: #131414;
  box-shadow: none;
}
#hero-form.hero .form-container .btn-new {
  width: 100%;
  border-color: #5E17EB;
  background: #5E17EB;
  color: #ffffff;
}
#hero-form.hero .form-container .btn-new:hover {
  background: rgb(74.75, 16.4285714286, 190.5714285714);
  border-color: rgb(74.75, 16.4285714286, 190.5714285714);
  color: #ffffff;
}
#hero-form.hero .form-container #form-message {
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
}
@media (max-width: 992px) {
  #hero-form.hero .form-container {
    display: none;
  }
  #hero-form.hero .text-content {
    text-align: center;
  }
  #hero-form.hero .plagas-iconos {
    justify-content: center;
  }
}

/* ===== Aplicaciones aéreas VANT ===== */
.vant {
  background: #2f2f2f;
  padding: 64px 0 56px;
  color: #ffffff;
}
.vant .section-head {
  margin-bottom: 28px;
}
.vant .section-head h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
}
.vant .section-head .section-sub {
  opacity: 0.9;
  margin-top: 4px;
  font-size: 14px;
}
.vant .vant-card {
  background: #fff;
  color: #222;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vant .vant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.vant .vant-card:hover .vant-media img {
  transform: scale(1.08); /* 👈 pequeño zoom */
}
.vant .vant-card .vant-body {
  padding: 24px 22px 16px;
  text-align: center;
}
.vant .vant-card .vant-body h3 {
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 8px;
  color: #111;
  text-shadow: none !important;
}
.vant .vant-card .vant-body p {
  margin: 0;
  color: #444;
}
.vant .vant-card .vant-media {
  position: relative;
  height: 240px;
  overflow: hidden; /* oculta el exceso del zoom */
}
.vant .vant-card .vant-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.4s ease; /* 👈 animación suave */
}
.vant .vant-card-link {
  text-decoration: none; /* quita subrayado */
  color: inherit; /* mantiene color de texto */
  display: block; /* hace que abarque toda la card */
}
.vant .vant-card {
  cursor: pointer; /* indica que es clickeable */
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vant .vant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
@media (max-width: 992px) {
  .vant {
    padding: 48px 0;
  }
  .vant .vant-card .vant-media {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .vant .section-head {
    margin-bottom: 22px;
  }
  .vant .vant-card .vant-media {
    height: 180px;
  }
}

.servicios {
  background: #2B2B2B;
  color: #ffffff;
  padding: 64px 0;
  /* Card */
}
.servicios .section-head h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
}
.servicios .service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out;
  /* Media */
  /* Overlay de texto */
}
.servicios .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}
.servicios .service-card .service-media {
  height: 220px;
  overflow: hidden;
}
.servicios .service-card .service-media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.22s ease-out;
  will-change: transform;
}
.servicios .service-card:hover .service-media img {
  transform: scale(1.04);
}
.servicios .service-card .service-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.75) 100%);
}
.servicios .service-card .service-overlay h3 {
  margin: 0 0 6px;
  font-weight: 800;
  color: #fff;
  text-shadow: none !important;
}
.servicios .service-card .service-overlay p {
  margin: 0;
  color: #eee;
}

/* ===== Modal de servicio ===== */
#serviceModal .modal-dialog {
  max-width: 1080px;
  margin: 1.25rem auto;
  padding: 0 8px;
}
@media (min-width: 992px) {
  #serviceModal .modal-dialog.modal-dialog-centered {
    align-items: center;
  }
}

/* Backdrop */
.modal-backdrop {
  opacity: 0.35;
  z-index: 12000 !important;
}

/* Contenedor del modal */
.service-modal {
  position: relative;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  color: #222;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  max-height: 90vh; /* no supera la ventana */
  display: flex;
  flex-direction: column;
}

/* Botón de cierre (X) */
.service-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  z-index: 12020;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.service-close:hover {
  filter: brightness(1.15);
  transform: scale(1.06);
}

/* Etapa animable (slide) */
.service-modal-stage {
  position: relative;
  overflow: hidden;
}

.service-modal-slide {
  will-change: transform, opacity;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Estados de animación */
.slide-out-left {
  transform: translateX(-24px);
  opacity: 0;
}

.slide-out-right {
  transform: translateX(24px);
  opacity: 0;
}

.slide-in-from-right {
  transform: translateX(24px);
  opacity: 0;
}

.slide-in-from-left {
  transform: translateX(-24px);
  opacity: 0;
}

.slide-in-active {
  transform: translateX(0);
  opacity: 1;
}

/* Imagen superior */
.service-modal-media {
  flex: 0 0 auto; /* ← solo ocupa lo necesario */
  height: clamp(200px, 32vh, 380px);
  overflow: hidden;
}
.service-modal-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .service-modal-media {
    height: 240px;
  }
}
/* Cuerpo del modal */
.service-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 28px 40px 12px;
  text-align: left; /* alineación natural a la izquierda */
  background: #fff;
  z-index: 2;
  max-height: calc(90vh - 300px);
}

.service-modal-body::-webkit-scrollbar {
  width: 8px;
}

.service-modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.service-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

.service-modal-title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  color: #000; /* título negro */
  text-shadow: none; /* elimina la sombra heredada */
  text-align: center; /* opcional: centrado */
}

.service-modal-text {
  margin: 0 auto;
  max-width: 85ch; /* más ancho que antes */
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.75; /* más aire entre líneas */
  color: #333;
  text-align: justify; /* opcional: justificado */
}

/* Navegación inferior */
.service-modal-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px 22px;
  background: #fff;
  border-top: 1px solid #eee;
}
.service-modal-nav .btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.service-modal-nav .btn:hover {
  transform: translateY(-1px);
}
.service-modal-nav .prev {
  background: #edeef1;
  color: #2a2a2a;
}
.service-modal-nav .prev:hover {
  filter: brightness(0.98);
}
.service-modal-nav .next {
  background: #5E17EB; /* cambia por tu color */
  color: #fff;
}
.service-modal-nav .next:hover {
  filter: brightness(1.05);
}

/* Z-index del modal */
.modal {
  z-index: 12010 !important;
}

/* Desactivar interacción en overlays mientras el modal está abierto */
.modal-open nav.arados,
.modal-open #navdat,
.modal-open .whatsapp-float {
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .service-modal-body {
    padding: 20px 16px 8px;
  }
  .service-modal-nav {
    padding: 12px 16px 18px;
  }
  .service-modal-nav .btn {
    width: 48%;
    justify-content: center;
  }
}
/* ===== Nosotros ===== */
.nosotros {
  background: #111;
  color: #f5f5f5;
  padding: 80px 0;
  /* Responsive */
}
.nosotros .section-head {
  margin-bottom: 28px;
}
.nosotros .section-head h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
}
.nosotros .section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.nosotros .section-text {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: #e5e5e5;
  margin-bottom: 32px;
  max-width: 95%;
}
.nosotros .icon {
  font-size: 1.6rem;
  margin-right: 12px;
  color: #5E17EB;
  flex-shrink: 0;
}
.nosotros .features p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  margin: 0;
}
.nosotros .nosotros-img {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  width: 90%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .nosotros {
    text-align: center;
  }
  .nosotros .section-text {
    max-width: 100%;
  }
  .nosotros .features {
    justify-content: center;
  }
  .nosotros .features .d-flex {
    justify-content: center;
    text-align: left;
  }
  .nosotros .nosotros-img {
    margin-top: 24px;
    max-height: 380px;
  }
}

/* ===== CONTACTO ===== */
.contacto {
  background: #2f2f2f;
  color: #fff;
  padding: clamp(68px, 7vw, 96px) 0;
  /* Título “Contacto” fuera del contenedor, centrado */
  /* Título principal */
  /* En desktop: una sola línea (si entra); en mobile, vuelve a permitir salto */
  /* Datos de contacto */
  /* ===== Tira compacta de contacto ===== */
  /* Responsivo: en pantallas chicas centrado y un poco más de separación */
  /* Formulario más pequeño */
  /* Responsive */
}
.contacto .section-kicker {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #eaeaea;
  font-size: clamp(28px, 4.2vw, 48px);
  margin-bottom: clamp(14px, 2vw, 20px);
}
.contacto .container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: grid;
  /* form más chico: columna derecha de ancho fijo */
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
.contacto .title {
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  /* que pueda ocupar todo el ancho */
  max-width: none;
}
.contacto .title.one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 992px) {
  .contacto .title.one-line {
    white-space: normal;
  }
}
.contacto .lead {
  color: #d8d8d8;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.8;
  max-width: 60ch;
  margin-bottom: 24px;
}
.contacto .contact-bar {
  display: flex;
  align-items: center;
  justify-content: center; /* centrado en desktop */
  gap: 32px; /* separación entre items */
  flex-wrap: wrap;
  width: 100%;
  padding: 8px 0; /* alto reducido */
  line-height: 1; /* evita alto extra por línea */
  color: #ffffff; /* usa tu variable de color */
  /* evita que estilos heredados (p, h*) agranden esto */
  font: inherit;
  /* Variante compacta (idéntica visualmente pero garantizamos altura) */
}
.contacto .contact-bar .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  margin: 0;
  padding: 0; /* sin padding extra */
  white-space: nowrap; /* que no corte números */
  transition: opacity 0.15s ease;
}
.contacto .contact-bar .contact-item:hover {
  opacity: 0.85;
}
.contacto .contact-bar .contact-item i {
  font-size: 20px; /* tamaño de icono */
  width: 1.1em; /* ancho fijo para alinear */
  text-align: center;
  opacity: 0.95;
}
.contacto .contact-bar .contact-item span {
  font-size: 30px; /* tamaño de texto compacto */
  letter-spacing: 0.4px;
}
.contacto .contact-bar.compact {
  padding: 6px 0;
}
.contacto .contact-bar.compact .contact-item span {
  font-size: 15px;
}
.contacto .contact-bar.compact .contact-item i {
  font-size: 15px;
}
@media (max-width: 768px) {
  .contacto .contact-bar {
    gap: 18px;
    padding: 10px 0;
    justify-content: center;
  }
  .contacto .contact-bar .contact-item span {
    font-size: 14.5px;
  }
  .contacto .contact-bar .contact-item i {
    font-size: 16px;
  }
}
.contacto .contact-form-col {
  display: flex;
  justify-content: flex-end;
}
.contacto .contact-form {
  width: min(520px, 100%);
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.contacto .contact-form .form-group {
  margin-bottom: 14px;
}
.contacto .contact-form .form-control {
  width: 100%;
  height: 52px; /* ↓ más pequeño */
  border-radius: 10px;
  border: 0;
  padding: 0 14px;
  font-size: 16px;
  background: #fff;
  color: #111;
}
.contacto .contact-form .form-control::-moz-placeholder {
  color: #7d7d7d;
}
.contacto .contact-form .form-control::placeholder {
  color: #7d7d7d;
}
.contacto .contact-form textarea.form-control {
  min-height: 130px;
  padding-top: 10px;
}
.contacto .contact-form .btn-primary-wide {
  width: 100%;
  height: 54px; /* ↓ más bajo */
  border: 0;
  border-radius: 10px;
  background: #5b29ff;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: 0.2s;
}
.contacto .contact-form .btn-primary-wide:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
@media (max-width: 991.98px) {
  .contacto .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contacto .contact-form-col {
    justify-content: center;
  }
  .contacto .lead {
    max-width: 65ch;
  }
}

/* ===== CLIENTES ===== */
#clientes {
  padding: 50px 0;
  background: #0d0d0d;
  text-align: center;
}
#clientes .section-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
}

/* Variables:
   --count: cantidad de logos únicos (7 en este ejemplo)
   --item:  ancho fijo de cada item (incluye TODO)
   --duration: velocidad del scroll */
.logo-slider {
  --count: 7;
  --item: 400px;
  --duration: 25s;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.logo-slider::before, .logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(12vw, 150px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #0d0d0d, transparent);
}
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #0d0d0d, transparent);
}

.logos-track {
  display: flex;
  /* Ancho exacto: 2 veces el set de logos únicos */
  width: calc(var(--item) * var(--count) * 2);
  animation: scroll var(--duration) linear infinite;
}

.slide {
  width: 250px;
  height: 90px;
  padding: 15px;
  box-sizing: border-box; /* para que el width incluya cualquier padding/border */
  display: grid;
  place-items: center;
  /* No uses padding que rompa el ancho exacto:
     si querés aire, dalo al IMG con max-height o scale */
}

.slide img {
  display: block;
  max-width: 100%;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) brightness(1.6);
  transition: filter 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none; /* (opcional) evita hover glitch en móvil */
}

.slide img:hover {
  filter: grayscale(0%) brightness(1);
}

/* La animación recorre EXACTAMENTE el ancho del primer set */
@keyframes scroll {
  to {
    transform: translateX(calc(-1 * var(--item) * var(--count)));
  }
}
/* Responsive: logos un poco más grandes y animación más rápida si hay menos ancho */
@media (max-width: 768px) {
  .logo-slider {
    --item: 200px;
    --duration: 28s;
  }
  .slide {
    height: 80px;
  }
  .slide img {
    max-height: 70px;
  }
}
/*GRUPO PREVEN*/
#grupo-preven {
  padding: 80px 0;
  background: #2d2d2d;
  text-align: center;
}
#grupo-preven .section-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}
#grupo-preven .preven-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* más separación */
  flex-wrap: wrap;
  cursor: pointer;
}
#grupo-preven .preven-logo {
  background: #111;
  border-radius: 14px;
  width: 200px; /* cuadrado fijo */
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#grupo-preven .preven-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* hace que ocupe todo el cuadro */
  border-radius: 10px;
}
#grupo-preven .preven-logo:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  #grupo-preven .preven-logo {
    width: 120px;
    height: 120px;
  }
}
#footer {
  background: #000000 !important;
  color: #ffffff;
  padding: 3rem 0;
}
#footer .footn {
  font-weight: 700;
  font-size: 22px;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 14px;
  line-height: 1.1;
}
#footer a {
  color: #d0d0d0 !important;
  text-decoration: none;
}
#footer a:hover {
  color: #5E17EB !important;
}
#footer .agricultura,
#footer .logopie,
#footer .linkredes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#footer .agricultura {
  align-items: flex-start;
  text-align: left;
}
#footer .logopie {
  align-items: center;
  text-align: center;
}
#footer .logopie img {
  margin: 20px 0;
  max-height: 100px;
}
#footer .linkredes {
  align-items: flex-end;
  text-align: right;
}
#footer .social-icons-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 6px;
}
#footer .social-icons-footer .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  color: white !important;
  font-size: 1.2rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}
#footer .social-icons-footer .social-icon:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}
#footer .social-icons-footer .social-icon i[class*=fa-whatsapp] {
  background-color: #25d366;
}
#footer .social-icons-footer .social-icon i[class*=fa-facebook-f] {
  background-color: #3b5998;
}
#footer .social-icons-footer .social-icon i[class*=fa-instagram] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
#footer .social-icons-footer .social-icon i[class*=fa-linkedin-in] {
  background-color: #0077b5;
}
#footer .social-icons-footer .social-icon i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
#footer .contact-items {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
#footer .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  text-decoration: none;
}
#footer .contact-item i {
  width: 22px;
  min-width: 22px;
  font-size: 18px;
  opacity: 0.95;
}
#footer .contact-item span {
  display: inline-block;
}
@media (max-width: 768px) {
  #footer .agricultura,
  #footer .logopie,
  #footer .linkredes {
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  #footer .social-icons-footer {
    align-items: center;
  }
}

#firma {
  background: #2B2B2B;
  color: #b0b0b0;
  text-align: center;
  padding: 1.5rem;
  font-size: 14px;
}

.ant-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 12000;
  contain: layout paint;
}

.ant {
  position: absolute;
  width: 20px;
  height: 12px;
  transform-origin: 50% 50%;
  will-change: transform, left, top;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.9));
  opacity: 0.95;
}
.ant::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'>  <g fill='%23ffffff' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'>    <path d='M22 24 L10 14'/>    <path d='M22 36 L10 46'/>    <ellipse cx='28' cy='30' rx='10' ry='9'/>    <ellipse cx='56' cy='30' rx='12' ry='10'/>    <ellipse cx='92' cy='30' rx='18' ry='14'/>    <path d='M50 22 L36 10'/>    <path d='M62 22 L76 10'/>    <path d='M46 30 L32 30'/>    <path d='M66 30 L80 30'/>    <path d='M50 38 L36 50'/>    <path d='M62 38 L76 50'/>  </g></svg>") no-repeat center/contain;
}