@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --pinkV-dark: #0f0116;
  --pinkV-medium: #270238;
  --pinkV-medium-transparent: #270238b2;
  --pinkV: #93278f;
  --pinkV-transparent: rgba(147, 39, 143, 0.623);
  --color-esqueleto-transparent: rgba(239, 243, 245, 0.733);
  --color-esqueleto: rgba(220, 231, 236, 0.979);
  --blue-light: #0b92a7;
  --blue-medium: #0b3f8b;
  --blue-transparent: #082864ce;
  --blue-light-transparent: #0b92a794;
  --blue-dark: #020d22fa;
  --blue-dark-transparent: #020d22dc;
  --size-title: 2.5rem;
  --gray-medium: #373737;
  --gray-dark: 242424;
  --gray-transpárent: #20202049;
  --title: "Kanit", sans-serif;
  --paragraph: "Nunito", sans-serif;
}

body {
  background-color: var(--color-esqueleto-transparent);
}

.menu {
  background-color: #ffffff96;
  height: 70px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  font-family: var(--title);
  font-weight: 600;
  border-radius: 10px;
  border-bottom: 2px solid var(--pinkV);
  top: 20px;
  z-index: 1000;
  position: fixed;
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

.menu__links {
  display: flex;
  height: 100%;
  transition: transform 0.5s;
}

.menu__item {
  list-style: none;
  height: 100%;
  position: relative;

  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  --transform: rotate(-90deg);
}

.menu__item:hover {
  --clip: polygon(0 0, 100% 0, 100% 0, 100% 0% 100%);
  --transform: rotate(0);
}

.menu__link {
  color: var(--pinkV-medium);
  text-decoration: none;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: 0.4s;
}

.menu__link:hover {
  background-color: var(--pinkV-medium);
  color: var(--pinkV);
  border-radius: 6px;
}

.menu__arrow {
  transform: var(--transform);
  transition: transform 0.4s;
  display: block;
  margin-left: 3px;
}

.menu__nesting {
  list-style: none;
  transition: clip-path 3s;
  clip-path: var(--clip);
  position: absolute;
  right: 0;
  bottom: 0;
  border-bottom: solid var(--pinkV);
  border-radius: 10px;
  width: max-content;
  transform: translateY(100%);
  background-color: var(--color-esqueleto-transparent);
}

.menu__link--inside {
  padding: 30px 100px 30px 20px;
  transition: 0.4s;
}

.menu__link--inside:hover {
  background-color: var(--pinkV-medium);
}

.logo {
  width: 70px;
  margin-left: 10px;
  margin-top: 9px;
}

.menu__hamburguer {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-right: 100px;
  cursor: pointer;
  transition: 0.4s;
  display: none;
}

.menu__hamburguer:hover {
  background-color: var(--pinkV-medium);
}

.menu__img {
  display: block;
  width: 40px;
}

/******* *CONTENIDO* *******/
.container__content {
  width: 95%;
  height: 100%;
  max-width: 1200px;
  min-width: 70%;
  padding: 40px;
  margin: 20px auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  padding-top: 150px;

  grid-template-areas: "content content sidebar";
}

.content {
  grid-area: content;
  margin-top: -50px;
}

.content__article img {
  width: 500px;
  margin-top: 50px;
}

.note {
  width: 70%;
  font-family: var(--paragraph);
  font-size: 1rem;
  color: var(--pinkV-medium);
  font-weight: 400;
}

.title {
  text-decoration: none;
  color: var(--pinkV);
  font-family: var(--title);
  padding: 8px;
  font-size: 1.6rem;
  font-weight: 400;
}

.paragraph-subtitle {
  font-family: var(--paragraph);
  color: var(--pinkV);
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 700;
  width: 80%;
}

.paragraph {
  font-family: var(--paragraph);
  color: var(--grayBlacks);
  font-size: 1rem;
  margin-bottom: -15px;
  font-weight: 400;
  width: 80%;
}

.list li {
  font-family: var(--paragraph);
  color: var(--grayBlacks);
  font-size: 1rem;
  margin-top: 10px;
  margin-left: 30px;
  width: 80%;
}

.list {
  margin-top: 30px;
}

p span {
  font-family: var(--paragraph);
  font-size: 1rem;
  margin-top: 10px;
  color: var(--pinkV);
}

.content__article a {
  text-decoration: none;
  font-weight: 400;
  font-family: var(--paragraph);
  font-size: 1rem;
}

/***** *NOTA IMPORTANTE* *****/
.paragraph-paragraph {
  font-family: var(--paragraph);
  color: var(--grayBlacks);
  font-size: 1rem;
  margin-bottom: -15px;
  font-weight: 400;
  width: 80%;
  line-height: 28px;
}

.content__article a {
  text-decoration: none;
  font-weight: 400;
  font-family: var(--paragraph);
  font-size: 1rem;
}

/******* *SIDEBAR* *******/
.container__content .sidebar {
  grid-area: sidebar;
  width: 400px;
  color: var(--graylight);
  background-color: #cad0db;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 130px;
  min-height: 200px;
}

.container__content .sidebar h3 {
  font-size: 1.2rem;
  font-family: var(--paragraph);
  font-weight: 300;
}

/* *******FOOTER******* */
footer {
  position: relative;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.158);
  border-left: 1px solid rgba(255, 255, 255, 0.664);
  border-top: 1px solid rgba(255, 255, 255, 0.664);
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
}

