/* ================= RESET GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #05070b;
  color: #fff;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  z-index: 1000;
}

.header-container {
  max-width: 1350px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 110px;
}

.menu {
  display: flex;
  gap: 35px;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.menu a:hover {
  color: #6ecf3a;
}

.btn-contacto {
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #6ecf3a, #2f7d25);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 72px;
  color: #6ecf3a;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
  margin-top: 10px;
}

/* ================= CONTACTO ================= */
.contact-section {
  padding: 150px 40px 120px;
  background: #0b0f14;
}

.contact-wrapper {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.glow-box {
  position: relative;
  background: rgba(20,20,20,0.65);
  border-radius: 26px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.glow-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  background: linear-gradient(120deg, transparent, rgba(110,207,58,0.35), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(110,207,58,0.15);
  color: #6ecf3a;
  font-size: 13px;
  margin-bottom: 14px;
}

.contact-left h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-left h2 span {
  color: #6ecf3a;
}

.contact-left p {
  color: #aaa;
  margin-bottom: 25px;
}

/* ================= FORMULARIO ================= */
.form {
  width: 100%;
}

.row {
  display: flex;
  gap: 15px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid #222;
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.form input:focus,
.form textarea:focus,
.form input:valid,
.form textarea:valid {
  background: #d9ffe3;
  color: #000;
  border: 1px solid #6ecf3a;
  box-shadow: 0 0 0 2px rgba(110,207,58,0.25), 0 0 18px rgba(110,207,58,0.35);
}

.form input:invalid,
.form textarea:invalid {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #222;
}

.captcha-center {
  display: flex;
  justify-content: center;
  margin: 18px 0 12px;
}

.btn-glow {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6ecf3a, #2f7d25);
  transition: 0.3s;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(110,207,58,0.35);
}

/* ================= RESPUESTA FORM ================= */
#respuesta-form {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}

.exito-box {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: #0f3d1e;
  border: 1px solid #22c55e;
  color: #22c55e;
}

.error-box {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: #3f1d1d;
  border: 1px solid #ef4444;
  color: #fecaca;
}

/* ================= INFO Y REDES ================= */
.info-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-row i {
  font-size: 20px;
  color: #6ecf3a;
}

.info-row small {
  color: #aaa;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(110,207,58,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ecf3a;
  transition: 0.3s;
}

.socials a:hover {
  background: #6ecf3a;
  color: #000;
  box-shadow: 0 0 25px rgba(110,207,58,0.9);
}

/* ================= CATÁLOGO ================= */
.catalogo {
  padding: 120px 0;
  background: #05070b;
}

.catalogo h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.contenedor-carrusel {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 0 80px;
}

.ventana {
  overflow: hidden;
}

.carrusel {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
}

.producto {
  min-width: 360px;
  background: #0b0f14;
  border-radius: 28px;
  padding: 18px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 35px rgba(0,0,0,0.45);
}

.producto img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 22px;
}

.producto:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 0 30px rgba(110,207,58,0.35);
}

.btn-pdf {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #6ecf3a, #2f7d25);
  color: #fff;
}
/* ================= FLECHAS CARRUSEL ================= */
.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #6ecf3a, #2f7d25);
  color: #000;
  font-size: 30px;
  font-weight: bold;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(110,207,58,0.6);
  transition: 0.3s ease;
}

.flecha:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 35px rgba(110,207,58,0.9);
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}

/* ================= FOOTER ================= */
.footer {
  background: #05070b;
  padding: 80px 40px 25px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-left img {
  height: 120px;
}

.footer-left p {
  color: #888;
  margin-top: 15px;
}

.footer-right iframe {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  border: none;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #666;
}

/* ================= WHATSAPP PRO ================= */

.whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  text-decoration: none;
}

/* BOTÓN */
.whatsapp-inner {
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 FLOTANTE + LATIDO */
  animation: whatsapp-float-heart 2.8s ease-in-out infinite;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* ICONO SVG FIX */
.whatsapp-inner svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  display: block;
  pointer-events: none;
}

/* ================= HOVER: REBOTE + GLOW ================= */

