/*
Theme Name: Portifólio 2026
Description: Portifólio de Rodrigo Simoni de 2026.
Version: 2.0
Author: Rodrigo Simoni
*/

/** Revela o conteúdo com a rolagem **/
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.noselect {
    user-select: none;          /* padrão moderno */
    -webkit-user-select: none;  /* Safari/Chrome */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer */
}

/* Reset CSS */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
}

/* Tela de loading */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  flex-direction: column;
}

.loader-content {
  text-align: center;
}

.loader-content img {
  width: 120px;
  height: auto;
}

.loader-logo {
  font-size: 20px;
  font-weight: 400;
  color: #eee;
  margin-bottom: 1rem;
  animation: fadePulse 1.5s infinite ease-in-out;
  text-transform: uppercase;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.2s ease;
}

@keyframes fadePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

::selection {
  background-color: #ce84e1;
  color: #000;
}

::-webkit-selection {
  background-color: #fff;
  color: #000;
}

::-moz-selection {
  background-color: #fff;
  color: #000;
}

/** Revela o conteúdo com a rolagem **/
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.noselect {
	user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/** Reset das tags do HTML 5 **/
header, nav, section, article, aside, footer {display: block;}

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

body, html {
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden !important;
	transition: background-color 0.3s ease;
	background: #0c0c0c;
    color: #fff;;
}

body {
	font-family: "Poppins", sans-serif;
	width: 100%;
	height: auto;
	display: table;
    margin: 0 !important;
    padding: 0 !important
}

body a:hover, button:hover {
	transition: 0.1s ease-in-out all;
	-webkit-transition: 0.1s ease-in-out all;
	-o-transition: 0.1s ease-in-out all;
}

/************** MENU **************/

.nav-wrapper {
    position: fixed;
    top: 30px;
    left: 30px;
    height: 70px;
    background: #0c0c0c;
    border: 1px solid #303030;
    padding: 30px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 16px;
}

.nav-wrapper,
.whatsapp-btn {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hide-scroll {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.nav-content {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.logo-group small {
	font-size: 16px;
	font-weight: 400;
	color: #777;
    text-transform: uppercase;
}

.logo-group:hover {
  color: #fff;
}

.logo-reveal {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    display: inline-block;
}

.nav-wrapper:hover .logo-reveal {
    max-width: 100px;
    opacity: 1;
}

.menu-group {
    display: flex;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap; /* Evita que os links quebrem em várias linhas */
    gap: 12px;
}

.nav-wrapper:hover .menu-group {
    max-width: 600px;
    opacity: 1;
    border-left: 1px solid #303030;
    padding-left: 10px;
	margin-left: 10px;
}

.menu-group a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    color: #fff;
    margin-left: 20px;
}

.menu-group a:hover {
    color: #ce84e1;
}

.nav-link:visited {
    color: #888;
}

/* Mobile Nav Trigger */
.mob-nav-trigger {
    display: none;
    position: fixed;
    top: 20px;
    left: 10px;
    background: #0c0c0c;
    border: 1px solid #303030;
    padding: 14px 16px;
	border-radius: 8px;
    z-index: 1001;
    align-items: center;
    cursor: pointer;
}

.mob-logo {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.hamburger {
    display: flex;
    flex-direction: column;
}

.hamburger span {
    width: 20px;
    height: 2px;
	margin: 2px 12px 2px 0;
    background: #777;
}

/* Mobile Menu Overlay */
.mob-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c0c0c;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-menu-overlay.active {
    transform: translateY(0);
}

.mob-menu-close {
    position: absolute;
    top: 60px;
    left: 50%;
    color: #fff;
    font-size: 46px;
    font-weight: 200;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
    border: 1px solid #444;
}

.mob-menu-inner {
    text-align: center;
}

.mob-slogan {
    color: #888;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 20px 0;
}

.mob-links {
    display: flex;
    flex-direction: column;
}

.mob-links a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.mob-link:hover {
    opacity: 0.7;
    color: #ce84e1;
}

.nav-link:visited {
    color: #fff;
}

.mob-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.contact-btn {
    flex: 1;
    padding: 10px 18px;
    color: #111 !important;
    border: 1px solid #777;
    border-radius: 120px;
    text-decoration: none;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center;
    display: block;
    min-width: 140px;
    box-sizing: border-box;
    background: #fff;
    padding: 12px 24px;
}

@media (max-width: 768px) {

    .nav-wrapper {
        display: none;
    }

    .mob-nav-trigger {
    	display: flex;
    }

}

/* Botão Whatsapp */

.whatsapp-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    height: 70px;
    border: 1px solid #0c0c0c;
    background: #0c0c0c;
    padding: 30px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
}

.whatsapp-btn:hover {
    color: #ce84e1;
    border: 1px solid #ce84e1;
}

.btn-contato-mobo {
    display: none;;
}

@media (max-width: 768px) {
    
    .whatsapp-btn {
        display: none;
    }

     .whatsapp-btn:hover {
        color: #fff;
        border: 1px solid #fff;
    }

    .btn-contato-mobo {
        display: flex;
        position: fixed;
        top: 20px;
        right: 10px;
        background: #0c0c0c;
        border: 1px solid #0c0c0c;
        padding: 14px 16px;
        border-radius: 8px;
        z-index: 1001;
        align-items: center;
        cursor: pointer;
        }

    a.btn-contato-mobo {
        color: #fff;
        border: 1px solid #0c0c0c;
        text-decoration: none;
    }

    a.btn-contato-mobo:hover {
        color: #ce84e1;
        border: 1px solid #ce84e1;
    }

}

/************** HERO **************/

.hero {
	width: 100%;
	height: auto;
	padding: 180px 0 60px 0;
}

.hero h1 {
	font-size: 56px;
	font-weight: 500;
    line-height: 120%;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #ce84e1;
}

.status-container {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #96ffc9;
  margin-bottom: 20px;
}

.status-container {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #96ffc9;
}

.status-dot-wrapper {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #96ffc9;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 0 5px rgba(46, 204, 113, 0.5);
  z-index: 2;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.status-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(46, 204, 113, 0.4);
  opacity: 0;
  animation: ringMove 2s infinite;
}

.status-ring.ring2 {
  animation-delay: 0.8s;
}

@keyframes ringMove {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

.status-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero a {
    border: 1px solid #ccc;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 40px 0 50px 0;
    transition: all 0.2s ease;
}

.hero a:hover {
    color: #ce84e1;
    border: 1px solid #ce84e1;
}


@media (max-width: 768px) {

	.hero {
		padding-top: 180px;
	}

    .hero h1 {
		font-size: 30px;
		line-height: 120%;
		font-weight: 600;
		color: #fff;
	}

    .hero a {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        display: block;
        margin-top: 80px;
    }

}

/************** WORK HOME **************/

.work-home {
    width: 100%;
    height: auto;
    display: table;
    margin-bottom: 20px;
}

.work-home h6 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.work-home h6 span {
    color: #ce84e1;
}

.work-home-card {
    background: #111;
    border-radius: 24px;
    padding: 40px;
}

.work-home-card img {
    margin: 20px 0 0 0;
    border-radius: 8px;
}

.work-home-card h4 {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.work-home-card h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    color: #fff;
    margin: 28px 0;
}

.work-home-card h2 span {
    color: #ce84e1;
}

.work-home-card h3 {
    font-size: 22px;
    font-weight: 400;
    color: #666;
}

.work-home-card a {
    border: 1px solid #ccc;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 32px 0 50px 0;
    transition: all 0.2s ease;
}

.work-home-card a:hover {
    color: #ce84e1;
    border: 1px solid #ce84e1;
}

.work-home-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: #666;
    margin: 20px 0 0 0;
}

.work-home-card p span {
    font-size: 46px;
    font-weight: 400;
    line-height: 130%;
    color: #fff;
}

.stats {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {

    .work-home-card {
        padding: 40px 20px;
        margin-bottom: 20px;
        }

    .work-home h6 {
        font-size: 20px;
    }

    .work-home-card h2 {
        font-size: 24px;
        line-height: 120%;
        }

    .work-home-card a {
        width: 100%;
        padding: 10px 0;
        display: block;
        text-align: center;
    }

    .work-home-card p {
        margin: 0;
    }

    .work-home-card p span {
        font-size: 40px;
        font-weight: 400;
    }
}

/************** SERVIÇOS HOME **************/

.servicos-home {
    width: 100%;
    height: auto;
    display: table;
    margin: 160px 0 120px 0;
}

.line-service {
	display: flex;
    padding: 24px 10px;
    border-bottom: 1px solid #303030;
}

.line-service h3 {
    font-size: 34px;
    font-weight: 500;
    color: #fff;
}

.line-service span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 8px 12px;
    border: 1px solid #fff;
    border-radius: 14px;
    margin: 0 4px;
    transition: all 0.1s ease;
}

.line-service span:hover {
    color: #ce84e1;
    border: 1px solid #ce84e1;
    transition: all 0.1s ease;
}

@media (max-width: 768px) {

.servicos-home {
    margin: 0 0 80px 0;
}

.line-service {
	display: block;
    border: none;
}

.line-service h3 {
    font-size: 30px;
    margin-bottom: 14px;
}

.line-service span {
    float: left;
    font-size: 14px;
    font-weight: 300;
    margin: 12px 12px 0 0;
    padding: 6px 10px;
}

}

/************** SOBRE HOME **************/

.sobre-home {
    width: 100%;
    height: auto;
    display: table;
    margin: 60px 0 160px 0;
}

.sobre-home h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 120%;
    color: #fff;
    margin: 34px 0;
}

.sobre-home h2 span {
    color: #ce84e1;
}

.sobre-home p {
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
    color: #ccc;
    margin: 26px 0;
}

.sobre-home p span {
    color: #ce84e1;
}

.sobre-home img {
    margin-top: 40px;
    border-radius: 18px;
}

@media (max-width: 768px) {
    
    .sobre-home {
        margin: 0 0 100px 0;
    }

    .sobre-home h2 {
        font-size: 32px;
        font-weight: 500;
        line-height: 110%;
    }

}

/************** CONTATO HOME **************/

.contato-home {
    width: 100%;
    height: auto;
    display: table;
    margin: 120px 0;
    text-align: center;
}

.bg-contato-home {
    background: #111;
    border-radius: 24px;
    padding: 100px 0;
}

.contato-home h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 110%;
    color: #fff;
    margin-bottom: 70px;
}

.contato-home a {
    width: 100%;
    border: 1px solid #ccc;
    padding: 16px 32px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.contato-home a:hover {
    color: #ce84e1;
    border: 1px solid #ce84e1;
    border-right: 4px solid #ce84e1;
    border-bottom: 4px solid #ce84e1;
}

@media (max-width: 768px) {

    .contato-home {
        margin: 100px 0;
    }

    .bg-contato-home {
        padding: 80px 40px;
    }

    .contato-home h2 {
        font-size: 28px;
        line-height: 120%;
        margin-bottom: 40px;
    }

    .contato-home a {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        display: block;
        font-size: 16px;
        border-radius: 12px;
    }

}

/************** FOOTER **************/

footer {
    width: 100%;
    height: auto;
    background: #111;
    padding: 80px 0 60px 0;
    margin-top: 100px;
    text-align: left;
}

footer h4 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 22px;
}

footer ul {
    font-size: 18px;
    font-weight: 500;
}

footer ul li {
    list-style: none;
    margin: 12px 0;
}

footer ul li a {
    color: #666;
    text-decoration: none;
}

footer ul li a:hover {
    color: #444;
}

.top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 50%;
    color: #0c0c0c;
    text-decoration: none;
    font-size: 24px;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0; /* começa invisível */
    pointer-events: none; /* evita clique quando invisível */
}

