@font-face {
  font-family: "Gotham-Bold";
  src: url("/fonts/Gotham-Bold.woff2") format("woff2");
  font-weight: bold;
}

@font-face {
  font-family: "Gotham-Book";
  src: url("/fonts/Gotham-Book.woff2") format("woff2");
  font-weight: regular;
}

@font-face {
  font-family: "Gotham-thin";
  src: url("/fonts/Gotham-Thin.woff2") format("woff2");
  font-weight: thin;
}

@font-face {
  font-family: "Gotham-light";
  src: url("/fonts/Gotham-Light.woff2") format("woff2");
  font-weight: thin;
}

@font-face {
  font-family: "OpenSans-CondBold";
  src: url("/fonts/OpenSans-CondBold.woff2") format("woff2");
  font-weight: bold;
}

:root {
  --h1-font-size: 2.986rem;
  --h2-font-size: 2.488rem;
  --h3-font-size: 2.074rem;
  --h4-font-size: 1.728rem;
  --h5-font-size: 1.44rem;
  --h6-font-size: 1.2rem;
  --p-font-size: 1rem;
  --button-font-size: 1rem;
  --tag-font-size: 1rem;
  --small-font-size: 0.833rem;

  --primary-100: #fff4f8;
  --primary-700: #ff5794;
  --secondary-50: #FAFFFD;
  --secondary-100: #ebfef8;
  --secondary-700: #09aa79;
  --gray-50: #fcfcfc;
  --gray-100: #f2f3f3;
  --gray-400: #AFB2B4;
  --gray-700: #37393a;
  --background-main-color: #f2f3f3;
  --background-white-color: #ffffff;
  --alert-color: rgb(212, 57, 57);

  --line-radius: 8px;
  --line-color: #AFB2B4;

  --font-gotham-regular: "Gotham-Book", sans-serif;
  --font-gotham-light: "Gotham-light", sans-serif;
  --font-gotham-bold: "Gotham-bold", sans-serif;
  --font-open: "OpenSans-CondBold", sans-serif;
}


/* LOADING ANIMATION TO HOME PAGE================= */
.animation-loading {
  height: 100vh;
  max-width: 100vw;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  
}

.animation-loading main {
  display: grid;
  justify-items: center;
  max-width: 100%;
}

video {
  max-width: 60%;
  height: auto;
}

@media screen and (max-width: 601px) {
  video {
    max-width: 100%;
  }
}

.fade-out {
  opacity: 0;
  transition: opacity 2s ease;
}

.fade-in {
  opacity: 1;
  transition: opacity 1s ease-in;
}

/* OVERALL STYLE ================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  
}

body{
  line-height: 1.7;
}

.projects-heroImage{
  display: grid;
  justify-items: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  background: var(--background-main-color);
  font-family: var(--font-gotham-light);
  color: var(--gray-700);
}

/* HEADER ================ */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;

  background-color: var(--background-main-color);
  position: sticky; 
  top: 0; 
  z-index: 1000;
} 

header img {
  width: 165px;
}

/* TYPOGRAPHY================ */

h3 {
  font-family: var(--font-gotham-bold);
  font-size: 20px;
}

/* NAVIGATION================ */


header nav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

header nav ul li {
  font-size: var(--p-font-size);
  list-style: none;
  width: 80px;
  height: 30px;
  align-content: center;
  text-align: center;
}

header nav ul li a {
  text-decoration: none;
  color: rgb(54, 54, 54);
  font-family: var(--font-gotham-regular);
  transition: color .3s ease-in-out;

}

.menu-item.active {
  font-family: Gotham-Bold, sans-serif;
  border-bottom: 2px solid #ff5693;
}

header nav ul li a:hover {
  color: rgb(73, 73, 73);
  font-weight: 900;
  transition: color 0.3s ease;
  font-family: Gotham-Bold, sans-serif;
  color: var(--primary-700);
}