.whatsapp:hover .whatsapp-inner {
  animation: whatsapp-bounce 1.9s ease;
  box-shadow:
    0 0 15px rgba(37,211,102,0.9),
    0 0 35px rgba(37,211,102,0.8),
    0 0 70px rgba(37,211,102,0.7);
}

/* ================= FLOTANTE + LATIDO ================= */

@keyframes whatsapp-float-heart {
  0%   { transform: translateY(0) scale(1); }
  15%  { transform: translateY(-6px) scale(1.12); }
  30%  { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.12); }
  70%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0) scale(1); }
}

/* ================= REBOTE MÚLTIPLE ================= */

@keyframes whatsapp-bounce {
  0%   { transform: translateY(0) scale(1); }

  15%  { transform: translateY(-32px) scale(1.22); }
  30%  { transform: translateY(0) scale(1); }

  45%  { transform: translateY(-22px) scale(1.14); }
  60%  { transform: translateY(0) scale(1); }

  75%  { transform: translateY(-14px) scale(1.08); }
  90%  { transform: translateY(0) scale(1); }

  100% { transform: translateY(-6px) scale(1.04); }
}

/* ================= FIX MÓVILES ================= */

@media (hover: none) {
  .whatsapp:hover .whatsapp-inner {
    animation: whatsapp-float-heart 2.8s ease-in-out infinite;
    box-shadow: none;
    transform: none;
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .menu { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .row { flex-direction: column; }
  .hero-content h1 { font-size: 48px; }
  .footer-container { grid-template-columns: 1fr; }
  .producto { min-width: 280px; }
  .contenedor-carrusel { padding: 0 40px; }
}
/* ================= Glow Mapa ================= */
.map {
  border-radius: 16px;
  position: relative;
  box-shadow:
    0 0 12px rgba(110,207,58,0.35),
    0 0 30px rgba(110,207,58,0.25),
    0 0 60px rgba(110,207,58,0.15);
  transition: 0.4s ease;
}

.map:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 18px rgba(110,207,58,0.6),
    0 0 45px rgba(110,207,58,0.45),
    0 0 90px rgba(110,207,58,0.35);
}
/* ================= LINK GOOGLE MAPS GLOW ================= */
.map-link {
  color: #6ecf3a;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  text-shadow:
    0 0 6px rgba(110,207,58,0.6),
    0 0 14px rgba(110,207,58,0.5);
}

.map-link:hover {
  color: #b6ff9c;
  text-shadow:
    0 0 10px rgba(110,207,58,0.9),
    0 0 25px rgba(110,207,58,0.8),
    0 0 45px rgba(110,207,58,0.7);
}
* ================= TITULO CONTACTO ================= */
.contact-right h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  margin-bottom: 25px;
  color: #6ecf3a;
  letter-spacing: 1px;
  text-shadow:
    0 0 8px rgba(110,207,58,0.8),
    0 0 18px rgba(110,207,58,0.6),
    0 0 35px rgba(110,207,58,0.4);
}
/* ================= INFO CONTACTO ================= */
.contact-right {
  font-family: 'Poppins', sans-serif;
}

/* ICONOS */
.info-row i {
  color: #6ecf3a;
  font-size: 22px;
  margin-top: 4px;
  text-shadow:
    0 0 6px rgba(110,207,58,0.8),
    0 0 14px rgba(110,207,58,0.6);
}

/* ETIQUETA (Teléfono, Email, etc) */
.info-row small {
  display: block;
  font-size: 12px;
  color: #9dff7a;
  letter-spacing: 0.5px;
}

/* TEXTO PRINCIPAL */
.info-row span {
  display: block;
  font-size: 15px;
  color: #6ecf3a;
  text-shadow:
    0 0 6px rgba(110,207,58,0.7),
    0 0 16px rgba(110,207,58,0.5);
}