.top-btn.visible {
    opacity: 1;
    pointer-events: auto; /* habilita clique quando visível */
}

.top-btn:hover {
    background: #0c0c0c;
    color: #fff;
    border: 1px solid #303030;
    transform: scale(1.1); 
}

@media (max-width: 768px) {

    footer {
        width: 100%;
        height: auto;
        background: #111;
        padding: 40px 0;
        margin-top: 100px;
    }

}

/************** PÁGINA DE CASE **************/

.case {
    width: 100%;
    height: auto;
    display: table;
}

.case-hero {
	width: 100%;
	height: auto;
	padding: 180px 0 120px 0;
}

.case-hero h5 {
    font-size: 22px;
    font-weight: 400;
    color: #ce84e1;
}

.case-hero h1 {
	font-size: 62px;
	font-weight: 500;
    line-height: 120%;
    margin: 26px 0 50px 0;
}

.case-hero h1 span {
    color: #ce84e1;
}

.case-hero small {
    font-size: 16px;
    font-weight: 400;
    color: #888;
    padding: 8px 12px;
    border: 1px solid #888;
    border-radius: 14px;
    margin: 0 4px;
}

.case-hero p {
    font-size: 20px;
    line-height: 160%;
    font-weight: 300;
    color: #888;
    margin-top: 50px;
}

