* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

@media (min-width: 768px) {
  .header {
    padding: 20px 60px;
  }
}

.header__menu {
  display: none;
}

.header__logo {
  width: 64px;
  height: 60px;
}

.header__hamburger-menu {
  width: 36px;
  height: 32px;
}

@media (min-width: 768px) {
  .header__hamburger-menu {
    display: none;
  }

  .header__menu {
    display: flex;
    gap: 30px;
  }
  .header__link {
    color: inherit;
    text-decoration: none;
    font-family: Roboto;
    font-weight: 700;
    font-size: 20px;
  }
  .header__nav-item {
    list-style: none;
  }
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  background-image: radial-gradient(#dcdcdc 0.8px, transparent 0.8px);
  background-size: 18px 18px;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .hero__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.hero__img-container {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero__title-container {
    width: 291px;
    text-align: left;
  }
}

.hero__img {
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;

  border: 4px solid rgba(0, 119, 255, 0.326);

  box-shadow:
    0 15px 40px rgba(0, 229, 255, 0.2),
    0 0 60px rgba(29, 233, 182, 0.15);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero__img:hover {
  transform: scale(1.05);
  box-shadow:
    0 20px 50px rgba(0, 229, 255, 0.3),
    0 0 80px rgba(29, 233, 182, 0.25);
}

.hero__title-container {
  width: 291px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__title-container {
    text-align: left;
    /* width: auto; */
  }
}

.hero__title {
  font-size: 48px;
  text-align: center;
  line-height: 1.1;
  background: linear-gradient(135deg, #00aeff 0%, #9e1de9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero__title {
    text-align: right;
  }
}

.quien-soy {
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 80px 31px;
  gap: 40px;
}

@media (min-width: 768px) {
  .quien-soy {
    flex-direction: row-reverse;
    justify-content: center;
  }
}

.quien-soy__textos {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 312px;
}

@media (min-width: 768px) {
  .quien-soy__textos {
    width: 532px;
  }
}

.quien-soy__title,
.quien-soy__parrafo {
  text-align: center;
}

.quien-soy__title{
  color: #00E5FF;
}

@media (min-width: 768px) {
  .quien-soy__title,
  .quien-soy__parrafo {
    text-align: start;
  }
}

.quien-soy__img {
  width: 80px;
  height: 80px;
}

@media (min-width: 768px) {
  .quien-soy__img {
    width: 221px;
    height: 221px;
    margin-right: 80px;
  }
}

.servicios {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
}


.servicios__cards {
  display: grid;
  gap: 60px;
  justify-content: center;
}

.servicios__title{
  color: #9e1de9;
}

@media (min-width: 768px) {
  .servicios__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 30px 20px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card__img {
  width: 138px;
  height: 138px;
}

.card__paragraph {
  font-size: 16px;
  /* width: 262px; */
}

.card__title {
  font-size: 24px;
}

.contacto {
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

@media (min-width: 768px) {
  .contacto {
    flex-direction: row;
    align-items: self-start;
    gap: 50px;
  }
}

.contacto__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #00E5FF;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 335px;
}

@media (min-width: 768px) {
  .form {
    width: 376px;
  }
}

.form__input-email,
.form__input-name,
.form__button {
  height: 45px;
  border: none;
}

.form__input-text {
  height: 113px;
}

.form__button {
  background-color: #00E5FF;
  font-size: 24px;
  margin-top: 50px;
  font-size: 16px;
  font-weight: 700;
}

.form__label {
  font-size: 13px;
  font-weight: 400;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 19px;
  padding: 50px 17px 70px 17px;
  background-color: #dbdbdb;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 100px 80px;
    background-color: #ffffff;
    background-image: radial-gradient(#dcdcdc 0.8px, transparent 0.8px);
    background-size: 18px 18px;
  }
}

.footer__logo-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  width: 77px;
  height: 71px;
}

.footer__copyright {
  font-size: 13px;
  font-weight: 400;
}

.redes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.redes__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 10px;
}
