
/* ======================= styles.css ======================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
}

.hero {
  height: 100vh;
  background: url('../assets/images/hero.jpg') center/cover;
  color: white;
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
}

.hero h1 {
  font-family: 'Playfair Display';
  font-size: 48px;
}

.btn {
  padding: 12px 20px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
}

.primary { background: #6b7d73; color: white; }
.secondary { background: transparent; border: 1px solid white; color: white; }
.dark { background: #1f2d3a; color: white; }
.gold { background: #c89b5b; color: white; }

.problems {
  text-align: center;
  padding: 60px;
}

.icons {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 30px;
}

.services {
  display: flex;
  gap: 20px;
  padding: 60px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  flex: 1;
}

.cta {
  background: #1f2d3a;
  color: white;
  padding: 60px;
}

footer {
  text-align: center;
  padding: 40px;
  background: #0f1a23;
  color: white;
}




/* ======================= EXTENSION styles.css ======================= */

.resuelve-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  background: url('../assets/images/resuelve.jpg') right/cover no-repeat;
}

.resuelve-text {
  max-width: 500px;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  padding: 40px;
}

.process-banner {
  background: #c89b5b;
  color: white;
  text-align: center;
  padding: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 40px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.pricing {
  text-align: center;
  padding: 60px;
}

.plans {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.plan {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 250px;
}

.featured {
  border: 2px solid #c89b5b;
}

.cta-final {
  background: #c89b5b;
  color: white;
  text-align: center;
  padding: 60px;
}

/* ======================= EXTENSION styles.css (DISE�1�71�1�71�0�2) ======================= */

.metrics {
  text-align: center;
  padding: 60px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 20px;
}

.problem-detail {
  text-align: center;
  padding: 30px;
}

.cta-dark {
  background: #1f2d3a;
  color: white;
  padding: 60px;
}

.steps {
  display: flex;
  gap: 20px;
  padding: 60px;
}

/* ======================= EXTENSION styles.css (OPTIMIZACION) ======================= */

.services {
  display: flex;
  justify-content: space-around;
  padding: 60px;
}

.service {
  max-width: 300px;
  text-align: center;
}

.process.dark {
  background: #2c3e50;
  color: white;
  padding: 60px;
}

.problems {
  text-align: center;
  padding: 60px;
}

.cta {
  text-align: center;
  padding: 60px;
}

/* ======================= EXTENSION styles.css (CERTIFICACIONES) ======================= */

.cert-logos {
  text-align: center;
  padding: 60px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  padding: 60px;
  gap: 20px;
}

.benefit {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.footer {
  background: #1f2d3a;
  color: white;
  text-align: center;
  padding: 20px;
}