@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  font-family: "League Spartan", sans-serif;
  box-sizing: border-box;
  cursor: default;
}
html {
  font-size: clamp(14px, 1vw + 0.5rem, 16px);
}

:root {
    --white: #FFFCEF;
    --gray: #fffcefdf;
    --cian: #55B4BE;
    --blue: #007792;
    --red: #FF5757;
    --yellow: #FBB41C;
    --black: #262626;


    --padding-space: 10vw;

    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 4rem;
    --gap-xl: 6rem;

    --size-xs: 1.5rem;
    --size-sm: 2rem;
    --size-md:4rem;
    --size-lg:8rem;
    --size-xl:12rem;

    --border-radius-xs: 0.5rem;
    --border-radius-sm: 1rem;
    --border-radius-md: 2rem
}

html{
  scroll-behavior: smooth;
}

/*FONTES-----------------------------*/

#hero-title,
#cta-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 4rem;
  line-height: normal;
}

h1 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
}

h2 {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}


h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

h4{
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

p,
label {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
}

a{
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.nav-link,
button {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.nav-link:hover {
  transform: scale(1.05);
}


small{
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray);
}

a *{
  cursor: pointer;
}

.highlight-cian{
  background-color: var(--cian);
  padding: 0.1rem 0.75rem;
  border-radius: var(--border-radius-xs);
  color: var(--white);
  font-weight: 300;
  text-wrap: nowrap;

}

/*IMAGES-----------------------------*/

.icon-smaller{
  width: var(--size-xs);
  height: var(--size-xs);
}

.icon{
  width: var(--size-sm);
  height: var(--size-sm);
}

.icon-lg{
  width: var(--size-md);
  height: var(--size-md);
}

.contact-icon{
  width: var(--size-sm);
  height: var(--size-sm);
  background-color: var(--yellow);
  border-radius: 100%;
  padding: calc(var(--gap-xs)/2);
}

.image-md{
    width: 45%;
    height: 24rem;
    border-radius: var(--border-radius-md)
}

.image-lg{
    width: 45%;
    border-radius: var(--border-radius-md);
    object-fit: cover;

}

.image-fill{
    width: 100%;
    max-width: 40vw;
    min-width: 35vw;
    border-radius: var(--border-radius-md);
    object-fit: cover;

}

#background-image-feedback,
#background-image-cta{
  height: 90%;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*BUTTON-----------------------------*/

button *{
    cursor: pointer;
}

.button-default{
  padding: var(--gap-sm) var(--gap-lg);
  background-color: var(--yellow);
  border: 0px;
  border-radius: 999px;
  transition: 0.5s;
  cursor: pointer;
  margin-top: var(--gap-md);
  text-align: center;
}

.button-sm{
  padding: var(--gap-xs) var(--gap-sm);
  background-color: var(--blue);
  color: var(--white);
  border: 0px;
  border-radius: 999px;
  transition: 0.5s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.button-sm:hover{
  transform: scale(1.1);
}


.button-default:hover{
  transform: scale(1.05);
  transition: 0.5s;
}

/*BIGGEST-----------------------------*/
body {
    display: flex;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
}

main{
    display: flex;
    width: 100vw;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

section,
footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding:  var(--gap-lg) var(--padding-space);
    gap: var(--gap-md);
    overflow: hidden;
}

span{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--gap-xs);
  justify-content: flex-start;
}

.container-column{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}

.title-group{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--gap-md);
  width: 45%;
}

.container-row{
  display: flex;
  flex-direction: row;
  gap: var(--gap-md);
}

.container-space{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
}

/*NAVBAR-----------------------------*/

nav{
    background-color: var(--cian);
    width: 100vw;
    height: var(--size-md);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 var(--padding-space);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    align-items: center;
}

#container-nav-links{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav .nav-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 var(--gap-sm);
    cursor: pointer;
    transition: 0.5s ease;

}

.nav-link p{
    cursor: pointer;
    color: var(--white);
}

nav .nav-link:hover{
    transition: 0.5s ease;
    background-color: var(--dark-cian);
}

nav #subscription-link{
    background-color: var(--blue);
    transition: 0.5s ease;

}

nav #subscription-link:hover{
    color: var(--white);
    background-color: var(--dark-blue);
    transition: 0.5s ease;
}

#mobile-menu,
#mobile-menu-dropdown{
  display: none;
}

/*HERO-----------------------------*/

#hero{
  background-color: var(--blue);
  margin-top: var(--size-md);
  align-items: flex-start;
}

#hero-button-container{
  margin-top: var(--gap-md);
}