/* HOVER */
.info-row:hover i,
.info-row:hover span {
  text-shadow:
    0 0 10px rgba(110,207,58,0.95),
    0 0 30px rgba(110,207,58,0.75);
}
* ================= SIGUENOS ================= */
.social-block p {
  font-family: 'Orbitron', sans-serif;
  color: #6ecf3a;
  margin-bottom: 12px;
  text-shadow:
    0 0 6px rgba(110,207,58,0.7),
    0 0 14px rgba(110,207,58,0.5);
}
/* ====== FIX TEXTO CONTACTO BLANCO ====== */
.contact-right {
  color: #6ecf3a;
}

.contact-right h3,
.contact-right small,
.contact-right span,
.contact-right p {
  color: #6ecf3a !important;
}
/* ====== GLOW BOTON CONTACTANOS ====== */
.btn-contacto {
  box-shadow:
    0 0 12px rgba(110,207,58,0.6),
    0 0 30px rgba(110,207,58,0.45);
  transition: 0.3s ease;
}

.btn-contacto:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 18px rgba(110,207,58,0.9),
    0 0 45px rgba(110,207,58,0.8),
    0 0 80px rgba(110,207,58,0.6);
}
/* ====== RESALTAR CATALOGO AL LLEGAR ====== */
#productos {
  scroll-margin-top: 110px;
}
/* ====== SEPARAR TITULO INFO CONTACTO ====== */
.contact-right h3 {
  margin-bottom: 32px;        /* separación del contenido */
  padding-bottom: 16px;       /* espacio para la línea */
  border-bottom: 1px solid rgba(110,207,58,0.25);
  position: relative;
}

/* ====== LINEA VERDE HASTA "CONTACTO" ====== */
.contact-right h3 {
  position: relative;
  display: inline-block;     /* clave para que la línea mida el texto */
  margin-bottom: 34px;
  padding-bottom: 14px;
  color: #6ecf3a;
}

/* LINEA GLOW EXACTA */
.contact-right h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;               /* llega hasta "Contacto" */
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    #6ecf3a,
    #b6ff9c
  );
  box-shadow:
    0 0 10px rgba(110,207,58,0.9),
    0 0 28px rgba(110,207,58,0.7);
}
/* ================= FIX HOVER EN MÓVILES ================= */

@media (hover: none) {
  .whatsapp:hover .whatsapp-inner {
    animation: whatsapp-float 2.4s ease-in-out infinite;
    transform: none;
    box-shadow: none;
    filter: none;
  }
}

/* ================= TITULO CATALOGO PRO (NARANJA TENUE) ================= */
.catalogo h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2px;

  /* NARANJA MÁS SUAVE */
  color: #ffb066;

  /* GLOW TENUE Y FINO */
  text-shadow:
    0 0 4px rgba(255,176,102,0.55),
    0 0 10px rgba(255,176,102,0.35),
    0 0 18px rgba(255,176,102,0.2);

  margin-bottom: 55px;
  animation: glow-orange-soft 3s ease-in-out infinite;
}
}
@keyframes glow-orange-soft {
  0% {
    text-shadow:
      0 0 4px rgba(255,176,102,0.4),
      0 0 10px rgba(255,176,102,0.25),
      0 0 18px rgba(255,176,102,0.15);
  }
  50% {
    text-shadow:
      0 0 6px rgba(255,176,102,0.7),
      0 0 16px rgba(255,176,102,0.45),
      0 0 26px rgba(255,176,102,0.3);
  }
  100% {
    text-shadow:
      0 0 4px rgba(255,176,102,0.4),
      0 0 10px rgba(255,176,102,0.25),
      0 0 18px rgba(255,176,102,0.15);
  }
}
* ================= SOBRE NOSOTROS ================= */

.about-section {
  padding: 150px 40px;
  background:
    radial-gradient(circle at 75% 45%, rgba(255,176,102,0.12), transparent 40%),
    radial-gradient(circle at 20% 30%, rgba(110,207,58,0.10), transparent 45%),
    #05070b;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===== TITULO ===== */

.about-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  margin-bottom: 22px;
  color: #ffb066;
  text-shadow:
    0 0 6px rgba(255,176,102,0.6),
    0 0 14px rgba(255,176,102,0.4);
}

.about-title span {
  color: #6ecf3a;
  text-shadow:
    0 0 10px rgba(110,207,58,0.8),
    0 0 25px rgba(110,207,58,0.5);
}

