* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #1f2937;
}
header {
  background-color: #102445;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
header h1 {
  font-size: 3rem;
  font-weight: 800;
}
header p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
nav {
  display: flex;
  justify-content: center;
  background: #00d89e;
  padding: 1rem;
}
nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover {
  color: #102445;
}
.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.logo svg {
  max-width: 150px;
}
section {
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: auto;
}
h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #102445;
}

.services,
.team,
.portfolio {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.2s;
}
.card ul {
  list-style: none;
  padding: 0;
}
.card ul li {
  margin-bottom: 0.3rem;
  color: #4b5563;
  font-size: 15px;
  display: flex;
}
.card ul li::before {
  content: '•';
  color: #00d89e;
  margin-right: 0.5rem;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 1rem;
  font-size: 20px;
  color: #102445;
}
.portfolio img {
  width: 100%;
  border-radius: 8px;
}
form {
  display: grid;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
input,
textarea {
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
}
button {
  background: #102445;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}
button:hover {
  background: #1e40af;
}
footer {
  background: #102445;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
      display: flex
;
    justify-content: space-between;
}
.respuesta {
  font-weight: bold;
}
.icon-footer {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  display: block;
    background-size: cover;
  background-repeat: no-repeat;
}


footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#por-que-elegirnos {
  text-align: center;
}


#por-que-elegirnos p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.quienes-container {
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: #374151;
}