.case-hero img {
    margin-top: 80px;
    border-radius: 10px;
}

/** Overview **/

.overview {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 0;
}

.overview h6 {
    font-size: 32px;
    font-weight: 400;
    line-height: 160%;
    color: #fff;
}

.overview h6 span {
    color: #ce84e1;
}

.overview h5 {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.overview p {
    font-size: 16px;
    line-height: 160%;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
}

.overview a {
    border: 1px solid #888;
    padding: 10px 20px;
    display: inline-block;
    align-items: center;
	border-radius: 150px;
    color: #888;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    margin: 40px 12px 0 0;
    transition: all 0.2s ease;
}

.overview a:hover {
    color: #fff;
    border: 1px solid #fff;
}

/** Objetivo **/

.objetivo {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 100px;
}

.objetivo h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.objetivo p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

/** Numbers **/

.numbers {
    width: 100%;
    height: auto;
    display: table;;
    margin-top: 60px;
}

.numbers article {
    background: #111;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 20px;
}

.numbers article h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #888;
    text-transform: uppercase;
}

.numbers article h5 {
    font-size: 54px;
    font-weight: 400;
    color: #ce84e1;
    margin: 30px 0 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;        
}

.numbers article h5 span {
    font-size: 40px;
    font-weight: 300;
}