#hero .container-column{
  align-items: flex-start;
  gap: var(--gap-sm);
}

#hero .container-space{
  gap: var(--gap-xl);
}

/*APRESENTAÇÃO-----------------------------*/

#about{
  background-image: url(../assets/about-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  align-items: center;
}

#about .title-group{
  width: 45%;
}

#about p{
 color: var(--black);
}

#about-grid{
  width: 100%;
  gap: var(--gap-md);
  display: flex;
  justify-content: stretch;
}

#about-grid > *{
 width: 33%;
 max-width: 33%;
  height: 100%;

}

#about-grid span{
 padding: var(--gap-md);
   border-radius: var(--border-radius-sm);
   width: 100%;
  position: relative;
}

#about-grid p{
 color: var(--white);
 text-align: center;
 width: 100%;
}


#about-grid div > img{
 flex: 1;
 width: 100%;
 height: 18rem;
 max-height: 18rem;
 object-fit: cover;
  border-radius: var(--border-radius-sm);
}

#grid-triangle-detail{
  height: 1rem;
  width: auto;
  position: absolute;
  bottom: -1rem;
  left: 6rem;
}

/*info-----------------------------*/

#info{
  background-color: var(--white);
  background-image: url(../assets/info_background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  align-items: center;
}

#info .title-group *{
  color: var(--black);
}

.info-card {
  width: 100%;
  background-color: var(--blue);
  border-radius: var(--border-radius-sm);
  gap: var(--gap-sm);
  padding: var(--gap-md);
  text-align: center;
}

.info-card p{
  color: var(--gray);
}

/*PERSONAL-----------------------------*/
#personal {
  background-color: var(--black);
  gap: var(--size-lg);
}

#personal .image-lg{
  position: relative;
  height: 16rem;
  margin: 4rem 0rem 2rem 0rem;
  width: 40%;
  min-width: 40%;
}

#personal .image-lg > *{
  position: absolute;
  width: 80%;
  height: 16rem;
  border-radius: var(--border-radius-md);
  object-fit: cover;
}

#personal-video{
  top: -2rem;
  right: 0rem;
  z-index: 90;
}

#personal .container-column{
  align-items: flex-start;
  width: 50%;
}

/*FEEDBACK-----------------------------*/
#feedback {
  background-color: var(--cian);
  align-items: center;
  position: relative;
}

#feedback-card-container {
  display: flex;
  flex-direction: row;
  overflow-x: hidden; 
  scroll-behavior: smooth;
  gap: var(--gap-sm);
  scrollbar-width: none;
  overflow: visible;
  margin-top: var(--size-md);
  z-index: 97;
  
}

.feedback-quote{
  font-size: 6rem;
  margin-top: 3rem;
  line-height: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--yellow);
  transform: scaleY(-1) scaleX(-1);
}


.feedback-card {
  background-color: var(--black);
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
  transition: transform 0.3s ease;
  align-items: center;
}

.feedback-card:hover {
  transform: translateY(-0.5rem);
}

.feedback-info {
  padding: var(--gap-md);
  padding-top: var(--gap-lg);
  text-align: center;
  width: 100%;
  gap: var(--gap-xs);
  transition: 0.4s;
}

.feedback-image {
  width: var(--size-lg);
  height: var(--size-lg);
  position: absolute;
  top: calc(var(--size-lg) / -2);
  background-size: cover;
  background-position: center;
  border: 0.75rem solid var(--black);
  border-radius: 999px;
}

/*CTA-----------------------------*/

#cta{
  background-color: var(--white);
  position: relative;
}

#cta .title-group,
#cta .title-group *{
 color: var(--black) !important;
 width: 100%;
}

#cta .button-default{
  background-color: var(--blue);
}

#cta .container-space{
  z-index: 95;
}


/*CONTACT-----------------------------*/

#contact{
  background-color: var(--blue);
  text-align: center;
}

#contact :first-child span{
  width: 100%;
}

#contact div{
  gap: var(--gap-sm);
}

#contact :last-child {
  text-align: center;
}

/*EFEITO DIGITAÇÃO-----------------------------*/

#video-container{
  position: relative;
}

.video-overlay {
  position: absolute;
  width: 80%;
  top: -1.5rem;
  right: -2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.bubble {
  background: var(--black);
  color: var(--white);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: 99px;
  font-size: 0.9rem;
  text-wrap: nowrap;
  z-index: 90;
}

.bubble.right {
  align-self: flex-end;
}

/* Efeito de digitação */
.typing-text {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid transparent;
  letter-spacing: 0.02em;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--yellow);
  margin-left: 4px;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

