body {
  font-family: 'Nunito', sans-serif;
  background-color: #fff;
  color: #fff;
}

/* PORTAFOLIO */
.portafolio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.portafolio h1 {
  text-align: center;
  font-size: 40px;
  color: #d60d0d;
  margin-bottom: 10px;
}

.slogan {
  text-align: center;
  color: #111;
  margin-bottom: 60px;
}

/* BLOQUES */
.trabajo-bloque {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 70px;
  background: #111;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(189, 18, 18, 0.1);
}

.trabajo-texto h2 {
  border-left: 6px solid #ee1010;
  padding-left: 12px;
  margin-bottom: 10px;
}

/* CARRUSEL */
.trabajo-carrusel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.trabajo-carrusel img {
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
}


.volver-inicio {
    text-align: center;
    padding: 50px 20px;
    background: #0c0c0c;
}

.btn-volver {
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-volver:hover {
    background: #fff;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contacto-contenedor h1 {
    font-size: 30px;
  }
}