
/* SECCIÓN DE ACERCA DE NOSOTROS */

.stores-section {
  margin-top: 70px;
  padding: 100px 6%;
  background-color: #ffffff;
  margin-bottom: -60px;
}

.stores-wrapper {
  display: flex;
  justify-content: center;
}

.stores-image {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.stores-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.stores-card {
  position: absolute;
  top: 50%;
  right: -80px;     
  transform: translateY(-50%);
  width: 480px;

  background: #ffffff;
  border-radius: 24px;
  padding: 50px 45px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stores-card h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #000;
}

.stores-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 36px;
}

@media (max-width: 992px) {
  .stores-image img {
    height: 420px;
  }

  .stores-card {
    top: auto;
    bottom: -190px;        
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 85%;
    padding: 40px 35px;
  }

  .stores-wrapper {
    margin-bottom: 120px;  
  }

  .stores-card h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .stores-image img {
    height: 320px;
  }

  .stores-card {
    bottom: -210px;
    width: 92%;
    padding: 32px 28px;
  }

  .stores-card h2 {
    font-size: 24px;
  }

  .stores-card p {
    font-size: 15px;
  }
}

@media (max-width: 452px) {
  .stores-image img {
    height: 320px;
  }

  .stores-card {
    bottom: -230px;
    width: 92%;
    padding: 32px 28px;
  }

  .stores-wrapper {
    margin-bottom: 200px;  
  }

  .stores-card h2 {
    font-size: 24px;
  }

  .stores-card p {
    font-size: 15px;
  }
}

@media (max-width: 424px) {
  .stores-image img {
    height: 320px;
  }

  .stores-card {
    bottom: -280px;
    width: 92%;
    padding: 32px 28px;
  }

  .stores-wrapper {
    margin-bottom: 220px;    
  }

  .stores-card h2 {
    font-size: 24px;
  }

  .stores-card p {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .stores-image img {
    height: 320px;
  }

  .stores-card {
    bottom: -280px;
    width: 92%;
    padding: 32px 28px;
  }

  .stores-card h2 {
    font-size: 24px;
  }

  .stores-card p {
    font-size: 15px;
  }
}

@media (max-width: 340px) {
  .stores-image img {
    height: 320px;
  }

  .stores-card {
    bottom: -380px;
    width: 92%;
    padding: 32px 28px;
  }

  .stores-wrapper {
    margin-bottom: 310px;
  }

  .stores-card h2 {
    font-size: 24px;
  }

  .stores-card p {
    font-size: 15px;
  }
}

/*****************************************************************/

/* Misión y Visión */

.about-section {
  padding: 120px 10%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

.about-block {
  max-width: 480px;
  margin: 0 auto;
}

.about-block h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.about-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.about-block span {
  font-size: 20px;
}

.about-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 15px;
}

.about-divider {
  width: 2px;
  height: 120%;
  background: #000;
  opacity: 0.15;
}

.about-block:hover h2 {
  transform: translateX(5px);
}

.about-block h2 {
  transition: transform 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-divider {
    display: none;
  }
}

/**************************************************************/

/* SECCIÓN HISTORIA */

.historia-section {
  margin-top: -40px;
  padding: 100px 6%;
  background-color: #ffffff;
  margin-bottom: -60px;
}

.historia-wrapper {
  display: flex;
  justify-content: center;
}

.historia-image {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.historia-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.historia-card {
  position: absolute;
  top: 50%;
  left: -80px;     
  transform: translateY(-50%);
  width: 480px;

  background: #ffffff;
  border-radius: 24px;
  padding: 50px 45px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.historia-card h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #000;
}

.historia-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 36px;
}


@media (max-width: 992px) {
  .historia-image img {
    height: 420px;
  }

  .historia-card {
    top: auto;
    bottom: -190px;        
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 85%;
    padding: 40px 35px;
  }

  .historia-wrapper {
    margin-bottom: 120px;  
  }

  .historia-card h2 {
    font-size: 30px;
  }
}

@media (max-width: 920px) {
  .historia-image img {
    height: 420px;
  }

  .historia-card {
    top: auto;
    bottom: -210px;        
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 85%;
    padding: 40px 35px;
  }

  .historia-wrapper {
    margin-bottom: 230px;  
  }

  .historia-card h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -210px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 190px;  
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -220px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -260px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 270px;  
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 470px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -320px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 290px;  
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 452px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -320px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 290px;  
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 424px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -310px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 300px;    
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -340px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 370px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -380px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 340px;
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

@media (max-width: 325px) {
  .historia-image img {
    height: 320px;
  }

  .historia-card {
    bottom: -450px;
    width: 92%;
    padding: 32px 28px;
  }

  .historia-wrapper {
    margin-bottom: 400px;
  }

  .historia-card h2 {
    font-size: 24px;
  }

  .historia-card p {
    font-size: 15px;
  }
}

/**************************************************************/

/* Identidad */

.identity-section {
  padding: 100px 10%;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.identity-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.identity-logo img {
  max-width: 230px;
  height: auto;
  transition: all 0.4s ease;
}

.identity-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.identity-text {
  text-align: center;
  max-width: 600px;
}

.identity-text h1 {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.identity-text h4 {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .identity-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .identity-logo img {
    max-width: 190px;
  }

  .identity-text h1 {
    font-size: 30px;
  }
}
