body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #eef5ff;
  color: #333;
}

header {
  background-color: #005bb5;
  color: white;
  text-align: center;
  padding: 60px 20px;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.nav {
  text-align: center;
  padding: 15px;
  background-color: #c8102e;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  padding: 25px;
  background-color: white;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

h2 {
  color: #c8102e;
  text-align: center;
  margin-bottom: 30px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid #005bb5;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #003f7f;
}

.telefono-grupo {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.telefono-grupo select {
  width: 30%;
}

.telefono-grupo input {
  width: 70%;
}

button[type="submit"] {
  padding: 12px 25px;
  background-color: #005bb5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  display: block;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #003f7f;
  transition: background-color 0.3s ease;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #003f7f;
  color: white;
  margin-top: 20px;
}

.servicio-box {
  background-color: #f9fbff;
  border: 1px solid #cdddf5;
  border-left: 6px solid #005bb5;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.05);
}

.servicio-box h3 {
  margin-top: 0;
  color: #c8102e;
  font-size: 20px;
}

.servicio-box p {
  font-size: 16px;
  line-height: 1.5;
}

.testimonios {
  margin-top: 40px;
}

.review-card {
  background-color: #f4f9ff;
  border: 1px solid #cdddf5;
  border-left: 6px solid #005bb5;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-size: 16px;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.review-text::before {
  content: '“';
  font-size: 40px;
  color: #005bb5;
  position: absolute;
  left: 0;
  top: -10px;
}

.review-footer {
  font-size: 14px;
  color: #555;
  border-top: 1px solid #dce9f8;
  padding-top: 10px;
}

.review-footer strong {
  display: block;
  color: #c8102e;
  font-weight: bold;
  margin-bottom: 2px;
}

/* --- estilos.css --- */

body {
  font-family: 'Arial', sans-serif;
  background-color: #eef5ff;
  margin: 0;
  padding: 0;
  color: #333;
}
.container {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h2 {
  color: #005bb5;
  text-align: center;
  margin-bottom: 20px;
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #005bb5;
  border-radius: 8px;
  font-size: 16px;
}
.telefono-grupo {
  display: flex;
  gap: 10px;
}
.telefono-grupo select {
  width: 30%;
}
.telefono-grupo input {
  width: 70%;
}
button {
  background-color: #005bb5;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}