.numbers article p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #888;
}

/** Research **/

.research {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 140px;
}

.research h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.research p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

.research img {
    margin-top: 80px;
    border-radius: 10px;
}

/** Arquitetura **/

.arquitetura {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 140px;
}

.arquitetura h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.arquitetura p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

.arquitetura img {
    margin-top: 80px;
    border-radius: 10px;
}

/** Wireframe **/

.wireframe {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 140px;
}

.wireframe h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.wireframe p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

.wireframe img {
    margin-top: 80px;
    border-radius: 10px;
}

/** User Flow **/

.user-flow {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 140px;
}

.user-flow h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.user-flow p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

.user-flow img {
    margin-top: 80px;
    border-radius: 10px;
}

/** Interface **/

.interface {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 100px;
}

.interface h6 span {
    color: #ce84e1;
}

.interface h6 {
    font-size: 32px;
    font-weight: 400;
    line-height: 160%;
    color: #fff;
    margin-bottom: 100px;
}

.interface h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.interface p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

.interface img {
    margin-top: 80px;
    border-radius: 10px;
}

/** Aprendizados **/

.aprendizados {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 100px;
    margin-bottom: 100px;
}

.aprendizados h6 span {
    color: #ce84e1;
}

.aprendizados h6 {
    font-size: 32px;
    font-weight: 400;
    line-height: 160%;
    color: #fff;
    margin-bottom: 100px;
}

