body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  background: url(./img/fondo\ portafolio.jpeg) no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

header {
  background-color: rgba(253, 226, 228, 0.85);
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 5.2em;
  color: #e1638d;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #ff248a;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: white;
  transform: scale(1.1);
}


/* Secciones con fondo semitransparente */
section {
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(255, 248, 240, 0.85);
  border-radius: 8px;
  margin: 20px;
}

h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 3em;
  color: #df380e;
}

/* Zona de Galeria */
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trabajo {
  width: 250px;
  background: white; 
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden; 
  cursor: pointer;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column; 
  align-items: center;
}

.trabajo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.trabajo h3, 
.trabajo h4 {
  margin: 10px 0 0 0;
  font-size: 1.1em;
  color: #444;
  text-align: center;
}

.trabajo:hover {
  transform: scale(1.05);
}


/* Formulario de contacto */
#contacto form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}

button {
  background-color: #ffc8dd;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

footer {
  background-color: rgba(252, 213, 206, 0.85);
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* MODALES */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-contenido {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  text-align: left;
  position: relative;
}

.modal-contenido img {
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
}

.cerrar {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