@media screen and (max-width: 601px) {
  header nav ul {
    grid-template-columns: unset;
    grid-template-rows: repeat(4, 1fr);
    justify-content: end;
    padding: 0 16px;
  }

  header nav ul a {
    text-align: end;
    padding: 20px 10px 0 10px;
    font-family: var(--font-gotham-regular);
}

  header nav ul li {
    display: grid;
    justify-content: end;
    width: 100px;
    justify-items: center;
  }

  .background-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    background-color: rgba(243, 245, 246, 0.93);
    width: 100%;
    z-index: 100;
    opacity: 0;
    transition: opacity 1s ease, visibility 1s ease;
    visibility: hidden;
  }

  .background-nav.open {
    opacity: 1;
    visibility: visible;
  }
}

.hidden {
    display: none;
}

body.no-scroll {
    overflow-y: hidden; 
}

/* CONTACT PAGE ================ */

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px, 1fr, 40px;
  min-height: 100vh;
  justify-content: space-between;
}

/* HEADER ================ */

header {
  height: 80px;
  text-align: center;
}

/* HOME DEFINITIVE============================== */

main{
  display: grid;
  gap: 1.5rem;
}

.home main{
  justify-self: center;
  max-width: 1064px;
  margin: 0 1rem;
}

.home main span {
  color: #ff5693;
}

.heroImage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  border-radius: 8px;
  border: .5px solid rgb(181, 181, 181);
  overflow: hidden;
}

.heroImage img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  height: 100%;
  width: 100%;
}

.textHero {
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 1;
  align-self: center;
  padding-left: 24px;
}

.heroImage .textHero h1 {
  margin: 0.5rem 0;
  font-size: clamp(20px, 5vw, 54px);
  font-family: Gotham-Thin;
  line-height: 0.8;
}

.heroImage .textHero span {
  font-size: clamp(20px, 6vw, 54px);
}

.home .textHero h1{
 
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    transform: translateY(-50px);
    opacity: 0;
    animation-name: titleAnimation;
    animation-timing-function:ease;
    animation-duration: 3s;
}

  
.home .textHero h1 {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  transform: translateY(-50px);
  opacity: 0;
  animation-name: titleAnimation;
  animation-timing-function: ease;

}

.home .textHero h1 {
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
}

.home .textHero h1:nth-of-type(1) {
  animation-delay: 0.7s;
}

.home .textHero h1:nth-of-type(2) {
  animation-delay: 0.5s;
}

.home .textHero h1:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes titleAnimation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  20% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  80% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    transform: translateY(0); /* Mantém a posição */
    opacity: 1;              /* Mantém visível */
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
}

.heroImage .textHero h1:nth-of-type(2),
.heroImage .textHero h1:nth-of-type(4) {
  font-family: gotham-bold;
}

.roundedElement {
  max-width: 80px;
  max-height: 80px;
  position: absolute;
  bottom: 54.2%;
  right: 27%;
  width: 100px;
  height: 100px;
  animation: rotateElement 20s linear infinite;
}

@media screen and (min-width: 640px) {
  .roundedElement {
    max-width: 116px;
    max-height: 116px;
    position: absolute;
    bottom: 63.5%;
    right: 32%;
    width: 100px;
    height: 100px;
    animation: rotateElement 15s linear infinite;
  }

  .heroImage .textHero h1 {
    line-height: 1.2;
  }
}

