.services {
  background: #fff8e8;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 780px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.services h3 {
  font-size: 26px;
  color: #2f2f2f;
  margin-bottom: 20px;
  border-left: 6px solid #c27a00;
  padding-left: 12px;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services li {
  margin-bottom: 12px;
}

.services a {
  display: block;
  text-decoration: none;
  background: #ffffff;
  color: #2f2f2f;
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 5px solid #c27a00;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services a:hover {
  background: #c27a00;
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 8px 18px rgba(194, 122, 0, 0.25);
}


.hero-bloque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.hero-text {
  flex: 2;
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

img.foto-francisco {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #c27a00;
  box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}


/* 📱 RESPONSIVE PARA CELULAR */
@media (max-width: 768px) {

  .hero-bloque {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    flex: unset;
    text-align: center;
  }

  .hero-img {
    margin-top: 20px;
  }

  img.foto-francisco {
    width: 140px;
    height: 140px;
  }
}


.servicios-arquitectura {
  background: #f8f9fa;
  padding: 50px 20px;
}

.contenedor-servicios {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.servicios-arquitectura h2 {
  text-align: center;
  font-size: 30px;
  color: #1f3c88;
  margin-bottom: 30px;
  font-weight: 700;
}

.lista-servicios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.lista-servicios li {
  background: #eef4ff;
  color: #333;
  padding: 16px 18px;
  border-left: 5px solid #1f3c88;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lista-servicios li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
}



.banner-full {
  width: 100vw;              /* ocupa todo el ancho de la pantalla */
  margin-left: calc(-50vw + 50%); /* rompe el contenedor centrado */
}

.banner-full img {
  width: 50%;
  height: auto;
  display: block;
}