@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body, html{
    width: 100%;
    height: 100%;
    --primary: #100541;
    --secondary: #e5e5e5;
    --optional: ghostwhite;
    --comb: #0096c7;
}
body{
  overflow-x: hidden;
}
.bodyEnviado{
  background-image: url('../img/pexels-fauxels-3184465.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.navgls{
  margin: 20px;
  width: 90%;
  border-radius: 20px;
  position: absolute;
  top: 0px;
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
  border: 2px solid rgba(255, 255, 255, 0.16);
}
.primary{
    background: var(--primary);
    color: var(--secondary);
}
.primary button:hover{
    background: var(--primary);
    color: var(--secondary);
}
.cardVirado{
    border-radius: 20px;
    margin-top: -10%;
    width: 150%;
    height: 600px;
    transform: rotate(-5deg);
    z-index: -5;
    position: relative;
    top: -15px;
    object-fit: cover;
}
.infosInit{
  position: relative;
  top: -50%;
}
.anim{
    position: absolute;
    right: 30px;
    bottom: 40px;
    z-index: -2;
}
.textInit{
    color: #e5e5e5;
    position: absolute;
    max-width: 30rem;
    text-align: center;
    left: 30px;
    top: 20%;
    z-index: -1;
    font-family: "Righteous", sans-serif;
    line-height: 30px;
}
.fg{
    background: var(--secondary);
    color: var(--primary);
    padding: .2rem;
    border-bottom-right-radius: 20px;
}
.subtitle{
    font-family: "Bebas Neue", sans-serif;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    color: #333;
}
.subtitle2{
    font-family: "Bebas Neue", sans-serif;
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    color: var(--secondary);
}
.subtitle3{
    font-family: "Bebas Neue", sans-serif;
    text-decoration: underline;
    background: var(--primary);
    width: 50%;
    height: 9vh;
    border-bottom-right-radius: 30px;
    padding: 10px;
    text-decoration-color: var(--secondary);
    color: var(--secondary);
}
.rr{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.r2{
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* From Uiverse.io by alexruix */ 
.card2 {
    flex-grow: 1;
    flex-basis: 200px;
    height: 254px;
    border-radius: 20px;
    background: #f5f5f5;
    position: relative;
    padding: 1.8rem;
    border: 2px solid #c3c6ce;
    transition: 0.5s ease-out;
    overflow: visible;
   }
   
.card-details {
    color: black;
    height: 100%;
    gap: .5em;
    display: grid;
    place-content: center;
}
   
.card-button {
    transform: translate(-50%, 125%);
    width: 60%;
    border-radius: 1rem;
    border: none;
    background-color: var(--comb);
    color: #fff;
    font-size: .8rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.3s ease-out;
    text-decoration: none;
    text-align: center;
}
   
.text-body {
    font-size: .9rem;
    color: rgb(134, 134, 134);
}

   /*Text*/
.text-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}
.profileImg{
  height: 5vh;
  width: 5vh;
  border-radius: 100%;
  object-fit: cover;
}
.userInsta{
  font-size: 14px;
  font-weight: 400;
  color: gray;
}
.clientesImgs img{
  height: 10vh;
}
.clientesImgs img:hover{
  transform: scale(1.3);
}

/*Hover*/
.card2:hover {
    border-color: var(--comb);
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}
   
.card2:hover .card-button {
    transform: translate(-50%, 50%);
    opacity: 1;
}
.linkInsta a{
  text-decoration: none;
  color: #000;
  font-weight: 700;
}
/* From Uiverse.io by elisapi */ 
.cardredes {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  gap: 20px;
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  border-radius: 30px;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
  transform: scale(1.2);
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  /* fill: rgb(255, 255, 255); */
  fill: var(--primary);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.imgClientes{
    height: 80vh;
    position: absolute;
    right: 0;
    transform: translate(0, -30%);
    z-index: -1;
}
.bi-suit-heart-fill{
  color: red;
}
.form {
  --input-focus: #100541;
  --font-color: #333;
  --font-color-sub: #333;
  --bg-color: #e5e5e5;
  --main-color: var(--primary);
  padding: 20px;
  background: var(--secondaryr);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 50vh;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.title {
  color: var(--font-color);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 25px;
}

.title span {
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 17px;
}

.input {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.input:focus {
  border: 2px solid var(--input-focus);
}

.login-with {
  width: 100%;
  /* display: flex; */
  gap: 20px;
}
.button-log a{
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}
.button-log {
  cursor: pointer;
  /* width: 40px; */
  height: 40px;
  /* border-radius: 100%; */
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  color: var(--font-color);
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 24px;
  height: 24px;
  fill: var(--main-color);
}

.button-log:active, .button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}

.button-confirm {
  margin: 50px auto 0 auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
}
.project-info {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: -50px;
}

.project-title {
  font-weight: 500;
  font-size: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
}

.lighter {
  font-size: 0.9em;
}

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

.tag {
  font-weight: lighter;
  color: grey;
}

.card-imgs{
  background: var(--comb);
  object-fit: cover;
  border-radius: 10px;
  width: 90%;
  height: 150px;
}
.card-img div {
  width: 90%;

}

.cardCamp {
  background-color: white;
  color: black;
  width: 300px;
  max-height: 330px;
  border: 2px solid var(--comb);
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  margin-bottom: 20px;
}

.card-img {
  position: relative;
  top: -20px;
  height: 100px;
  display: flex;
  justify-content: center;
}

/* Change the .card-img div to .card-img img to use img*/
.card-img a,
.card-img div {
  height: 150px;
  width: 90%;
  /* Change this width here to change the width of the color/image */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-imgs {
  transition: all 0.5s;
}

.videoBanner{
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.textBanner{
  color: white;
  font-weight: 700;
  font-size: 20rem;
  text-align: center;
  position: absolute;
  padding-left: 10%;
  padding-right: 10%;
}