/* =========================
   HERO BASE
========================= */
/* =========================
   HERO BASE
========================= */
.hero {
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* HERO NOSOTROS */
.hero-nosotros {
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.hero-nosotros .hero-text h1 {
  font-size: 42px;
  color: #fff;
  line-height: 1.2;
}

.hero-nosotros .hero-text p {
  color: #94a3b8;
  font-size: 16px;
  margin-top: 15px;
}

/* IMAGEN */
.hero-nosotros .hero-image {
  display: flex;
  justify-content: center;
}

.hero-nosotros .hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
@media (max-width: 480px) {

  .hero-nosotros .hero-text h1 {
    font-size: 24px;
  }

  .hero {
    padding: 50px 0;
  }

}
/* =========================
   TITLES
========================= */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: #fff;
  font-size: 30px;
}

.section-title p {
  color: #94a3b8;
}


/* =========================
   ABOUT
========================= */
.about-section {
  padding: 80px 0;
  background: #020617;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.about-card {
  background: rgba(255,255,255,0.03);
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
}


/* =========================
   TRUST
========================= */
.trust {
  padding: 80px 0;
  background: #020617;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  background: rgba(255,255,255,0.02);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.trust-item:hover {
  background: rgba(59,130,246,0.1);
}


/* =========================
   PRODUCTS
========================= */
.products {
  padding: 80px 0;
  background: #020617;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
}


/* =========================
   CTA
========================= */
.banner {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(90deg, #1e3a8a, #020617);
}

.banner h2 {
  color: #fff;
}

.banner p {
  color: #cbd5f5;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    margin-top: 20px;
  }

}