.footer__container {
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-right: 30px;
}

.partFooter {
  width: 20%;
  text-align: center;
}

.logo-footer {
  width: 200px;
}

.partFooter h4 {
  color: var(--pinkV);
  font-size: 1.3rem;
  font-weight: 400;
  font-family: var(--title);
  margin-bottom: 20px;
}

.partFooter a {
  display: block;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  transform: color 0.3s ease-in-out;
  margin-bottom: 10px;
  font-family: var(--paragraph);
}

.partFooter a:hover {
  color: var(--blue-dark-transparent);
}

.social__media {
  display: flex;
  justify-content: space-between;
}

.social__media a {
  display: inline-block;
  margin: 0px;
  width: 190px;
  transition: 1s;
  cursor: pointer;
  animation: move 6s ease-in-out infinite;
}

.social__media a img {
  width: 60px;
}

.social__media a:hover {
  box-shadow: 0 0 5px rgba(177, 203, 229, 0.877);
}

@keyframes move {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.footer__copy {
  position: absolute;
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 1em;
  font-family: var(--paragraph);
  font-weight: 300;
  color: var(--gray-medium);
  border-top: 2px solid #fff;

  & p {
    margin-top: 15px;
  }
}

/****RESPONSIVE****/
@media screen and (max-width: 992px) {
  /* *******FOOTER******* */
  .footer__container {
    margin-right: 30px;
  }

  .partFooter {
    width: 20%;
    text-align: center;
  }

  .logo-footer {
    width: 150px;
  }

  .partFooter a:hover {
    color: var(--blue-transparent);
  }

  .social__media a img {
    width: 40px;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    height: 70px;
    width: 90%;
  }

  .logo {
    margin-left: 10px;
  }

  .menu__hamburguer {
    display: flex;
    height: 75%;
    width: 60px;
    padding: 0 7px;
    border-radius: 10px;
    margin-right: 10px;
    margin-top: 10px;
    border: 3px solid var(--pinkV);
  }


  .menu__item {
    --clip: 0;
    overflow: hidden;
  }

  .menu__item--active {
    --transform: rotate(0);
    --background: var(--pinkV-medium);
  }

  .menu__item--show {
    background-color: var(--background);
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 90px;
    bottom: 0;
    right: 0;
    background-color: var(--color-esqueleto-transparent);
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }

  .menu__links--show {
    transform: unset;
    width: 100%;
  }

  .menu__link {
    padding: 20px 0;
    padding-left: 30px;
    height: auto;
  }

  .menu__arrow {
    margin-left: auto;
    margin-left: 20px;
  }

  .menu__nesting {
    display: grid;
    position: unset;
    width: 100%;
    transform: translateY(0);
    height: 0;
    transition: height 0.3s;
  }

  .menu__link--inside {
    width: 90%;
    margin-left: auto;
    border-left: 1px solid var(--pinkV);
  }

  /******* CONTENIDO *******/
  .container__content {
    margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
      "content content  content"
      "sidebar sidebar sidebar";
  }

  .content {
    grid-area: content;
  }

  .content img {
    width: 100%;
    height: 350px;
    margin-bottom: 10px;
    object-fit: cover;
  }

  .title {
    width: 100%;
  }

  .content p {
    width: 100%;
  }

  .container__content .sidebar {
    width: 100%;
  }

  .container__content .sidebar h3 {
    font-size: 1.2rem;
    height: 300px;
  }

  /* *******FOOTER******* */
  .footer__container {
    margin-right: 30px;
  }

  .partFooter {
    width: 20%;
    text-align: center;
  }

  .logo-footer {
    width: 150px;
  }

  .partFooter a:hover {
    color: var(--blue-transparent);
  }

  .social__media a img {
    width: 35px;
  }
}


@media screen and (max-width: 600px) {
  /* *******NAVIGATION******* */
  .menu {
    height: 70px;
    width: 90%;
  }

  /******* CONTENIDO *******/
  .title {
    font-size: 1.3rem;
  }

  .paragraph {
    font-family: var(--paragraph);
    color: var(--grayBlacks);
    font-size: 0.9rem;
    margin-bottom: -15px;
    font-weight: 400;
    width: 80%;
  }

  .paragraph-subtitle {
    font-size: 1.1rem;
  }

  .list li {
    font-family: var(--paragraph);
    color: var(--grayBlacks);
    font-size: 0.9rem;
    margin-top: 10px;
    margin-left: 30px;
    width: 80%;
  }

  p span {
    font-family: var(--paragraph);
    color: var(--grayBlacks);
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--pinkV);
    font-weight: 500;
  }

  .content__article a {
    text-decoration: none;
    font-weight: 400;
    font-family: var(--paragraph);
    font-size: 0.9rem;
  }

  /* *******FOOTER******* */
  .footer__container {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .partFooter {
    width: 100%;
    justify-content: center;
  }

  .menu2 {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo-footer {
    width: 100px;
    margin-left: 25px;
  }

  .partFooter h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    margin-left: 40px;
  }

  .partFooter a {
    font-size: 0.9rem;
    margin-left: 20px;
  }

  .social__media {
    width: 100%;
  }
  .social__media a img {
    width: 40px;
  }
}

@media screen and (max-width: 375px) {
  /* *******NAVIGATION******* */
  .menu {
    height: 70px;
    width: 90%;
  }

  /* *******CONTENT******* */
  .title {
    font-size: 1.2rem;
  }

  .content {
    margin-bottom: 20px;
  }
  
  .subtitle {
    width: 100%;
    font-size: 0.9em;
  }

  .paragraph-subtitle {
    font-size: 1.1rem;
  }

  .content p span {
    font-size: 1em;
  }

  .content p {
    font-size: 0.9em;
  }

  .content__article h3 {
    font-size: 0.9rem;
    width: 100%;
  }

  /******* NOTA IMPORTANTE ********/
  .paragraph {
    font-size: 9rem;
  }

  /* *******FOOTER******* */
  .partFooter {
    width: 100%;
    justify-content: center;
  }

  .menu2 {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo-footer {
    width: 100px;
    margin-left: 25px;
  }

  .partFooter {
    margin-left: -20px;
  }

  .partFooter h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .partFooter a {
    font-size: 0.9rem;
    margin-left: 20px;
  }

  .social__media {
    width: 100%;
  }
  .social__media a img {
    width: 40px;
  }
}
