body{
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: linear-gradient(270deg, var(--gray-50), var(--gray-100), var(--gray-200));
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

/*background animation*/

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.text-center-block {
    text-align: center;
    margin: auto 0;
    max-width: 800px;
}

small{
    display: block;
}

/*buttons*/

.btn-primary{
    background-color: var(--gray-800);
    border-radius: 8px;
    color: white !important;
    border: none;
    padding: 8px 24px 8px 24px;
    font-size: 1.2rem;
}

.btn-secondary{
    background-color: transparent;
    border-radius: 8px;
    border: 2px solid var(--gray-800);
    color: var(--gray-800);
    padding: 8px 24px 8px 24px;
    font-size: 1.2rem;
    text-decoration: none;
    gap: 8px;
}

.btn-secondary:hover{
    background-color: var(--gray-300);
    border: 2px solid var(--gray-900);
    color: var(--gray-900);
}

/*colors*/

:root{
    --gray-50: #FEFDFD;
    --gray-100: #FEF7EE;
    --gray-200: #F8F4EF;
    --gray-300: #EADFCF;
    --gray-400: #DAD0C2;
    --gray-500: #BEB3A3;
    --gray-600: #797063;
    --gray-700: #4A4032;
    --gray-800: #3C3730;
    --gray-900: #302B24;

    --blue-50: #ECF3FC;
    --blue-500: #3861D4;

    --red-500: #AD3F25;
    --green-500: #33A373;
}


/*menu*/

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.left, .center, .right {
  display: flex;
  align-items: center;
}

.menu a{
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--gray-500);
}

.menu a:hover{
    color: var(--gray-800);
}

.menu a.active{
    color: var(--gray-800);
    font-weight: 800;
}

.zoom {
    transition: transform .5s;
}

.zoom:hover {
    transform: scale(1.05);
}

.center-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
}

/*footer*/

footer{
    height: 95vh;
    padding-top: 10vh;
    background-image: url(img/metal-opacity.png);
    background-repeat: no-repeat;
    background-position: top center;
}

footer h2{
    font-weight: 700;
    color: var(--gray-800);
}

footer p{
    font-size: 1.6rem;

}

footer p span{
    font-size: 1rem;
    color: var(--gray-500);
}

footer a{
    color: var(--gray-500);
    text-decoration: none;

}

footer a:hover{
    color: var(--gray-800);
    text-decoration: none;
}

footer nav ul li{
    list-style: none;
}

.contactsandmenu{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.left-block {
    position: relative;
}

.emailandphone {
    position: absolute;
    bottom: 0;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    font-size: 1.4rem;
}

.social{
  margin-top: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social a{
  padding: 15px;
  font-size: 2em;
  color: var(--gray-800);
}

.social a:hover{
    color: var(--gray-900);
}

/*>>>>>>>>>>>>INDEX<<<<<<<<<<<<*/

/*hero*/

.hero {
  min-height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -10dvh;
}

.hero .intro{
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--gray-800);
}

.hero .headline{
    margin-top: -10px;
    color: var(--gray-500);
    font-size: 1.2rem;
}

.rotating {
  position: relative;
  height: 3em;
  width: 100%;
  max-width: 700px;
  margin-top: 24px;
  color: var(--gray-800);
}

.rotating p{
    font-weight: 800;
    font-size: 3rem;
}

.line {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateY(20px);
}

.line.active {
  opacity: 1;
  transform: translateY(0);
}

/*showcase*/

.showcase{
    background-color: white;
    border-radius: 40px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 48px;
    border: solid 1px var(--gray-200);
}

.showcase-img{
    max-width: 100%;
    max-height: 100%;
}

.showcase p{
    color: var(--gray-700);
    font-size: 1.1rem;
}

.showcase p small{
    color: var(--gray-700);
}

.showcase .client{
    font-size: 1.2rem;
    color: var(--gray-800);
}

.showcase .year{
    font-size: 1rem;
    color: var(--gray-500);
    justify-content: space-between;
    align-items: center;
    text-align: right;
}

.showcase .tittle{
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 12px;
    color: var(--gray-800);
}

.showcase .tags{
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.showcase .tags p{
    padding: 6px 12px 6px 12px;
    border: none;
    border-radius: 20px;
    background-color: var(--blue-50);
    font-weight: 600;
    color: var(--blue-500);
}

.metrics{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    display: grid;
    margin-bottom: 16px;
    margin-top: 16px;
}

.showcase hr{
    color: var(--gray-500);
}

/*>>>>>>>>>>>>about-me<<<<<<<<<<<<*/

.about-me-hero {
  background-image: url(img/map-bg.png);
  background-repeat: repeat-x; /* ESSENCIAL */
  background-position: 0 0;
  background-size: auto 100%;
  padding-top: 20vh;
  height: 100vh;
  margin-bottom: 25vh;

  animation: moveBg 120s linear infinite;
}

@keyframes moveBg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0;
  }
}

