.background {
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #081c2c, #0b2539);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite; /* Gradiente animado */
  font-family: Arial, sans-serif;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 10s infinite ease-in-out;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2; /* Ensure text is above the circles */
}
.circle:nth-child(1) {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 15%;
  animation-duration: 12s;
}
.circle:nth-child(2) {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 30%;
  animation-duration: 8s;
}
.circle:nth-child(3) {
  width: 220px;
  height: 220px;
  bottom: 15%;
  right: 10%;
  animation-duration: 15s;
}
.circle:nth-child(4) {
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: 5%;
  animation-duration: 10s;
}
.circle:nth-child(5) {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 20%;
  animation-duration: 14s;
}
.circle:nth-child(6) {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 50%;
  animation-duration: 11s;
}
.circle:nth-child(7) {
  width: 120px;
  height: 120px;
  top: 5%;
  right: 10%;
  animation-duration: 9s;
}
.circle:nth-child(8) {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 70%;
  animation-duration: 7s;
}
.circle:nth-child(9) {
  width: 160px;
  height: 160px;
  top: 50%;
  right: 30%;
  animation-duration: 13s;
}
.circle:nth-child(10) {
  width: 130px;
  height: 130px;
  bottom: 25%;
  left: 20%;
  animation-duration: 12s;
}
.circle:nth-child(11) {
  width: 110px;
  height: 110px;
  top: 15%;
  left: 60%;
  animation-duration: 10s;
}
.circle:nth-child(12) {
  width: 190px;
  height: 190px;
  bottom: 5%;
  right: 5%;
  animation-duration: 11s;
}


@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}



@media (max-width: 1100px) {

  .circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 15%;
    animation-duration: 12s;
  }
  .circle:nth-child(2) {
    width: 110px;
    height: 110px;
    top: 40%;
    left: 30%;
    animation-duration: 8s;
  }
  .circle:nth-child(3) {
    width: 90px;
    height: 90px;
    bottom: 15%;
    right: 10%;
    animation-duration: 15s;
  }
  .circle:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 5%;
    left: 5%;
    animation-duration: 10s;
  }
  .circle:nth-child(5) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-duration: 14s;
  }
  .circle:nth-child(6) {
    width: 70px;
  height: 70px;
  bottom: 30%;
  left: 50%;
  animation-duration: 11s;

  }
  .circle:nth-child(7) {
 
    display: none;

  }
  .circle:nth-child(8) {

    display: none;

  }
  .circle:nth-child(9) {
  
    display: none;

  }
  .circle:nth-child(10) {
    display: none;

  }
  .circle:nth-child(11) {
    
    display: none;

  }
  .circle:nth-child(12) {
    display: none;
  }


}

/* Styles font*/

.source-code-pro-regular {
  font-family: "Source Code Pro", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.source-code-pro-semi-bold {
  font-family: "Source Code Pro", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.source-code-pro-bold {
  font-family: "Source Code Pro", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.mukta-regular {
  font-family: "Mukta", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 18px;
}

.mukta-regular {
  font-family: "Mukta", serif;
  font-weight: 400;
  font-style: normal;
}

.mukta-regular-medium {
  font-family: "Mukta", serif;
  font-weight: 500;
  font-style: normal;
}

.instrument-sans {
  font-family: "Instrument Sans", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.color-white {
  color: #e2e2e2;
}

.color-dark-blue {
  color: #091e2f;
}

.color-section {
  color: #e2141b;
}

.main-subtitle {
  font-size: 1rem;
}

.main-title {
  font-size: 3.5rem;
  margin-bottom: 0.6rem;
  text-align: center;
}

.buttons {
  margin-top: 3rem;
  gap: 20px;
}

.button-contact,
.button-about {
  width: 140px;
  height: 40px;
  border: none;
  font-size: 1.1rem;
  border-radius: 5px;
}

.button-contact {
  background-color: #ed3237;
  color: #fff;
}

.button-about {
  background: none;
  color: #fff;
  border: 1px solid #fff;
}

.aside-title {
  width: 400px;
}

.title-card {
  font-size: 1.4rem;
  color: #091e2f;
}
.text-card {
  font-size: 1.1rem;
  color: #566876;
}

.testimonials-title {
  font-size: 1.2rem;
}

.testimonials-subtitle {
  font-size: 1.1rem;
}

.footer-title {
  font-size: 1.3rem;
}

/* background and margin*/

.background-dark-blue {
  background-color: #0e2130;
}

.height-about {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-subtitle {
  font-size: 1.5rem;
}

.section-title {
  font-size: 2rem;
}

.testimonials-main-title {
  font-size: 2.5rem;
}

.section-text {
  font-size: 1.2rem;
  line-height: 25px;
  color: #566876;
}
.sub-text {
  margin: 1rem 0 0 0;
}

.services-container {
  margin: 8rem auto;
}

.text-about {
  margin: 1rem 0 0 0;
}

.title-card {
  margin: 1rem 0 0.8rem 0;
}

.height-container {
  padding: 4rem 0 4rem 0;
  height:max-content
}

.container-testimonials {
  margin: 8rem auto 0 auto;
}

.testimonials-subtitle {
  margin: 3rem 0 1rem 0;
}

.testimonials {
  margin: 6rem auto 0 auto ;
  max-width: 1100px;

}

.testimonial {
  background-color: aliceblue;
  padding: 2rem 2rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.testimonials-icon {
  width: 20%;
  margin-right: 1rem;
}

.section-contact {
  height: 150px;
}
.testimonials-text {
  color: #566876;
}

/* Footer */

.footer {
  margin-top: 4rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: #091e2f;
}

.footer-text {
  color: #566876;
}

.copyright-container {
  margin: 2rem 0 1rem 0;
  color: #091e2f;
}

.color-blue {
  color: #96a4b0;
}
