/* GLOBALS */
@font-face {
    font-family: Inter ;
    src: url("./Inter-VariableFont.ttf");
  }
:root{
    --dark:#0a174b;
    --bg-color:white;
    --text-color:#49494d;
    --font-family: Inter;
    --title: 40px
    
}
*{
    font-family: Inter;
    margin: 0;
}

[data-theme="dark"] {
    --bg-color:  #0a174b;
    
    --text-color:white; 
}




@media (max-width:700px) {

:root {
  --title:20px
}
  
}
/* GLOBALS */


/* NAVVVVBARRRR */
.navbarmain {
  position: fixed;
  margin-top: 20px;
  z-index: 999;
      width: 100%;
      height: 60px;
  font-weight: 500; /* font-medium */
  display: flex;
  align-items: center; /* items-center */
  justify-content: center; /* justify-between */
  color: var(--text-color);
  
  ;}
  
  
  .navbarcomputerMenu {
  
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 60%;
      height: 100%;
      color: var(--text-color);
      background-color: var(--bg-color);
      border-radius: 10px;
      border:1px solid var(--text-color)
  
      
  }
  
  .navbarcomputerMenuOption {
      display: flex;
      flex-direction: row;
      padding-left: 10px;
      text-decoration: none;
      color: var(--text-color);
      
  }
  
  
  .navbarcomputerMenuWrapper{
      display: flex;
      margin-right: 10px;
      cursor: pointer;
  }
  
  
  
  
  
  .navbarmobileMenu {
      flex-direction: column;    
      position: fixed;
      align-items: center;
      width: 80%;
      top: 50%;
      transform: translate(0, -50%);
      z-index: 999;
      background-color: var(--bg-color);    
      color: var(--text-color);
      border-radius: 5px;
      padding: 2px;
      display: none;
      border:1px solid var(--text-color);
  }
  
  .navbarmobileMenuWrapper {
      flex-direction: column;    
     display: flex;
    
  }
  
  .navbarmobileMenuWrapper1 {
      flex-direction: column;    
      align-items: center;
     display: flex;
    
  }
  
  .navbarmobileMenuWrapper1>*{
      margin: 10px;
  }
  .navbarmobileMenuOption{
      background-color: var(--bg-color);
      color: var(--text-color);
      padding-top: 10px;
      padding-bottom: 10px;
      padding-bottom: 10px;
      font-size: 25px;
      white-space: nowrap;
      text-decoration: none;
  }
  
  .navbarmobileMenuIcon {
      align-items: center;
      height: 30px;
      width: 30px;
      border-radius: 100%;
      display: flex;
      justify-content: center;
      border: 0;
      color: var(--text-color);
      background-color: var(--bg-color);
  }
  
  
  
  .navbarmenuControler{
      
      display:none;
      
  }
  
  
  
  @media (max-width: 600px) {
      .navbarmenuControler{
          display: flex;
          height: 30px;
      color: var(--text-color);
      left: 0;
      padding-right: 10px;
      flex-direction:column;
      align-items: flex-end;
      justify-content: flex-end;
      width: 100%;
      }
      .navbarmobileMenu{
        display: flex;
        
  
      }
      .navbarcomputerMenu{
          display: none;
          
      }
    }
    
    /* Para telas pequenas (sm) */
    @media (max-width: 303px) {
          .navbarmobileMenuOption{
              white-space: break-spaces;
              align-items: self-start;
          }
    }

  
/* NAVVVVBARRRR */
  
  
  
  

/* HOMEPAGE */



