@charset "utf-8";
/* CSS Document */
:root {
  --green: #16a34a;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: var(--dark);
}
h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  color: var(--gray);
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

h1 span {
  color: var(--green);
}
input:invalid {
  border-color: #ef4444;
}
input.error,
textarea.error {
  border-color: #ef4444;
  background: #fff1f2;
}
/* NAV */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(6, 30, 20, 0.6)
}
.header.scrolled {
  background: rgba(6, 30, 20, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.logo img {
  height: 32px;
  display: block;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* antes 70 */
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px; /* más aire */
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Línea */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}
/* Hover */
.nav-links a:hover {
  color: white;
  text-shadow: 0 0 8px rgba(34,197,94,0.6);
}
.nav-links a:hover::after {
  width: 100%;
}/* HERO */
.hero {
  height: 100vh;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
	/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}	

.hero-content {
  position: relative;
  color: white;
  max-width: 800px;
  z-index: 2;
  padding-top: 60px;
  animation: fadeUp 1s ease forwards;
  margin-top: 50px;
  padding-left: calc((100vw - 1200px) / 2 + 20px);	
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;	
}
.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
  color: lightgrey;	
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  max-width: 500px;
  font-size: 12px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-left: 14px;
}
/* puntito verde */
.hero-stats div::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.hero-stats strong {
  font-size: 13px;
  color: white;
}
.overlay {
  position: absolute;
  z-index: 1;	
  inset: 0;
  background: linear-gradient( 
    90deg,
    rgba(6, 30, 20, 0.95) 0%,
    rgba(6, 30, 20, 0.85) 30%,
    rgba(6, 30, 20, 0.5) 55%,
    rgba(6, 30, 20, 0.1) 100%
  );
}

/* GRID */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

/* PRODUCT */
.product {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product h3 {
  padding: 15px;
}

.product:hover img {
  transform: scale(1.05);
}

.product img {
  transition: transform 0.4s ease;
}

/* PRODUCTOS */
.productos {
  background: #f8fafc;
}

/* Header */
.productos-header {
  text-align: center;
  margin-bottom: 50px;
}

.productos-header h2 {
  font-size: 36px;
  margin: 10px 0;
}

.productos-header p {
  color: var(--gray);
}

/* Grid */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.producto-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #e2e8f0;
}

/* Imagen */
.producto-img {
  overflow: hidden;
}

.producto-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Info */
.producto-info {
  padding: 20px;
}

.producto-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.producto-top h3 {
  font-size: 18px;
}

.producto-top span {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

/* Texto */
.producto-info p {
  font-size: 14px;
  color: var(--gray);
  margin: 10px 0 15px;
}

/* Link */
.producto-info a {
  font-size: 14px;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

/* Hover PRO */
.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.producto-card:hover img {
  transform: scale(1.05);
}

/* CARD */
.card {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.card, .product {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* SPLIT */
.split-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 50%;
}
/* =========================
   PROCESO (TIMELINE)
========================= */

.proceso {
  background: #0f3b2e;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Header */
.proceso-header {
  text-align: center;
  margin-bottom: 60px;
}

.proceso-header h2 {
  font-size: 36px;
}

.proceso .tag {
  color: #4ade80;
}

/* Línea central */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: auto;	
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}

/* Items */
.timeline-item {
  width: 50%;
}

.timeline-item.left {
  align-self: flex-start;
  text-align: right;
  padding-right: 40px;
}

.timeline-item.right {
  align-self: flex-end;
  text-align: left;
  padding-left: 40px;
}

/* Contenido */
.timeline-item .content {
  max-width: 400px;
}

.timeline-item h3 {
  margin: 10px 0;
}

.timeline-item p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Step label */
.step {
  font-size: 11px;
  letter-spacing: 1px;
  color: #4ade80;
}

/* Icono central */
.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #16a34a;
  border-radius: 50%;
  z-index: 2;
}
.timeline-icon:hover {
  background: rgba(22,163,74,0.15);
  transform: translateX(-50%) scale(1.05);
}
.timeline-icon img {
  width: 40px;
  height: 40px;
}
/* Glow efecto */
.timeline-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(34,197,94,0.6);
}

/* Posicionamiento de iconos */
.timeline-icon:nth-of-type(2) { top: 40px; }
.timeline-icon:nth-of-type(4) { top: 200px; }
.timeline-icon:nth-of-type(6) { top: 360px; }
.timeline-icon:nth-of-type(8) { top: 510px; }
.timeline-icon:nth-of-type(10){ top: 680px; }

/* TIMELINE */
.dark {
  background: var(--dark);
  color: white;
}

.timeline {
  display: flex;
  justify-content: space-between;
}
/* =========================
   DIFERENCIALES
========================= */

.diferenciales {
  background: #f8fafc;
  text-align: center;
}

/* Header */
.diferenciales-header {
  margin-bottom: 50px;
}

.diferenciales-header h2 {
  font-size: 36px;
}

/* Grid */
.diferenciales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.diferencial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  position: relative;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

/* 🔥 CORNERS (reutilizando lógica empresa) */
.diferencial-card::before,
.diferencial-card::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--green);
}

.diferencial-card::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.diferencial-card::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

/* Imagen */
.diferencial-img {
  margin-bottom: 20px;
}

.diferencial-img img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* Texto */
.diferencial-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.diferencial-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Hover */
.diferencial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
/* =========================
   CTA
========================= */