@keyframes rotateElement {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.servicesIntro {
  display: grid;
  gap: 1.5rem;
}

@media screen and (min-width: 640px) {
  .servicesIntro {
    grid-template-columns: repeat(2, 1fr);
  }

  .introduction {
    order: 1;
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  order: 1;
}



.services .logoDesign,
.services .motion-design {
    border-radius: 8px;
    display: grid;
    place-items: center;
    border: 0.5px solid rgb(181, 181, 181);
    color: #ff5693;
    transition: background-color 0.3s ease-in-out;
    position: relative; 
    width: 100%;
    /* max-width: 300px; */
    height: auto;
    min-height: 91px; 
    overflow: hidden; 
    transition: background-color 0.3s ease-in-out;
}

.services .logoDesign img,
.services .motion-design img,
.services .wmDesign img{
    max-height: 91px; 
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    opacity: 0; 
    transition: opacity 0.3s ease-in-out; 
}

.services .logoDesign img.image1,
.services .motion-design img.image1,
.services .wmDesign img.image1 {
    opacity: 1; 
}

.services .logoDesign:hover,
.services .motion-design:hover {
    color: #04a777;
    border: 0.5px solid #04a777;
    background-color: var(--secondary-50);


}

.services .logoDesign:hover .image1,
.services .motion-design:hover .image1,
.services .wmDesign:hover img.image1 {
    opacity: 0; 
}

.services .logoDesign:hover .image2,
.services .motion-design:hover .image2,
.services .wmDesign:hover .image2 {
    opacity: 1; 
}




.services .wmDesign {
  grid-column: 1/-1;
  background-color: var(--primary-100);
  


  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 0.5px solid #ff5693;
  color: #ff5693;
  transition: background-color 0.3s ease-in-out;
  position: relative; 
  max-width: 100%;
  height: auto;
  min-height: 91px; 
  overflow: hidden; 
  transition: background-color 0.3s ease-in-out;
}

.services .wmDesign:hover {
  background-color: var(--secondary-50);
  color: #37393a;
  border: 0.5px solid #04a777;
}

.introduction {
  padding: 24px;
  border: 0.5px solid rgb(181, 181, 181);
  border-radius: 8px;
}

.introduction p {
  margin-bottom: 1rem;
}

.text-arrow {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  font-family: OpenSans-CondBold;
  transition: color 0.2s ease-in-out;
  gap: 0.5rem;
}

.text-arrow:hover {
  color: #04a777;
  gap: 0.5rem;
}


.text-arrow .fa-arrow-right{
    transition: padding-left 0.2s ease-in-out;    
}

.text-arrow:hover .fa-arrow-right{
    padding-left: 10px;
}

.introduction a img {
  height: 28px;
}








.contactPage main {
  display: grid;
  justify-self: center;
  margin: 0 16px;
  max-width: 642px;
}

.contactPage main h2 {
  font-size: 33px;
  font-family: "gotham-bold", serif;
  text-align: center;
  padding-top: 59px;
}

.contactPage main h2 span {
  color: #ff5693;
}

.contactPage main p {
  text-align: center;
  padding-top: 24px;
}

.contactPage form {
  display: grid;
  padding: 55px 0;
}

.contactPage form input {
  height: 40px;
  border-radius: 8px;
  padding: 0.5rem;
  font-family: gotham-book, sans-serif;
  border: 0.5px solid rgb(181, 181, 181);
  margin-bottom: 12px;  
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.contactPage form input:active {
  border: .5px solid var(--primary-700);
}

.contactPage form input:hover {
  border: .5px solid var(--primary-700);
}

input::placeholder{
  font-size: 12px; 
  color: #b0b0b0;
}

.contactPage form textarea {
  height: 148px;
  border-radius: 8px;
  padding: 0.5rem;
  font-family: gotham-book, sans-serif;
  border: 0.5px solid rgb(181, 181, 181);
  margin-bottom: 12px;
  font-size: 14px;
  resize: none;
  transition: all .3s ease-in-out;
}

.contactPage form textarea:hover {
  border: .5px solid var(--primary-700);
}

.contactPage form textarea::placeholder{
  color: #b0b0b0;
  font-size: 12px; 
}

.contactPage form label {
  justify-self: flex-start;
  padding-left: 0.5rem;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: bold;
  font-family: "gotham-bold", sans-serif;
}

.contactPage form label span {
  font-size: 12px;
  font-family: "gotham-light", sans-serif;
  color: rgb(54, 54, 54);
}

.contactPage .container {
  margin-top: 1rem;
}

.message-status {
    margin-top: 20px;
    font-size: 16px;
}
.success {
    color: #04a777;
}
.error {
    color: rgb(188, 45, 45);
}

/* MENU================*/

.menu-btn {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  display: none;

}


.menu-btn__burger {
  width: 15px;
  height: 2px;
  background-color: rgb(73, 73, 73);
  border-radius: 2.5px;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: rgb(73, 73, 73);
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before {
  transform: translateY(-4px);
}

.menu-btn__burger::after {
  transform: translateY(4px);
}

.open .menu-btn__burger {
  transform: translateX(-4px);
  background-color: transparent;
  box-shadow: none;
}

.open .menu-btn__burger::before {
  transform: rotate(45deg) translate(3px, -3px);
}

.open .menu-btn__burger::after {
  transform: rotate(-45deg) translate(3px, 3px);
}

@media screen and (min-width: 602px) {
  header nav ul li a {
    display: block;
  }
}

@media screen and (max-width: 601px) {
  .menu-btn {
    display: flex;
  }
}

/* BUTTON ================ */
.btn-container {
  justify-self: center;
  margin-top: 2rem;
}

.btn-container i {
  padding-right: 0.5rem;
  font-size: 1.2rem;
  justify-self: end;
  color: rgb(54, 54, 54);
}

.btn {
  position: relative;
  width: 150px;
  height: 45px;
  border-radius: 7px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  display: flex;
}

.btn::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: conic-gradient(rgb(255, 86, 147), rgb(54, 54, 54));
  animation: efeito 1.3s ease infinite;
  transition: 1s ease;
}

@keyframes efeito {
  100% {
    transform: rotate(360deg);
  }
}

.btn-container:hover .btn::before {
  background: #595959;
}

main .btnLink {
  border: none;
  position: absolute;
  z-index: 1;
  display: block;
  width: 145px;
  height: 40px;
  background: #e7e7e7;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  text-decoration: none;
  color: rgb(54, 54, 54);
  font-weight: bold;
  font-family: "OpenSans-CondBold", "Roboto Condensed";
  font-size: 1rem;
  cursor: pointer;
}








/* PROJECTS ================================================= */

.cards-Projects{
  justify-self: center;
  max-width: 1064px;
  padding-bottom: 32px;
  margin: 0 1rem;
}

.projects main .cards-Projects h1 {
  font-family: var(--font-gotham-bold);
  font-size: var(--h3-font-size);
  padding: 40px 0;
}

.projects main .cards-Projects h1 span{
  color: var(--primary-700);
  font-family: var(--font-gotham-bold);
}

.projects main .cards-container{
  display: grid;
  gap: 1.5rem;
  justify-self: center;
  max-width: 1064px;
}

@media screen and (min-width: 860px) {
  .projects main .cards-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card{
  background-color: var(--gray-50);
  border: .5px solid var(--line-color);
  border-radius: var(--line-radius);
  padding: 16px 24px;
}

.visualdesign .project-card{
  padding: 0;

}

.cards-container .content-wrapper{
  display: grid;
  gap: 1rem;
}

.project-card.hover-overlay {
  position: relative; 
  overflow: hidden; 
  display: grid;
  place-items: center;
}

.project-card.hover-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #797979; 
  backdrop-filter: blur(5px);
  mix-blend-mode: multiply; 
  opacity: 0; 
  transition: opacity 0.3s ease-in-out; 
  z-index: 100;
}

.logo-white{
  position: absolute;
  z-index: 100;
  display: none;
  width: 300px;
}

.project-card:nth-of-type(3) .logo-white img{
  padding-bottom: 1rem;
}

.logo-white a{
  color: white;
  text-decoration: none;
  display: flex;
  gap: .5rem;
  align-items: center;
  font-family: var(--font-open);
  transition: gap .2s ease-in-out;
}

.logo-white a:hover{
  gap: 1rem;
}

.logo-white .moreDetails{
  color: white;
  text-decoration: none;
  display: flex;
  gap: .5rem;
  align-items: center;
  font-family: var(--font-open);
  transition: gap .2s ease-in-out;
}

.logo-white .moreDetails:hover{
  gap: 1rem;
}

.project-card:hover .content-wrapper {
  filter: grayscale(100%);
}


.project-card:hover .logo-white{
  display: grid;
}



.project-card.hover-overlay:hover::before {
  opacity: 1; 
}

.project-card.hover-overlay .content-wrapper {
  position: relative; 
  z-index: 3; 
  mix-blend-mode: multiply; 
}

.project-card .logo-card img{
  width: 147px;
}

/* .project-card p{
  height: 84px;
} */

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

.list ul{
  display: flex;
  gap: .3rem;
  align-items: start;
  
}

.list li{
  list-style-type: none;
}

.list .roles-chips{
  flex-wrap: wrap;
  text-transform: uppercase;
}

.list .icon-screen{
  flex-wrap: nowrap;
}

.list .icon-screen li img{
  height: 24px;
  width: 24px;

}

.list .icon-screen li {
  height: 30px;
  width: 30px;

}

.roles-chips li{
  padding: 6px;
  font-size: 10px;
  font-family: var(--font-open);

}

.ux{
  background-color: #edfff9;
  border-radius: 100px;
  /* border: 1px solid #008541; */
  color: #008541;
}

.ui{
  background-color: #F8F1FF;
  border-radius: 100px;
  /* border: 1px solid #8454FF; */
  color: #8454FF;
}

.interaction-design{
  background-color: #F4F6FA;
  border-radius: 100px;
  /* border: 1px solid #161F2A; */
  color: #161F2A;
}

.user-testing{
  background-color: #FFF1F6;
  border-radius: 100px;
  /* border: 1px solid #FF5693; */
  color: #FF5693;
}

.user-research{
  background-color: #F1F4FF;
  border-radius: 100px;
  /* border: 1px solid #004F94; */
  color: #004F94;
}

.motion{
  background-color: #ECFCFE;
  border-radius: 100px;
  /* border: 1px solid #175550; */
  color: #175550;
}

.case-study{
  background-color: #FEF9EB;
  border-radius: 100px;
  /* border: 1px solid #833C00; */
  color: #833C00;
}

.html{
  background-color: #ffe0d8;
  border-radius: 100px;
  width: 35px;
  text-align: center;
  /* border: 1px solid #E44D26; */
  color: #E44D26;
}

.css{
  background-color: #dff2fe;
  border-radius: 100px;
  width: 35px;
  text-align: center;
  /* border: 1px solid #379AD6; */
  color: #379AD6;
}

.javas{
  background-color: #fff7d1;
  border-radius: 100px;
  /* border: 1px solid #FDCD00; */
  color: #aa8b00;
}

.chips_p{
  display: grid;
  gap: 1rem;
}

.projects .project-card p {
  font-size: 14px;

}
.projects .project-card a {

  text-decoration: none;
}

.projects .project-card p span{
  font-family: var(--font-gotham-bold);
}




/* OTHER PROJECTS BOTTOM======================= */

main .otherProjects h1 {
  font-family: var(--font-gotham-bold);
  font-size: var(--h3-font-size);
}

main .otherProjects h1 span{
  color: var(--primary-700);
}

.otherProjects{
  background-color: var(--gray-50);
  padding: 5rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(300px, 1064px) auto;
}

.otherProjects .otherProjects-container{
  grid-column: 2 / 3;
  display: grid;
  gap: 24px;
}

.otherProjects .otherProjects-container .otherCard{
  background-color: var(--gray-100);
  height: 130px;
}

.otherProjects .otherProjects-container .otherCard:hover{
  background-color: var(--secondary-50);
}

.projects .otherProjects .services .logoDesign,
.projects .otherProjects .services .motion-design,
.projects .otherProjects .services .wmDesign
{
  max-width: 100%;
}

.project .services .logoDesign, .services .motion-design{
  max-width: unset;
}

@media screen and (max-width: 640px) {
   .projects .otherProjects .services {
       grid-template-columns: 1fr
   };
}



.itemList {
  display: flex;
  align-items: center; 
  gap: 10px;
}

.project .itemList img{
  width: 20px;
}

.icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.itemIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.aboutMe-page .aboutSection ul .itemList{
  display: flex;
  gap: .5rem;
}

.itemList{
  display: flex;
  gap: .5rem;
}





/* FOOTER ================ */




footer {
  display: flex;
  height: 40px;
  text-align: center;
  align-self: center;
  align-self: end;
  justify-content: space-between;  
  margin: 1rem;
}

.textplusicon{
  display: flex;
  gap: 12px;
}

@media screen and (max-width: 500px) {


  footer {
       flex-flow: column;
       align-items: center;
       gap: 1rem;
       padding-bottom: 1rem;
   }



}

.footerText{
  justify-items: center;

}

@media screen and (min-width: 640px) {
  .footerText{
    display: flex;
    place-items: center;
    gap: 12px;
  }
}

.footerText img{
  height: 20px;
}

footer .iconsFooter{
  display: grid;
  align-items: center;
  gap:.5rem;
}

footer .backtotop{
  position: fixed;
  right: 16px;
  bottom: 70px;
}

footer p {
  font-size: 12px;
  align-self: center;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0); 
  }
  50% {
      transform: translateY(-10px); 
  }
}

.backtotop img {
  animation: bounce 1.5s infinite;
  transition: transform 0.3s ease-in-out; 
}


.logo-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auditoriaBeneficios{
  justify-self: center;
  border-radius: 4px;
  border: solid 4px var(--gray-700);
  max-width: 80%;
}

.agilcorpLogo{
  height: 49.2px;
  max-width: 100px;
}

.NDA{
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-gotham-bold);
}