.about-text {
  color: #aaa;
  line-height: 1.65;
  margin-bottom: 35px;
}

/* ===== BLOQUES ===== */

.about-blocks {
  display: grid;
  gap: 22px;
}

.about-box {
  background: rgba(20,20,20,0.6);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(255,176,102,0.18);
  transition: 0.35s ease;
}

.about-box h3 {
  color: #ffb066;
  margin-bottom: 10px;
  text-shadow:
    0 0 6px rgba(255,176,102,0.6);
}

.about-box p,
.about-box li {
  color: #aaa;
  font-size: 14px;
}

.about-box ul {
  padding-left: 18px;
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 18px rgba(255,176,102,0.25),
    0 0 35px rgba(110,207,58,0.25);
}

/* ================= ANIMACIÓN AGRÍCOLA PRO ================= */

.about-right {
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.agro-orbit {
  position: relative;
  width: 340px;
  height: 340px;
  transform-style: preserve-3d;
}

/* ===== NÚCLEO CENTRAL ===== */

.agro-core {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 30% 30%, rgba(110,207,58,0.55), rgba(20,40,20,0.9));
  box-shadow:
    0 0 25px rgba(110,207,58,0.6),
    0 0 60px rgba(110,207,58,0.35),
    inset 0 0 20px rgba(255,255,255,0.15);

  animation: core-pulse 4.5s ease-in-out infinite;
}

.agro-core i {
  font-size: 50px;
  color: #6ecf3a;
  text-shadow:
    0 0 18px rgba(110,207,58,0.9),
    0 0 45px rgba(110,207,58,0.6);
}

/* ===== ÓRBITAS ===== */

.orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbit-spin linear infinite;
}

.orbit i {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  filter: drop-shadow(0 0 10px currentColor);
}

/* PROFUNDIDAD */
.orbit-1 { width: 230px; height: 230px; animation-duration: 20s; transform: rotateX(18deg); }
.orbit-2 { width: 280px; height: 280px; animation-duration: 28s; transform: rotateX(-14deg); }
.orbit-3 { width: 330px; height: 330px; animation-duration: 36s; transform: rotateX(22deg); }

.orbit-1 i { color: #ffb066; }
.orbit-2 i { color: #6ecf3a; }
.orbit-3 i { color: #9dff7a; }

/* ===== PARTÍCULAS SUAVES ===== */

.agro-orbit::before,
.agro-orbit::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(110,207,58,0.12), transparent 70%);
  animation: halo-float 6s ease-in-out infinite;
  pointer-events: none;
}

.agro-orbit::after {
  animation-delay: -3s;
  opacity: 0.6;
}

/* ===== ANIMACIONES ===== */

@keyframes orbit-spin {
  from { transform: rotateZ(0deg); }
  to   { transform: rotateZ(360deg); }
}

@keyframes core-pulse {
  0%   { transform: scale(1); box-shadow: 0 0 25px rgba(110,207,58,0.5); }
  50%  { transform: scale(1.12); box-shadow: 0 0 55px rgba(110,207,58,0.9); }
  100% { transform: scale(1); box-shadow: 0 0 25px rgba(110,207,58,0.5); }
}

@keyframes halo-float {
  0%   { transform: scale(1); opacity: 0.5; }
  50%  { transform: scale(1.08); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0.5; }
}

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

@media (max-width: 900px) {
  .agro-orbit {
    width: 280px;
    height: 280px;
  }
}
/* ================= CLIENTES ================= */

.clientes-section {
  padding: 140px 40px;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,176,102,0.08), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(0,140,255,0.08), transparent 40%),
    #05070b;
  text-align: center;
}

.clientes-container {
  max-width: 1300px;
  margin: auto;
}

.clientes-badge {
  background: rgba(0,140,255,0.15);
  color: #3db2ff;
}

.clientes-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  margin: 18px 0 10px;
  color: #ffb066;
  text-shadow:
    0 0 6px rgba(255,176,102,0.6),
    0 0 18px rgba(255,176,102,0.3);
}