.about-me-hero p{
    font-size: 1.2rem;
}

.text{
    max-width: 680px !important;
    margin-left: auto;
    margin-right: auto;
}

.responsive {
    max-width: 100%;
    height: auto;
}

.carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
}

.track {
  display: flex;
  width: max-content;
  gap: 32px;

  animation: scroll 80s linear infinite;
}

.item {
  min-width: 250px;
}

.item img {
  width: 100%;
  border-radius: 8px;
  max-height: 70vh;
}

.item p {
  margin-top: 8px;
  font-size: 1rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.more-about-me{
    margin-top: 48px;
}

/*resume*/

.resume {
  max-width: 800px;
  margin: 0 auto;
}

.resume img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resume-page{
    background-color: white;
    padding: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.resume-page h1{
    font-weight: 800;
}

.tagline{
    font-size: 1.2rem;
    color: #696669;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: space-between;
}

.contact-line span {
  opacity: 0.7;
}

.summary{
    margin-top: 24px;
    color: #696669;
    text-align: justify;
}

.section{
    background-color: #F2F2F2;
    padding: 16px 8px 8px 8px;
    margin-top: 24px;
}

.section h5{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
}

.work-experience{
    margin-top: 24px;
}

.work-experience h4{
    font-size: 1.2rem;
    font-weight: 800;
}

.work-experience ul{
    margin-top: 16px;
    margin-left: -12px;
}

.work-experience li{
    line-height: 1.4rem;

}

.work-experience li p{
    margin-bottom: 8px;
    color: #696669;
}

.work-experience hr{
    margin-top: 24px;
}

.row-resume {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.left-resume {
  display: flex;
  align-items: center;
  gap: 8px;
}

.right-resume{
    float: right;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.right-resume p{
    color: #999999;
}

.education{
    margin-top: 16px;
}

.skills{
    margin-top: 16px;
}

.skills h5{
    font-weight: 800;
    font-size: 1.4;
}

.skills p{
    color: #696669;

}

/*>>>>>>>>>>case studie<<<<<<<<<<*/

.case-cover {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-size: cover;
  background-position: center;
  margin-top: -112px;
  flex-direction: column;
}

.cover-humankind{
    background-image: url(img/humankind/human-kind-cover.jpg);
}

.cover-tapclicks{
    background-image: url(img/tapclicks/dashboards-cover.jpg);    
}

.cover-blockcerts{
    background-image: url(img/blockcerts/blockcerts-cover.jpg);    
}

.case-tittle{
    text-align: center;
    padding-top: 98px;
    padding-bottom: 98px;
}

.case-tittle h1{
    font-size: 6rem;
    font-weight: 800;
}

.humankind-tittle{
    background-image: linear-gradient(45deg, #AD3F25, #E17324);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.tapclicks-tittle{
    background-image: linear-gradient(45deg, #73caec, #032153);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.blockcerts-tittle{
    background-image: linear-gradient(45deg, #AEDF23, #1AC034);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.case-studie-details{
    display: flex;
    margin-top: 48px;
    margin-bottom: 98px;
    justify-content: space-between;
}

.case-studie-details h6{
    text-transform: uppercase;
    color: var(--gray-500);
}

.case-studie-details p{
    margin: 0;

}

.mini-section{
    margin-top: 98px;
}

/*side-menu*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.layout {
  display: flex;
}

.sidebar {
  width: 240px;
  height: 100vh;
  background: transparent;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 20px;
}


.sidebar.collapsed {
  width: 48px;
}

/* MENU */

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: var(--gray-500);
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 4px;
}

.menu-item:hover {
  background: var(--gray-300);
}

.menu-item.active {
  background: var(--gray-300);
  color: var(--gray-800);
}

/* esconde textos do menu, EXCETO o toggle */
.sidebar.collapsed .menu-item:not(.toggle) .text_sidebar {
  display: none;
}

/* botão */

.toggle {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  color: var(--gray-800);
  margin-top: 0;
}

.sidebar.collapsed .toggle {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.sidebar.collapsed .toggle{
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.toggle .fa-arrow-right {
  display: none;
}

.sidebar.collapsed .toggle .fa-arrow-left {
  display: none;
}

.sidebar.collapsed .toggle .fa-arrow-right {
  display: inline;
}


/* CONTEÚDO */

.content {
  flex: 1;
  padding: 40px;
  margin-right: auto;
  margin-left: auto;
}

.content h6{
    text-transform: uppercase;
    color: var(--gray-500);
}

.content h1{
    color: var(--gray-800);
}

.content p{
    color: var(--gray-600);
    font-size: 1.2rem;
}

.columns{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    margin-top: 48px;
}

.two-columns{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    margin-top: 48px;
    gap: 16px;
}

.two-columns-fr{
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    margin-top: 48px;
    gap: 16px;
}

.three-columns{
    Display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    margin-top: 48px;
    gap: 16px;  
}


.four-columns{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: auto;
}

.five-columns{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    gap: auto; 
}

.six-columns{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: space-between;
    gap: auto;  
}



.case-section{
    margin-top: 98px;
}

.case-section a{
    color: inherit;
    text-decoration: inherit;
}

.case-section img{
    max-width: 100%;
}

.border-radius{
    border-radius: 24px;
}

.margin-top-16{
    margin-top: 24px;
}

/* TABLE */

.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.table-scroll {
  width: 100%;
  overflow-x: auto; /* scroll horizontal */

}

.comparison-table {
  width: max-content;   /* permite crescer */
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 48px;
  font-size: 14px;
    background-color: white;
}

.comparison-table img{
    max-height: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.comparison-table th,
.comparison-table td {
  min-width: 200px;      /* ← força largura padrão */
  max-width: 240px;
}

/* HEADER */
.comparison-table thead th {
  text-align: left;
  padding: 16px;
  font-weight: 600;
  z-index: 3;
}

.comparison-table thead th:first-child {
  z-index: 4;
}

.content {
  min-width: 0;
}

/* CELLS */
.comparison-table td {
  padding: 12px;
  vertical-align: middle;
}

/* ZEBRA */
.comparison-table tbody tr:nth-child(even) {
  background: var(--gray-100);
}

/* sticky base */
.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

/* zebra aplicado na coluna sticky */
.comparison-table tbody tr:nth-child(even) td:first-child {
  background: var(--gray-100);
}

.comparison-table tbody tr:nth-child(odd) td:first-child {
    background-color: white;

}

/* header continua com sua cor */
.comparison-table thead th:first-child {
    background-color: #EDE6DB;
}

.proto-persona{
    left: auto;
    right: auto;
    text-align: center;
}

.proto-persona h4{
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--gray-500);
}

.proto-persona img{
    max-width: 120px;
    margin-bottom: 12px;
    border-radius: 100%;
}

.horizontal{
    display: flex;
    gap: 24px; /* espaço entre os cards */
}


.hk-survey-bg{
    background-color: white;
    border-radius: 16px;
    margin-top: 98px;
    padding: 48px;
}

.hk-survey-bg p{
    background-color: #FCF9F4;
    padding: 16px;
    border-radius: 8px;

}

.hk-survey-take-away{
    background-color: #FCF9F4;
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
}

:root{
    --track: #EDE8DF;         /* cor do trilho */
    --fill:  11 64.8% 41.2%;     /* HSL (roxo de exemplo) */
    --radius: 12px;
}

.result{
    position: relative;
    background: var(--track);
    border-radius: var(--radius);
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;
    margin: .625rem 0;
    overflow: hidden;

    /* layout do texto */
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: .75rem;
    align-items: center;
}

/* barra preenchida */
.result::before{
    content: "";
    position: absolute;
    inset: 0;
    width: calc(var(--p, 0) * 1%);
    background: hsl(var(--fill) / 0.18);
    /* gradiente opcional mais forte no começo */
    background-image:
            linear-gradient(90deg,
            hsl(var(--fill) / 0.35),
            hsl(var(--fill) / 0.20) 40%,
            hsl(var(--fill) / 0.18));
    border-radius: inherit;
    transform: translateZ(0); /* ajuda na suavização */
}

/* ===== Marquee base ===== */
.wf-marquee {
  --gap: 20px;           /* espaço entre imagens */
  --h: 400px;            /* altura das imagens (ajuste) */
  --duration: 120s;       /* velocidade do loop (maior = mais lento) */

  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: var(--h);  /* evita “buraco” enquanto carrega */
  box-sizing: border-box;
  user-select: none;
}

.wf-track {
  display: inline-flex;
  gap: var(--gap);
  align-items: center;
  /* Dica de performance */
  will-change: transform;
  /* A pista começa já preenchida na tela */
  animation: wf-scroll var(--duration) linear infinite;
  width: max-content; /* deixa a pista do tamanho exato do conteúdo */
}

.wf-marquee.rtl .wf-track {
  animation-direction: reverse; /* direita -> esquerda */
}

.wf-marquee img {
  height: var(--h);
  width: auto;
  flex: 0 0 auto;
  display: block;
  
}

/* Loop contínuo: a pista anda metade do próprio comprimento
   (porque duplicamos o conteúdo), e recomeça sem “pulo”. */
@keyframes wf-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Acessibilidade: se o usuário prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .wf-track { animation: none; }
}

/* Responsivo básico */
@media (max-width: 768px) {
  .wf-marquee { --h: 140px; --gap: 12px; --duration: 45s; }
}


#research{
  padding-top: 98px;
  padding-bottom: 98px;
}


/* rótulos acima da barra */
.result .label,
.result .pct{
    position: relative; /* fica acima do ::before */
    z-index: 1;
}

.take-away{
  background-color: #FCF9F4;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);

}

.survey-take-away{
    margin-top: 24px;
    margin-top: auto;
}

.testimony{
    background-color: white;
    padding: 16px;
    border-radius: 16px;
    margin-top: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
}

.testimony img{
    max-width: 60px;
    margin-bottom: 16px;
}

.wireframes{
    max-width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.089);
    padding: 24px;
    border-radius: 12px;
}

.block{
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.block img{
    flex: 0 0 auto;
    max-height: 400px;
    border-radius: 8px;
}

.block-top {
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.card2{
    padding: 24px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
}

.card-green{
    padding: 24px;
    background-color: #76E29A20;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 46, 12, 0.08), 0 2px 8px rgba(0,0,0,0.06);
}

.card-red{
    padding: 24px;
    background-color: #AD3F2520;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(54, 0, 0, 0.08), 0 2px 8px rgba(0,0,0,0.06);  
}

.highlight_yellow{
    background-color: #CCE58780;
    border-radius: 8px;
    padding: 4px;
}

.highlight_green{
    background-color: #76E29A80;
    border-radius: 8px;
    padding: 4px;
}

.highlight_orange{
    background-color: #F1AC6D80;
    border-radius: 8px;
    padding: 4px;
}

.highlight_blue{
    background-color: #1C9EEF80;
    border-radius: 8px;
    padding: 4px;
}

.highlight_purple{
    background-color: #CB77D980;
    border-radius: 8px;
    padding: 4px;
}

/*survey*/

.ux-survey-wrapper {
        width: 360px;
    }

    .ux-survey-item {
        padding: 8px 0;
    }

    .ux-survey-scale {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .ux-survey-number {
        font-size: 20px;
        color: #c7c0b5;
        width: 12px;
        flex-shrink: 0;
    }

    /* BAR */

    .ux-survey-bar-container {
        position: relative;
        width: 100%;
    }

    .ux-survey-bar {
        position: relative;
        width: 100%;
        height: 32px;
        border-radius: 8px;
        overflow: hidden;
        background: #d9d4cc;
    }

    .ux-survey-fill {
        height: 100%;
        background: #aa9977;
        border-radius: 8px 0 0 8px;
    }

    /* VALUE TAG */

    .ux-survey-value {
        position: absolute;
        top: -14px;
        transform: translateX(-50%);
        background: #2d2d2d;
        color: white;
        font-size: 18px;
        font-weight: 700;
        padding: 8px 14px;
        border-radius: 10px;
        line-height: 1;
    }

    .ux-survey-value::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -7px;
        width: 14px;
        height: 14px;
        background: #2d2d2d;
        rotate: 45deg;
    }

    /* LABELS */

    .ux-survey-labels {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        font-size: 18px;
        color: #4a4a4a;
    }


    /*impact*/
    .impact {
  max-width: 400px;
  font-family: sans-serif;
}

.impact h3 {
  margin-bottom: 20px;
}

.bar-item {
  margin-bottom: 16px;
}

.bar-item span {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.bar {
  width: 100%;
  height: 32px;
  background: #EDE6DB;
  border-radius: 8px;
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: 8px;
  background-color: red;
  transition: width 0.6s ease;
}