
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
  background-color: #1e3a5f;
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 250px;      /* Aumentamos aún más el tamaño */
  width: auto;
  max-width: none;    /* Evita que el contenedor lo limite */
}


nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

main {
    padding: 20px;
}
section {
    margin-bottom: 40px;
}
footer {
    background-color: #1e3a5f;
    color: white;
    text-align: center;
    padding: 10px;
}


<h3>Cocina</h3>
<div class="before-after">
  <img src="assets/images/kitchen_before.jpg" alt="Antes - Cocina">
  <img src="assets/images/kitchen_after.jpg" alt="Después - Cocina">
</div>

<h3>Baño</h3>
<div class="before-after">
  <img src="assets/images/bathroom_before.jpg" alt="Antes - Baño">
  <img src="assets/images/bathroom_after.jpg" alt="Después - Baño">
</div>
.before-after img {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover; /* recorta para encajar bien sin deformar */
  margin: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

img[alt="Después - Baño"] {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
img[alt="Antes - Baño"] {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bathroom_after img {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover; /* recorta para encajar bien sin deformar */
  margin: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.bathroom_before img {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover; /* recorta para encajar bien sin deformar */
  margin: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.kitchen_before img {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover; /* recorta para encajar bien sin deformar */
  margin: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  margin: 0 8px;
  
  transition: transform 0.2s ease;
  vertical-align: middle;
 /* filter: brightness(0) invert(1); */ /* comenta esta línea */
}


.social-icons img:hover {
  transform: scale(1.15);
}

