body {
  margin: 0;
  font-family: "Oswald", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.hero-section {
  position: relative;
  background-color: white;
  overflow: hidden;
  padding: 60px 10%;
  padding-top: 100px;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to right, #880505, #440808);
  clip-path: ellipse(75% 100% at 50% 0%);
  
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #9c690a;
  clip-path: ellipse(75% 100% at 50% 100%);
}

.content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.quote {
  background-color: #b9b486;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 10%;
  /* padding-left: 200px; */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  /* position: absolute; */

}

.quote .icon {
  font-size: 24px;
  color: #2d7fa4;
  margin-bottom: 10px;

  

}

.quote p {
  font-size: 20px;
  font-weight: bold;
  color: black;
  line-height: 1.6;
  margin-bottom: 15px;

}

.quote h3 {
  color: #313602;
  font-weight: 500;
  margin: 0;
  font-weight: bold;

}

.text {
  max-width: 550px;
  /* margin-right: 5%; */
}

.text h2 {
  color: #c2a609;
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  border-color: #440808;
}

.text p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  font-size: 18px;
}

@media (max-width: 850px) {
  .content-container {
    flex-direction: column;
    text-align: center;
  }

  .quote {
    width: 220px;
    height: 220px;
  }
}

img{
    width: 100px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 6% 120px;
  }

  .content-container {
    gap: 40px;
  }

  .text h2 {
    font-size: 28px;
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
  }

  .quote {
    width: 250px;
    height: 250px;
    /* padding: 20px; */
    /* font-size: 15px; */
    /* padding-top: 150px; */
  }

  .quote img {
    width: 65px;
  }

  .text {
    max-width: 100%;
  }

  .text h2 {
    font-size: 26px;
  }

  .text p {
    font-size: 16px;
    text-align: justify;
  }
}

/* MÓVIL PEQUEÑO */
@media (max-width: 480px) {
  .hero-section {
    /* padding: 250px 5% 110px; */
    padding-top: 100px;
    
  }

  .quote {
    width: 200px;
    height: 200px;
  }

  .quote p {
    font-size: 16px;
  }

  .quote h3 {
    font-size: 16px;
  }
}