/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f0f8ff;
  color: #222;
  padding: 20px;
}

/* Encabezado */
header {
  background-color: #0056b3;
  color: white;
  padding: 30px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  background-color: #e0eaff;
}

  a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.1em;
}

  a:hover {
  text-decoration: underline;
}

/* Secciones */
section {
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Títulos */
h1, h2, h3 {
  color: #0056b3;
  text-align: center;
  margin-bottom: 20px;
}

/* Galerías */
.galeria-inicio,
.galeria-trabajos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.galeria-trabajos figure,
.galeria-inicio figure {
  text-align: center;
  max-width: 300px;
}

.galeria-trabajos img,
.galeria-inicio img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.galeria-trabajos img:hover,
.galeria-inicio img:hover {
  transform: scale(1.05);
}
/* Imagen en el index (inicio) */
.imagen-inicio {
  display: block;
  margin: 20px auto;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Imagen en sobre nosotros */
.imagen-sobre-nosotros {
  display: block;
  margin: 20px auto;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.tarjeta {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto 20px;
  text-align: center;
}

.galeria-trabajos figcaption,
.galeria-inicio figcaption {
  margin-top: 8px;
  font-style: italic;
  font-weight: bold;
  color: #003f7f;
  font-size: 0.95em;
}

/* Sección sobre nosotros */
.sobre-nosotros {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre-nosotros img {
  width: 300px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* Formulario */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="submit"] {
  background-color: #0056b3;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #003f8a;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #e0eaff;
  margin-top: 40px;
  font-size: 0.9em;
  color: #333;
}