.NDA p{
  font-size: var(--h4-font-size);
}

.projects .project-card .NDA {
  font-size: 16px;
}


.drop-hover a{
  display: flex;
  gap: .5rem;
  align-items: center;
}

.drop-hover{
  position: relative;
}

.drop-hover .drop{
  position: absolute;
  right: -80%;
  gap: 12px;
  width: 270%;
  background-color: var(--gray-100);
  border-radius: 8px;
  z-index: 100;
  height: 0;
  overflow: hidden;
  transition: .5s ease-in-out;
}

@media screen and (max-width: 640px) {
  .drop-hover{
    position: static;
    height: 137.4px;
  }
  
  .drop-hover .drop{
    position: static;
    height: 137.4px;

    background-color: transparent;
  }

  .drop-hover{
    display: grid;
    justify-items: END;
  }

  .drop-hover a{
    justify-self: END;
  }

  header nav ul{
    grid-template-rows: repeat(1, 1fr)
  }

  .drop-hover .fa-solid{
    transform: rotate(0.5turn);
  }

  .background-nav .drop-hover:hover .drop{
    border: transparent;
  
  }

}


.drop-hover:hover .drop{
  height: 137.4px;
  border: .7px solid var(--line-color);

}

.drop-hover .fa-solid{
  transition: all .5s ease;
}

.drop-hover:hover .fa-solid{
  transform: rotate(0.5turn);
}

.drop-hover .drop a{
  padding: 12px 16px 0 16px;
}

.drop-hover .drop a:first-of-type{
  padding-top: 16px;
}

.drop-hover .drop a:last-of-type{
  padding-bottom: 16px;
}