.clientes-title span {
  color: #3db2ff;
  text-shadow:
    0 0 10px rgba(0,140,255,0.7),
    0 0 25px rgba(0,140,255,0.4);
}

.clientes-subtitle {
  color: #aaa;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

/* GRID */

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */

.cliente-card {
  background: rgba(20,20,20,0.65);
  border-radius: 26px;
  padding: 35px;
  text-align: left;
  border: 1px solid rgba(255,176,102,0.15);
  transition: 0.4s ease;
  position: relative;
}

.cliente-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 20px rgba(0,140,255,0.3),
    0 0 40px rgba(255,176,102,0.2);
}

/* CARD DESTACADA (CENTRAL) */

.cliente-card.destacado {
  border: 1px solid rgba(0,140,255,0.35);
  box-shadow:
    0 0 25px rgba(0,140,255,0.25);
}

/* ICONO COMILLAS */

.quote-icon {
  font-size: 22px;
  color: #3db2ff;
  margin-bottom: 15px;
}

/* TEXTO */

.cliente-text {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 14px;
}

/* INFO CLIENTE */

.cliente-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.cliente-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb066, #3db2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

/* NOMBRE */

.cliente-info h4 {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.cliente-info span {
  font-size: 12px;
  color: #999;
}

/* ESTRELLAS */

.stars {
  color: #ffb066;
  font-size: 14px;
  letter-spacing: 2px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .clientes-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== GLOW NARANJA (IZQUIERDA Y DERECHA) ===== */

.cliente-card {
  border: 1px solid rgba(255,176,102,0.25);
  box-shadow:
    0 0 15px rgba(255,176,102,0.15);
}

/* Hover naranja más fuerte */

.cliente-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 25px rgba(255,176,102,0.45),
    0 0 50px rgba(255,176,102,0.25);
}


/* ===== TARJETA CENTRAL — AZUL TENUE ===== */

.cliente-card.destacado {
  border: 1px solid rgba(0,140,255,0.45);
  box-shadow:
    0 0 20px rgba(0,140,255,0.35),
    0 0 45px rgba(0,140,255,0.18);
}

/* Hover azul más brillante */

.cliente-card.destacado:hover {
  box-shadow:
    0 0 30px rgba(0,140,255,0.65),
    0 0 70px rgba(0,140,255,0.35);
}
/* ===== MENU PREMIUM NARANJA ===== */

.menu {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

/* LINKS */

.menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  letter-spacing: 1px;
  transition: 0.3s;
}

/* EFECTO HOVER NARANJA */

.menu a:hover {
  color: #ffb066;

  text-shadow:
    0 0 8px rgba(255,176,102,0.9),
    0 0 18px rgba(255,176,102,0.6),
    0 0 30px rgba(255,176,102,0.3);
}

/* LINEA INFERIOR ANIMADA */

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #ffb066;
  box-shadow: 0 0 10px #ffb066;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}
/* ================= CLIENTES CARRUSEL ================= */

.clientes-carrusel-wrapper {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 0 80px;
}

.clientes-ventana {
  overflow: hidden;
}

.clientes-carrusel {
  display: flex;
  gap: 35px;
  transition: transform 0.6s ease;
}

.cliente-card {
  min-width: 360px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .clientes-carrusel-wrapper {
    padding: 0 40px;
  }

  .cliente-card {
    min-width: 280px;
  }
}
* ========= DESCRIPCION PRODUCTO ========= */

.producto-desc {
  margin: 12px 0 16px;
  padding: 12px 14px;
  background: rgba(255, 140, 0, 0.12); /* anaranjado tenue */
  border: 1px solid rgba(255, 140, 0, 0.35);
  border-radius: 12px;
  color: #ffd9a3;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: center;

  box-shadow:
    0 0 10px rgba(255, 140, 0, 0.25),
    inset 0 0 8px rgba(255, 140, 0, 0.15);

  transition: all 0.3s ease;
}

.producto:hover .producto-desc {
  background: rgba(255, 140, 0, 0.18);
  box-shadow:
    0 0 14px rgba(255, 140, 0, 0.45),
    inset 0 0 10px rgba(255, 140, 0, 0.25);
}