/* estilos_contacto.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fefefe;
  color: #333;
}

header {
  background-color: #2c3e50;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
  border-radius: 5px;
}

.nav-links a:hover {
  background-color: #3a5169;
}

.contacto-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
}

.contacto-section h1 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.info-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.detalle h2 {
  font-size: 1.3rem;
  color: #34495e;
  margin-bottom: 0.5rem;
}

.detalle p,
.detalle a {
  font-size: 1rem;
  color: #555;
  text-decoration: none;
}

.formulario {
  background-color: #f4f7fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.formulario h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.formulario button {
  padding: 0.8rem 2rem;
  background-color: #2980b9;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}


.formulario button:hover {
  background-color: #1c5980;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #2c3e50;
  color: white;
  margin-top: 3rem;
}
.btn-iniciar {
  background-color: #007BFF;      /* Azul */
  color: white;                   /* Texto blanco */
  border: none;                   /* Sin borde */
  padding: 12px 24px;             /* Espaciado interno */
  border-radius: 8px;             /* Bordes redondeados */
  font-size: 16px;                /* Tamaño de texto */
  cursor: pointer;                /* Cambia el cursor al pasar */
  transition: background-color 0.3s ease;
}

.btn-iniciar:hover {
  background-color: #0056b3;      /* Azul más oscuro al pasar el mouse */
}