.cta {
  position: relative;
  background: url("assets/cta.png") center/cover no-repeat;
  padding: 120px 0;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Overlay verde */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 59, 46, 0.85);
}

/* Contenido */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Título */
.cta h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
}

.cta h2 span {
  color: #22c55e;
}

/* Texto */
.cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  font-size: 16px;
}

/* Botones */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Botón outline adaptado */
.cta .btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
}

.cta .btn-outline:hover {
  background: white;
  color: var(--dark);
}

/* Hover primary */
.cta .btn-primary:hover {
  background: #15803d;
}

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BUTTONS */
.btn {
  padding: 12px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;	
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 25px rgba(22,163,74,0.3);	
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid white;
  color: white;
}

/* EMPRESA */
.empresa {
  background: #f1f5f9;
}

.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
	
}

/* Imagen */
.empresa-img {
  position: relative;
}

.empresa-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;	
}
.empresa-img:hover img {
  transform: scale(1.02);
  filter: brightness(1.05);
}
/* Detalle decorativo (líneas verdes) */
.empresa-img::before,
.empresa-img::after {
  content: "";
  position: absolute;
  border: 2px solid var(--green);
  width: 60px;
  height: 60px;
}

.empresa-img::before {
  top: -15px;
  left: -15px;
  border-right: none;
  border-bottom: none;
}

.empresa-img::after {
  bottom: -15px;
  right: -15px;
  border-left: none;
  border-top: none;
}

/* Contenido */
.empresa-content h2 {
  font-size: 36px;
  margin: 15px 0 20px;
}

.empresa-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Tag */
.tag {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Locations */
.empresa-locations {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.location {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: 0.3s;
}
.location:hover {
  transform: translateX(5px);
}
.location .icon {
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 50%;
  position: relative;
}

/* Puntito tipo mapa */
.location .icon::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 15px;
}

.location h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.location span {
  font-size: 13px;
  color: var(--gray);
}
/* =========================
   CONTACTO
========================= */

.contacto {
  background: #f8fafc;
}

/* Grid */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* Info */
.contacto-info h2 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.contacto-info p {
  color: var(--gray);
  margin-bottom: 30px;
}

/* Datos */
.contacto-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-data h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.contacto-data a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

/* Form */
.contacto-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

/* Grid del form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  flex-direction: column;
  height: 100%;   
}

/* Inputs */
.form-grid input,
.form-grid textarea {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
}

/* Textarea ocupa todo */
.form-grid textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: none;
}

/* Botón */
.form-grid button {
  grid-column: span 2;
  margin-top: 10px;
}

/* Focus */
.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--green);
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}
/* =========================
   FOOTER
========================= */

.footer {
  background: #0b1220;
  color: #cbd5f5;
  padding-top: 60px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

/* Marca */
.footer-brand h3 {
  font-size: 24px;
  color: white;
}

.footer-brand h3 span {
  color: var(--green);
}

.footer-brand p {
  margin-top: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Columnas */
.footer-col h4 {
  color: #22c55e;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Items */
.footer-item {
  margin-bottom: 15px;
}

.footer-item strong {
  display: block;
  color: white;
  font-size: 14px;
}

.footer-item span {
  font-size: 13px;
  color: #94a3b8;
}

/* Contacto */
.footer-contact a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: #22c55e;
}

/* CEO */
.footer-ceo {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-ceo span {
  font-size: 12px;
  color: #64748b;
}

.footer-ceo strong {
  display: block;
  color: white;
}

.footer-ceo p {
  font-size: 13px;
  color: #94a3b8;
}
 
/* Footer Social */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

/* Botón */
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  transition: all 0.3s ease;
}

/* Icono */
.social-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/* Hover */
.social-btn:hover {
  background: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34,197,94,0.3);
}

.social-btn:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
}
/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* =========================
   VENTAJAS
========================= */

.ventajas {
  background: #f8fafc;
  text-align: center;
}

/* Header */
.ventajas-header {
  margin-bottom: 50px;
}

.ventajas-header h2 {
  font-size: 36px;
}

/* Grid */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.ventaja-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 40px 30px;
  transition: 0.3s;
}

/* Icono */
.ventaja-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Número */
.ventaja-card h3 {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 10px;
}

/* Título */
.ventaja-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Texto */
.ventaja-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Hover */
.ventaja-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-content {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .split-content {
    flex-direction: column;
  }
  .split img {
    width: 100%;
  }
  .timeline {
    flex-direction: column;
    gap: 20px;
  }
  .timeline::before {
    left: 10px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 30px;
    text-align: left !important;
  }
  .timeline-item .content {
    padding-left: 30px;
  }
  .timeline-item.left,
  .timeline-item.right {
    align-self: flex-start;
    padding: 0 0 0 30px;
  }
  .timeline-icon {
    left: 10px;
  }	
  .hero h1 {
    font-size: 56px;
	font-weight: 700;
  }
  .nav-links {
    display: none; /* después podés hacer menú mobile */
  }
  .empresa-grid {
    grid-template-columns: 1fr;
  }
  .empresa-locations {
    flex-direction: column;
  }	
  .productos-grid {
    grid-template-columns: 1fr;
  }	
  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }	
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid textarea,
  .form-grid button {
    grid-column: span 1;
  }	
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }	
  .ventajas-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 100px 20px;
  }	
  .hero-stats {
    grid-template-columns: repeat(2, 1fr); /* 👈 clave */
    gap: 15px;
  }
  .diferenciales-grid {
    grid-template-columns: 1fr;
  }	
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}