

/* Estilos base */
.header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.header-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.header-offer {
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.header-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 500px;
}

.header-image {
  flex: 1 1 40%;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.header-img {
  max-width: 70%;
  height: auto;

}

/* Media Queries para responsividad */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .header-content {
    order: 2;
    text-align: center;
  }
  
  .header-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .header-social-links {
    justify-content: center;
  }
  
  .header-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .header-offer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 1.8rem;
  }
  
  .header-offer {
    font-size: 1rem;
  }
}