.aprendizados h3 {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.aprendizados p {
    font-size: 18px;
    line-height: 190%;
    font-weight: 200;
    color: #fff;
}

.aprendizados img {
    margin-top: 60px;
    border-radius: 10px;
}

/** Relacionados **/

.relacionados {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 100px;
}

.relacionados h5 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.relacionados h5 span {
    color: #ce84e1;
}

.image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.relacionados h4 {
    font-size: 22px;
    font-weight: 300;
    color: #ce84e1;
    margin: 30px 0 20px 0;
}

.relacionados h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    color: #fff;
    margin-bottom: 20px;
}

.relacionados p {
    font-size: 18px;
    line-height: 160%;
    font-weight: 300;
    color: #888;
}

.relacionados a {
    text-decoration: none;;
}

@media (max-width: 768px) {

    .case {
        margin: 0;
    }

	.case-hero {
        padding: 160px 0 40px 0;
    }

    .case-hero h5 {
        font-size: 20px;
    }

    .case-hero h1 {
        font-size: 36px;
    }

    .case-hero small {
        font-size: 14px;
        margin: 0 2px 10px 2px;
        display: inline-block;
    }

    .case-hero p {
        font-size: 18px;
        line-height: 160%;
        margin-top: 50px;
    }

    .case-hero img {
        margin-top: 80px;
        border-radius: 12px;
    }

    .case-hero img {
        margin-top: 60px;
    }

    .overview {
        margin-top: 10px;
    }

    .overview h6 {
        font-size: 22px;
        line-height: 160%;
        font-weight: 400;
        margin-bottom: 40px;
    }

    .overview h5 {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 6px;
    }

    .overview p {
        font-size: 16px;
        line-height: 160%;
        font-weight: 200;
    }

    .overview a {
        width: 100%;
        display: table;
        margin: 20px 0 0 0;
        text-align: center;
    }

    .lista-sobre {
        margin-top: 60px;
    }

    .objetivo {
        margin-top: 60px;
    }

    .objetivo h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .objetivo p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .numbers {
        margin-top: 60px;
    }

    .numbers article h6 {
        font-size: 16px;
    }

    .numbers article h5 {
        font-size: 48px;
        font-weight: 500;
        margin: 20px 0 4px 0;       
    }

    .numbers article p {
        font-size: 16px;
        line-height: 140%;
    }

    .research {
        margin-top: 60px;
    }

    .research h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .research p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .research img {
        margin-top: 60px;
    }

    .arquitetura {
        margin-top: 60px;
    }

    .arquitetura h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .arquitetura p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .arquitetura img {
        margin-top: 40px;
    }

    .wireframe {
        margin-top: 60px;
    }

    .wireframe h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .wireframe p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .wireframe img {
        margin-top: 40px;
    }

    .user-flow {
        margin-top: 60px;
    }

    .user-flow h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .user-flow p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .user-flow img {
        margin-top: 40px;
    }

    .interface {
        margin-top: 60px;
    }

    .interface h6 {
        font-size: 22px;
        line-height: 160%;
        font-weight: 400;
        margin-bottom: 60px;
    }

    .interface h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .interface p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .interface img {
        margin-top: 40px;
    }

    .aprendizados {
        margin-top: 60px;
    }

    .aprendizados h6 {
        font-size: 22px;
        line-height: 160%;
        font-weight: 400;
        margin-bottom: 60px;
    }

    .aprendizados h3 {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .aprendizados p {
        font-size: 18px;
        line-height: 170%;
        font-weight: 200;
        color: #fff;
    }

    .aprendizados img {
        margin-top: 40px;
    }

    .relacionados {
        width: 100%;
        margin-top: 0;
    }

    .relacionados h5 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .relacionados h4 {
        font-size: 18px;
        margin: 30px 0 10px 0;
    }

    .relacionados h3 {
        font-size: 20px;
        margin-bottom: 20px;

    }

    .relacionados p {
        font-size: 18px;
        line-height: 140%;
    }

    .gx-5 {
        margin: 0;
        padding: 0;
    }

}

/************** PAGE INTERNA **************/

.page-interna {
	width: 100%;
	height: auto;
	padding: 200px 0 80px 0;
}

.page-interna h1 {
	font-size: 76px;
	font-weight: 500;
    line-height: 120%;
}

.page-interna h1 span {
    color: #ce84e1;
}

.page-interna p {
    font-size: 20px;
    line-height: 160%;
    font-weight: 300;
    color: #888;
    margin: 40px 0 50px 0;
}

.page-interna img {
    margin-top: 60px;
    border-radius: 10px;
}

.page-interna a {
    border: 1px solid #ccc;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-interna a:hover {
    color: #ce84e1;
    border: 1px solid #ce84e1;
}

@media (max-width: 768px) {

	.page-interna {
        padding: 180px 0 40px 0;
    }

    .page-interna h1 {
        font-size: 38px;
    }

    .page-interna p {
        font-size: 18px;
        line-height: 160%;
        margin-top: 30px;
    }

    .page-interna a {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        display: block;
        margin-top: 60px;
    }

    .page-interna img {
        margin-top: 20px;
    }

}

/************** SOBRE INTERNA **************/

.sobre-interna {
    width: 100%;
    height: auto;
    margin: 120px 0;
}

.contact-sidebar {
    width: 100%;
	background: #111;
    border-radius: 24px;
    padding: 30px;
}

.contact-sidebar h6 {
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
    color: #fff;
}

.contact-sidebar p {
    font-size: 16px;
    font-weight: 200;
    line-height: 150%;
    color: #888;
    margin: 20px 0;
}

.contact-sidebar a {
    width: 100%;
    border: 1px solid #888;
    padding: 10px 16px;
    display: inline-block;
    align-items: center;
	border-radius: 14px;
    color: #888;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    margin-top: 10px;
    text-align: center;
}

.contact-sidebar a:hover {
    color: #fff;
    border: 1px solid #fff;
}

.sobre-interna h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 120%;
    color: #fff;
    margin-bottom: 40px;
}

