/* Base */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  text-align: center;
}

h1, h2 {
  font-weight: 800;
  margin-bottom: 0.5em;
}

p {
  max-width: 800px;
  margin-bottom: 1em;
  text-align: center;
}

a {
  color: #0a66c2;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 1rem 0;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
  padding: 0rem 1rem;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin: 1rem 0;
  text-align: center;
}

.navbar {
  margin-top: 2rem;
}

.navbar a {
  margin: 0 1rem;
  color: #cbd5e1;
}

/* Button */
.btn-primary {
  background-color: #0ea5e9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #0284c7;
}

/* Sections */
.section {
  padding: 1rem 0;
  text-align: center;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}


.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra horizontalmente */
  text-align: center;
}

.footer .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra los hijos */
  text-align: center;
}

.footer p,
.footer nav {
  margin: 0.5rem 0;
}
.card:hover {
  transform: translateY(-5px);
}

/* Badges */
.badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.badge {
  background-color: #e2e8f0;
  color: #1e293b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 1rem;
  text-align: center;
}

.footer a {
  color: #93c5fd;
 text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer p {
  text-align: center;
  margin: 0.5rem 0;
}

