@import url("./modules/cards.css");
.section-presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px auto;
}
.container {
  width: 335px;
  height: 387px;
  overflow: hidden;
  position: relative;
}
.services {
  display: flex;
  align-items: center;
  width: 335px;
  height: 387px;
  left: -80px;
  background-color: var(--400);
  position: absolute;
  clip-path: path("M325.023 88.2221L177.523 2.80423C171.323 -0.785978 163.677 -0.785982 157.477 2.80422L9.97724 88.2221C3.80205 91.7982 0 98.3936 0 105.529V275.941C0 283.093 3.81896 289.7 10.016 293.27L157.516 378.248C163.696 381.808 171.304 381.808 177.484 378.248L324.984 293.27C331.181 289.7 335 283.093 335 275.941V105.529C335 98.3936 331.198 91.7982 325.023 88.2221Z");
  -webkit-clip-path: path("M325.023 88.2221L177.523 2.80423C171.323 -0.785978 163.677 -0.785982 157.477 2.80422L9.97724 88.2221C3.80205 91.7982 0 98.3936 0 105.529V275.941C0 283.093 3.81896 289.7 10.016 293.27L157.516 378.248C163.696 381.808 171.304 381.808 177.484 378.248L324.984 293.27C331.181 289.7 335 283.093 335 275.941V105.529C335 98.3936 331.198 91.7982 325.023 88.2221Z");
}
.services__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 20px;
  gap: 24px;
}
.item-1, .item-2, .item-3, .item-cta {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 4px 20px 5px 10px;
  border-radius: 10px;
  background-color: var(--200);
  color: var(--800);
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.item-1 {
  width: 152px;
  height: 27px;
}
.item-2 {
  width: 170px;
  height: 27px;
}
.item-cta {
  width: 150px;
  height: 27px;
}
.item-1:hover, .item-2:hover, .item-3:hover, .item-cta:hover {
  background-color: var(--300);
}
.img__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 387px;
  height: 387px;
}
.img__container img {
  width: 100%;
  height: 387px;
  position: relative;
  top: -78px;
  right: -71px;
  overflow: hidden;
  background: transparent;
}

.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: auto;
  background-color: var(--800);
  border-radius: 20px;
  padding: 10px;
  margin: 50px auto;
}
.about-us__title {
  font-size: 2.0rem;
  color: var(--50);
  text-align: center;
  margin: 8px auto 24px auto;
}
.about-us__text {
  font-size: 1.6rem;
  color: var(--50);
  text-align: center;
  margin: 0 auto 24px auto;
}
.about-us__subtitle {
  font-size: 1.6rem;
  color: var(--50);
  text-align: center;
  margin: 0 auto 24px auto;
}
.about-us__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-us__item {
  font-size: 1.6rem;
  color: var(--50);
  text-align: center;
}
.contact-us {
  padding: 4rem 2rem;
  background-color: var(--50);
  text-align: center;
}
.contact-us h2 {
  font-size: 2.4rem;
  color: var(--950);
  margin-bottom: 1rem;
}
.contact-us p {
  font-size: 1.6rem;
  color: var(--950);
  margin-bottom: 2rem;
  margin: 20px auto;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--950);
  font-weight: 500;
  font-size: 1.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1,6rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}
.submit-btn {
  background-color: var(--800);
  color: var(--50);
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: #0056b3;
}
.map {
  width: 100%;
  margin: 50px auto;
}
.map__title {
  font-size: 2.0rem;
  color: var(--800);
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 744px) {
  .section-presentation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .presentation {
    align-items: stretch;
    margin-left: 50px;
  }
  .presentation__text {
    font-size: 2.0rem;
    text-align: left;
    line-height: 1.5;
  }
  .item-1, .item-2, .item-3, .item-cta {
    align-items: left;
    border-radius: 20px;
    background: var(--500);
    color: var(--100);
    padding-left: 10px;
  }
  .img__container img {
    width: 320px;
    height: 320px;
    right: 0;
    top: 0;
  }
  .container {
    height: auto;
    overflow: visible;
  }
  .services {
    position: relative;
    left: 0;
    clip-path: none;
    -webkit-clip-path: none;
    width: auto;
    height: auto;
    background: none;
    margin-left: 50px;
  }
  .services__container {
    position: relative;
    right: 0;
  }
  .item-1, .item-2, .item-3, .item-cta {
    justify-content: left;
  }
  .contact-us {
    padding: 2rem 1rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  
/*------------Section Servicios--------------------*/
  .section-servicios {
    margin-top: 100px;
  }
  .section-servicios__container {
    margin: 0 auto;
    max-width: 550px;
  }
/*------------Section About US--------------------*/
  .about-us {
    width: 600px;
  }
}
@media (min-width: 1100px) {
  .section-presentation {
    width: 100%;
    height: auto;
  }
  .presentation__text {
    font-size: 2.8rem;
    width: 600px;
  }
  
  .item-1, .item-2, .item-3, .item-cta {
    font-size: 2.4rem;
    display: flex;
    align-items: left;
  }
  .item-1 {
    width: 242px;
    height: 35px;
  }
  .item-2 {
    width: 284px;
    height: 35px;
  }
  .item-3 {
    width: 335px;
    height: 35px;
  }
  .item-cta {
    width: 229px;
    height: 40px;
  }
  .img__container {
    width: 550px;
    height: 550px;
    margin-top: 150px;
    margin-bottom: 50px;

  }
  .img__container img {
    width: 90%;
    height: 90%;
    right: 0;
    top: 0;
  }
  .section-servicios__container {
    max-width: 1052px;
    border: 3px solid var(--800);
    padding: 32px;
    border-radius: 20px;
  }
  .about-us {
    width: 1000px;
    height: 600px;
    margin-top: 150px;
  }
  .about-us img {
    width: 100px;
    height: auto;
  }
  .about-us__title {
    font-size: 4.0rem;
    
  }
  .about-us__text {
    font-size: 2.2rem;
    width: 800px;
  }
  .about-us__subtitle {
    font-size: 2.4rem;
  }
  .about-us__item {
    font-size: 2.4rem;
  }
  .contact-us__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .contact-us__cta h2 {
    font-size: 4.0rem;
    text-align: center;
  }
  .contact-us p {
    font-size: 2.4rem;
    text-align: center;
  }
  main svg {
    width: 100%;
    height: auto;
    display: block;
  }
}