.sobre-interna p {
    font-size: 18px;
    font-weight: 300;
    line-height: 170%;
    color: #ccc;
    margin: 30px 0;
}

.sobre-interna span {
    color: #ce84e1;
}

.text-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; /* espaço entre as colunas */
}

.text-2-columns p {
  margin: 0;
}

@media (max-width: 768px) {

    .sobre-interna {
        margin: 60px 0;
    }

    .contact-sidebar {
        margin: 0 0 100px 0;
    }

    .sobre-interna h2 {
        font-size: 30px;
        font-weight: 500;
        line-height: 120%;
    }

    .text-2-columns {
        grid-template-columns: 1fr;
    }

}

/************** DEPOIMENTOS **************/

.depoimentos {
    width: 100%;
    height: auto;
    margin: 120px 0;
    background: #0c0c0c;
}

.depoimentos h5 {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    margin-bottom: 20px;
}

.depoimentos p {
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    color: #888;
    margin-bottom: 30px;
}

.depoimentos h6 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.depoimentos span {
    font-size: 18px;
    font-weight: 400;
    line-height: 170%;
    color: #888;
}

@media (max-width: 768px) {

    .depoimentos {
        margin: 20px 0;
    }

    .depoimentos h5 {
        font-size: 20px;
        font-weight: 400;
        line-height: 150%;
        margin-top: 60px;
    }

    .depoimentos p {
        font-size: 18px;
        margin-bottom: 20px;
    }

}

/************** CATEGORY **************/

.category {
	width: 100%;
	height: auto;
	padding: 180px 0 40px 0;
}

.category h1 {
    font-size: 90px;
    font-weight: 500;
    line-height: 90%;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

/** Article Index **/

.articles-index {
    width: 100%;
    height: auto;
    display: table;
    margin: 120px 0 60px 0;
}

.articles-index h5 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.articles-index h5 span {
    color: #ce84e1;
}

.image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.articles-index h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    color: #fff;
    margin: 30px 0 20px 0;
    padding-right: 40px;
}

