/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf5;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.service-header {
  background-color: #fcead1;
  padding: 20px;
  border-bottom: 2px solid #e5d4f4;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.header-container h1 {
  font-size: 1.8rem;
  color: #a26d9b;
  margin: 0;
  flex: 1;
}

.header-contact {
  text-align: right;
  min-width: 220px;
  font-size: 14px;
  color: #555;
}

.header-contact p {
  margin: 4px 0;
}

.header-contact i {
  margin-right: 6px;
  color: #a26d9b;
}

/* Main Layout */
.service-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.form-section {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.form-section h2 {
  color: #a26d9b;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

form input,
form select,
form textarea,
form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

form button {
  background-color: #a26d9b;
  color: white;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #8b5285;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 8px;
  display: none;
}

/* Info Section */
.info-section {
  flex: 2;
  min-width: 300px;
  padding: 20px;
  background-color: #fffaf5;
  border-radius: 10px;
}

.info-section h2 {
  color: #a26d9b;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.info-section p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.service-image {
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.reasons-block {
  background-color: #f7e8ff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.reasons-block h3 {
  margin-top: 0;
  color: #a26d9b;
}

.reasons-block ul {
  list-style: none;
  padding: 0;
}

.reasons-block ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.reasons-block ul li i {
  color: #a26d9b;
  font-size: 16px;
}

/* Footer */
.site-footer {
  background-color: #fef3f0;
  color: #333;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-brand h3 {
  margin: 10px 0 5px;
  color: #a26d9b;
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  color: #a26d9b;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #555;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #e6cfcf;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}
/* Ajustar el tamaño del contenedor del formulario */
.form-section {
  background-color: #ffffff; /* Fondo blanco */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave para destacar */
  max-width: 800px; /* Ajusta el ancho máximo del contenedor */
  margin: 40px auto; /* Centrado automático con márgenes */
}

/* Asegúrate de que los inputs y el textarea se ajusten al contenedor */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 12px; /* Mayor espacio dentro del input */
  margin-bottom: 15px; /* Espaciado entre los elementos */
  border-radius: 8px; /* Bordes redondeados */
  border: 1px solid #ddd; /* Color de borde sutil */
  box-sizing: border-box; /* Asegura que el padding no haga que el input se desborde */
}

/* Mejorar los botones */
button[type="button"] {
  background-color: #a26d9b;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s;
}

button[type="button"]:hover {
  background-color: #8e4f7e; /* Color al pasar el ratón */
}
