.home-hero-section {
  padding: 20px 0 20px 0;
  text-align: center;
  background-image: url('../img/desguaceFondo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.home-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: -1;
}

.home-hero-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: var(--color-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo responsive */
.home-hero-title img {
  max-width: 35%;
  height: auto;
  display: inline-block;
}

.home-hero-subtitle {
  font-size: 1.13rem;
  border: white;
  color: var(--color-light);
}

.nosotros {
  margin: 0 20px 0 20px;
  text-align: center;
  color: #2c3642;
  background: var(--color-white);
  font-size: 1.1rem;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

/* Info Section */
.home-info {
  padding: 20px 0 20px 0;
  text-align: center;
  color: var(--color-white);
}

/* Grids */
.home-info-grid, .home-services-grid {
  padding: 0 20px 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Cards */
.home-info-card, .home-service-card {
  background: var(--color-card);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-info-card:hover, .home-service-card:hover {
  box-shadow: 0 8px 28px var(--color-secondary-dark);
  transform: translateY(-3px) scale(1.03);
}

/* Iconos */
.home-icon {
  color: var(--color-secondary);
  font-size: 2.18em;
  margin-bottom: 8px;
}

/* Heading in cards */
.home-info-card h3,
.home-service-card h3 {
  font-size: 1.07em;
  color: var(--color-secondary-dark);
  margin: 8px 0 8px;
}

/* Paragraphs */
.home-info-card p,
.home-service-card p {
  font-size: 0.97em;
  color: #2c3642;
  margin: 7px 0 0;
}

/* Links and text */
.home-text-link {
  margin-top: 5px;
  font-weight: bold;
  display: block;
}

.home-wallapop-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.home-wallapop-link .home-text-link {
  text-decoration: underline;
  color: var(--color-secondary);
}

.home-wallapop-link:hover .home-text-link {
  color: var(--color-secondary-dark);
}

/* Phone icon spacing */
.home-info-card p i.fa-phone {
  margin-right: 8px;
  color: var(--color-secondary-dark);
}

/* Services Section */
.home-services {
  padding: 20px 0 20px 0;
  text-align: center;
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 700px) {
  .home-services-grid, .home-info-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .home-hero-title {
    font-size: 1.4rem;
  }

  .home-hero-title img {
    max-width: 70%; /* Logo más pequeño en móviles */
  }

  .home-section-title {
    font-size: 1.08rem;
  }
}