.articles-index p {
    font-size: 18px;
    line-height: 160%;
    font-weight: 300;
    color: #888;
    margin-bottom: 100px;
    padding-right: 40px;
}

.articles-index a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.articles-index a:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {

    .category {
        padding: 200px 0 140px 0;
    }

    .category h1 {
        font-size: 48px;
        line-height: 100%;
    }

    .articles-index {
        margin: 40px 0 140px 0;
    }

    .articles-index h5 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .articles-index h3 {
        font-size: 20px;
        padding-right: 0;
    }

    .articles-index p {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 60px;
        padding-right: 0;
    }

    .gx-5 {
        margin: 0;
        padding: 0;
    }

}

/************** SINGLE **************/

.single-post {
    background: #f8f7f6;
}

.single {
	width: 100%;
	height: auto;
	padding: 180px 0 120px 0;
    text-align: center;
}

.single h6 {
    font-size: 14px;
    font-weight: 600;
    color: #0c0c0c;
}

.single h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 120%;
    color: #0c0c0c;
    margin: 40px 0;
}

.single h5 {
    font-size: 14px;
    font-weight: 600;
    color: #0c0c0c;
}

.single h5 span {
    color: #cc0000;
}

/** Artigo **/

.artigo {
    width: 100%;
    height: auto;
    display: table;
    text-align: left;
}

.artigo img {
    width: 100%;
    height: 550px;
    border-radius: 12px;
    object-fit: cover;
}

.artigo h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 130%;
    color: #0c0c0c;
    margin: 100px 0;
    text-align: center;
}

.artigo h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    color: #0c0c0c;
}

.artigo h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: #0c0c0c;
}

.artigo p {
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #0c0c0c;
    margin: 30px 0;
}

.artigo ul {
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #0c0c0c;
    margin: 30px 0;
}

.artigo ul li {
    list-style: disc;
    margin-left: 20px;
    margin: 14px 0 0 20px;
}

.artigo a {
    color: #cc0000;
    font-weight: 600;
    text-decoration: none;
    padding: 0 .25rem;
    margin: 0 -.25rem;
}

.artigo a:hover {
    color: #fff;
    background: #cc0000;
}

@media (max-width: 768px) {

    .single {
        padding: 160px 0 20px 0;
    }

    .single h6 {
        font-size: 16px;
    }

    .single h1 {
        font-size: 38px;
        line-height: 110%;
        margin: 30px 0;
    }

    .single h5 {
        font-size: 16px;
    }

    .artigo h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 130%;
        margin: 60px 0;
        padding: 0 20px;
    }

    .artigo h3 {
        font-size: 22px;
    }

    .artigo img {
        margin-top: 40px;
        height: auto;
    }

}

/** Posts Relacionados **/

.posts-relacionados {
    width: 100%;
    height: auto;
    display: table;
    margin-top: 100px;
    text-align: left;
}

.posts-relacionados h5 {
    font-size: 36px;
    font-weight: 500;
    color: #0c0c0c;
    margin-bottom: 40px;
}

.posts-relacionados h5 span {
    color: #cc0000;
}

.image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.posts-relacionados h4 {
    font-size: 22px;
    font-weight: 300;
    color: #0c0c0c;
    margin: 30px 0 20px 0;
}

.posts-relacionados h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    color: #0c0c0c;
    margin: 20px 0;
}

.posts-relacionados p {
    font-size: 18px;
    line-height: 160%;
    font-weight: 300;
    color: #0c0c0c;
}

.posts-relacionados a {
    text-decoration: none;;
}

@media (max-width: 768px) {

    .posts-relacionados {
        margin: 40px 0 140px 0;
    }

    .posts-relacionados h5 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 40px;
    }

    .posts-relacionados h3 {
        font-size: 20px;
        padding-right: 0;
    }

    .posts-relacionados p {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 60px;
        padding-right: 0;
    }

    .gx-5 {
        margin: 0;
        padding: 0;
    }

}