.homemain {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    position: relative;
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  
  
  
  .homeheroSection {
   width: 100%;
   display: flex;
   align-items: center;
   position: relative;
   flex-direction: column;
   height: 100vh;
   background-color: var(--bg-color); /* Light black color with 20% opacity */
   background-image: url('/transferir.svg'); /* Replace with the actual grid pattern image */
   background-size: 100px 100px; /* Adjust to fit your grid size */
   color: var(--text-color);
  }
  
  .homemask {
  height: 100%;
  position: absolute;
  top: 0;
  
  width: 100%;
  mask-image: radial-gradient(ellipse at center, transparent 20%, rgb(0, 0, 0));
  
  background-color: var(--bg-color);
  
  }
  
  
  .homeSpotLight {
    position: absolute;
    z-index: 1; /* Corresponds to 'z-[1]' */
    width: 84%; /* Corresponds to 'w-[138%]' */
    opacity: 1; /* Corresponds to 'opacity-0' */
    top: -15rem; /* Corresponds to '-top-40' (assuming Tailwind's 1rem = 4 units) */
    left: -15rem; /* Corresponds to '-left-10' (assuming Tailwind's 1rem = 4 units) */
  }
  .homeSpotLight1 {
    position: absolute;
    z-index: 1; /* Corresponds to 'z-[1]' */
    width: 100%; /* Corresponds to 'w-[138%]' */
    opacity: 1; /* Corresponds to 'opacity-0' */
    top: -30rem; /* Corresponds to '-top-40' (assuming Tailwind's 1rem = 4 units) */
    right: 0;
  }
  .homeSpotLight2 {
    
  
  
    position: absolute;
    z-index: 1; /* Corresponds to 'z-[1]' */
    width: 100%; /* Corresponds to 'w-[138%]' */
    opacity: 1; /* Corresponds to 'opacity-0' */
    top: -10rem; /* Corresponds to '-top-40' (assuming Tailwind's 1rem = 4 units) */
    left: -15rem; 
  }
  
  
  
  /* Component.homemodule.homecss */
  
  .homecontainer {
    width: 60%;
    margin: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    color:var(--text-color);
    position: relative;
  }
  
  
  .homesubtitle {
    text-transform: uppercase;
    letter-spacing: 0.home1em; /* tracking-widest */
    font-size: 0.home75rem; /* text-xs */
    text-align: center;
    color: var(--text-color); /* text-blue-100 */
    max-width: 20rem; /* max-w-80 */
  }
  
  .hometitleWrapper {
    font-weight: bold;
    text-align: center;
    font-size: 2.5rem; /* text-[40px] */
  }
  
  .homethm {
    font-weight: bold;
    text-align: center;
    font-size: 5.5rem; /* text-[40px] */
    background: -webkit-linear-gradient(#eee, #333);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hometitleText {
    margin: 1rem 0; /* my-4 */
    color: rgb(255, 255, 255);
    line-height: 1.home2; /* leading-snug */
    letter-spacing: 0.home05em; /* tracking-wide */
  }
  
  .homedarkText {
    color: var(--text-color); /* text-black */
  }
  
  .homewhiteText {
    color: var(--text-color)
  }
  
  .homeanimated {
    opacity: 0; /* opacity-0 */
    transition: opacity 0.home3s ease-in-out; /* Added for potential animation */
    opacity: 1; /* To show the text, can be controlled via JavaScript or hover */
  }
  
  .homedescription {
    text-align: center;
    margin-bottom: 1rem; /* mb-4 */
    font-size: 0.home875rem; /* text-sm */
  }
  
  
  
  .homebutton {
    position: relative;
    display: inline-flex;
    height: 3rem; /* h-12 */
    width: 100%; /* w-full */
    margin-top: 2.home5rem; /* md:mt-10 */
    overflow: hidden;
    border-radius: 5px; /* rounded-lg */
    padding: 1px; /* p-[1px] */
    outline: none;
    border:0
  }
  
  @media (min-width: 768px) {
    .homebutton {
      width: 15rem; 
    }
  }
  
  .homebuttonBackground {
    position: absolute;
    inset: -1000%;
    animation: spin 2s linear infinite;
    background: conic-gradient(from 90deg at 50% 50%, #e2cbff 0%, #393bb2 50%, #e2cbff 100%);
  }
  
  .homebuttonContent {
    display: inline-flex;
    height: 100%;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--bg-color); /* bg-slate-950 */
    
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: var(--text-color); /* text-white */
    backdrop-filter: blur(3rem); /* backdrop-blur-3xl */
    gap: 0.5rem; /* gap-2 */
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  
  
  @media (min-width: 768px) {
    .hometitleWrapper {
      font-size: 3rem; /* md:text-5xl */
    }
  }
  
  @media (min-width: 1024px) {
    .hometitleWrapper {
      font-size: 4rem; /* lg:text-6xl */
    }
  }
  
  @media (min-width: 768px) {
    .homedescription {
      letter-spacing: 0.home05em; /* md:tracking-wider */
      font-size: 1.home125rem; /* md:text-lg */
    }
  }
  
  @media (min-width: 1024px) {
    .homedescription {
      font-size: 1.home5rem; /* lg:text-2xl */
    }
  }
  
  
  
  
  
  .hometest {
    grid-row: span 2;
    grid-column: span 3;
  
    color: white;
    border:1px solid white
  }
  
  .homeheroSection3 {
    
    height: 100vh;
    width: 100%;
    position: relative;
  }

  .textdecoration{
    text-decoration: none;
    color: var(--text-color);
  }
  
  .homeheroSection3Text{
    position: absolute;
    text-align: center;
    top:50%;
    left:50%;
    width: 80%;
    transform: translateX(-50%);
    z-index: 99;
    font-size: 50px;
    color:var(--text-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--text-color);
    border-radius: 10px;
    padding: 10px;
   color: var(--text-color);
  }
  
  
  
  
  .homeheroSection2 {
    display: grid;
    width: 80%;
    height:  fit-content;
    row-gap: 2em;
  position: relative;
    column-gap: 2em;
    background-color: var(--bg-color);
    grid-template-columns: 1fr ;
    grid-template-rows: 1fr 1fr 1fr;
    padding-bottom: 50px  ;
  
  }
  
  .hometry1 {
    grid-row: span 1;
    grid-column: span 3;
   position: relative;
   display: flex; 
   font-size: var(--title);
  justify-content: center;
  align-items: center;
   border: 3px solid var(--text-color);
   border-radius: 5px;
   background-color:  var(--bg-color);
   color: var(--text-color)
  }
  
  
  
  
  
  .hometry1IconWrapper {
    height: 40%;
    width: 30%;
    color: var(--bg-color);
  }
  
  .hometry2{
    color: var(--text-color);
    border:1px solid white;
    grid-row: span 1;
    grid-column: span 2;
    font-size: large;
  }
  
  .hometryText {
    width: 70%;
    text-align: start;
    font-size: 0.7em;
    letter-spacing: 0.1em; /* tracking-widest */
    text-align: center;
    color:var(--text-color); /* text-blue-100 */
  }
  
  
  .hometryTitle {
    font-size: var(--title);
  }
  
  
  .homedivisor {
    font-size: 30px;
    color: var(--text-color);
    margin-bottom: 100px;
  }
  
  
  
  
  .hometestimonialsWrapper {
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%,transparent);
  overflow: hidden;
    display: flex;
   position: relative;
   height: 30vh;
   width: 100%;
  }
  
  
  
  .hometestimonials {
   width: fit-content;
    display: flex;
    position: absolute;
    flex-direction: row;
    height: 20vh;
    animation: scroll 20s linear infinite;
    background-color: var(--bg-color);
  
  
  }
  
  .homecontent {
    height: 100%;
    display: flex;
    font-size:  15px;
    width: 60vw;
    font-style: italic;
    text-align: center;
    align-items: center;  
    justify-content: center;
    background-color: var(--bg-color);
    border: 1px solid var(--text-color);
    color: var(--text-color);
    border-radius: 10px;
    margin-right: 10px;
  
  
  
  }
  
  
  
  
  @keyframes scroll {
    0% {
      
      transform: translateX(0);
    }
    
    100% {
      transform: translateX(-50%);
    }
  }
  
  
  .homedivisor2 {
    font-size: 30px;
    color: var(--text-color);
    margin-bottom: 100px;
    margin-top: 100px;
  }
  
  
  .homeheroSection4{
    width: 100%;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
  }
  
  
  .homecardWrapper {
  width: 300px;
  height: 600px;
  overflow: hidden;
  position: relative;
  background-color: red;
  z-index: 99;
  border-radius: 5px;
  border: 1px solid var(--text-color);
  margin-bottom: 10px;
  }
  
  
  
  .homecardColor  {
    position: absolute;
    top: 0;
    width: 500px;
    height: 600px;
   
  }
  .homeicon1{
    position: absolute;
    top: -1%;
    left: -3%;
    height: 20px;
    z-index: 99;
    color: var(--text-color);
  } 
  .homecardContent {
    display: flex;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translateY(-50%
    ) translateX(-50%);
    color: black;
  }
  .homecardContent2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    width: 100%;
    top: 50%;
  
    visibility: hidden;
    transform: translateY(-50%
    );
    color: black;
  }
  
  .homecardColor1 {
    width: 100%;
    height: 100%;
    background-color: rgba(241, 238, 5, 0.3);
    position: absolute;
    
  
  }
  
  .homecardColor2 {
    width: 100%;
    height: 100%;
    background-color: rgba(3, 86, 209, 0.3);
    position: absolute;
    
  
  }
  
  .homecardColor3 {
    width: 100%;
    height: 100%;
    background-color: rgba(4, 194, 61, 0.3);
    position: absolute;
    
  
  }
  
  .homepreText{
    padding: 10px;
    width: 80%;
    border: 1px solid var(--text-color);
    
    color: white;
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  .homepreText1{
    padding: 10px;
    width: 80%;
    border: 1px solid var(--text-color);
    color: var(--text-color) ;
  
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  
  
  
  .homecardWrapper:hover>.homecardDown{
    /* background-color: blue;   */
    animation: forwards 4s cardDown  ;
  }
  
  
  .homecardWrapper:hover>.homecardUp{
    /* background-color: blue;   */
    animation: forwards 4s cardUp  ;
  }
  
  
  .homecardWrapper:hover>.homecardContent{
    display: none;
  }
  .homecardWrapper:hover>.homecardContent2{
    visibility: visible;
    
  }
  
  .homecardDown {
    width: 100%;
    height: 50%;
    top: 50%;
    position: absolute;
    background-color: var(--bg-color);
  }
  
  
  .homecardUp{
    width: 100%;
    height: 50%;
    top: 0;
    position: absolute;
    background-color: var(--bg-color);
  }
  
  
  
  @keyframes  cardDown {
    
    
    0% {
        transform: translateY(0);
    }
    100%{
     transform: translateY(100%);
    }
  
  }
  
  @keyframes  cardUp {
    
    
    0% {
        transform: translateY(0);
    }
    100%{
     transform: translateY(-100%);
    }
  
  }
  
  
  @media (max-width: 730px) {
    .homeheroSection4{
      flex-direction: column;
      align-items: center;
      height:fit-content;
    }
  }
  
  
  @media (max-width: 330px) {
    .homecardWrapper{
      width: 200px;
    }
  }




/* HOMEPAGE */


/* FOOTER */
.footermain {
  
    width: 100%;
    display: grid; 
    column-gap: 2em;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    height: 50vh;
    background-color: var(--bg-color);
    background-size: 100px 100px;
    padding-top: 30px;
    border-top: 5px solid var(--text-color);
    font-size: var(--title);
  }
  
  
  .footerenderecos {
    grid-column: span 1;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    height: fit-content;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 5px;
    font-size: 0.5em;
  }
  
  
  .footerenderecos>*{
    margin-top: 10px;
  }
  
  .footertitle{
    font-size: 1.5em;
  }
  
  
  @media (max-width: 600px) {
    .footermain{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  
    }
    .footerenderecos{
      width: 80%;
    }
  }
/* FOOTER */
    



