/*
Theme Name: Arise Bowie 2026
Description: Site da Arise Design Studio
Version: Arise Bowie 2026
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: #000;
  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: 24px;
  font-weight: 400;
  margin-bottom: 1rem;
  animation: fadePulse 1.5s infinite ease-in-out;
  color: #fff;
  text-transform: uppercase;
}

.loader-bar {
  width: 220px;
  height: 1px;
  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: #7F77DD;
  color: #000;
}

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

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

@media (max-width: 768px) {

    .loader-logo {
        font-size: 22px;
    }

    .loader-bar {
        width: 230px;
    }

}

/** 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: #000;
    color: #fff;;
}

body {
	font-family: "Inter", 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: #000;
    border: 1px solid #444;
    padding: 30px;
    display: flex;
    align-items: center;
    z-index: 9000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 20px;
}

.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: 20px;
    font-weight: 500;
}

.logo-group small {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

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

.text-static {
    font-weight: 600;
}

.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;
}

.menu-group ul li {
    list-style: none;
}

.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: #7F77DD;
}

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

/* Mobile Nav Trigger */
.mob-nav-trigger {
    display: none;
    position: fixed;
    top: 20px;
    left: 10px;
    background: #000;
    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: #fff;
}

/* Mobile Menu Overlay */
.mob-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    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;
    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: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

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

.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 #444;
    background: #000;
    padding: 30px;
    display: flex;
    align-items: center;
    z-index: 9000;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    width: fit-content;
	border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.whatsapp-btn:hover {
    color: #000;
    background: #fff;;
}

.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: #7F77DD;
        border: 1px solid #7F77DD;
    }

}

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

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

.hero h1 {
	font-size: 98px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -3px;
    margin-bottom: 80px;
}

.hero video {
    border-radius: 12px;
}

#word {
    color: #7F77DD;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes pop {
    0%   { opacity: 0; transform: translateY(100%); }
    60%  { opacity: 1; transform: translateY(-8%); }
    100% { opacity: 1; transform: translateY(0); }
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: none; /* Esconde o cursor padrão */
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* O círculo customizado que segue o mouse */
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none; /* Não interfere no clique do container */
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
    opacity: 0;
}

.cursor-circle span {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Mostrar o círculo no hover */
.video-container:hover .cursor-circle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Modal de vídeo em tela cheia */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: none; /* Escondido por padrão */
    z-index: 8000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.full-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Botão de fechar */
.close-btn {
    position: absolute;
    top: 120px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .cursor-circle {
        display: none; /* Esconde o cursor customizado em dispositivos móveis */
    }
    .video-container {
        cursor: pointer;
        height: 270px;
    }
}

@media (max-width: 768px) {

	.hero {
		padding-top: 180px;
	}

    .hero h1 {
        font-size: 40px;
        font-weight: 600;
        line-height: 110%;
        letter-spacing: 0;
        margin-bottom: 40px;
    }

}

/************** SERVICES **************/

.services {
    width: 100%;
    height: auto;
    display: table;
    margin: 40px 0 100px 0;
}

.services a {text-decoration: none;}

.services h6 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 60px;
}

@media (max-width: 768px) {

    .services {
        margin: 0 0 80px 0;
    }

	.services h6 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 40px;
    }

}

/** Presença **/

.presenca {
    padding: 40px;
    border-radius: 32px;
    background: #2C1C00;
    color: #f2c849;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px dashed #000;
}

.presenca:hover {
    border: 1px dashed #f2c849;
    background: #261700;
}

.presenca h4 {
    border: 1px solid #f2c849;
    padding: 10px 20px;
    display: flex;
    align-items: center;
	border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.presenca h2 {
    font-family: "Playfair Display", serif;
	font-size: 40px;
	font-weight: 400;
    line-height: 110%;
    margin: 30px 0;
}

.presenca p {
	font-size: 18px;
	font-weight: 300;
    line-height: 160%;
    margin-bottom: 40px;
}

.presenca span {
    border: 1px solid #f2c849;
    padding: 10px 20px;
	border-radius: 120px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {

    .presenca {
        padding: 30px;
        border-radius: 22px;
        display: table;
        margin-bottom: 20px;
    }

    .presenca h4 {
        display: table;
    }

    .presenca h2 {
        font-size: 36px;
        font-weight: 500;
    }

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

    .presenca span {
        font-size: 14px;
        font-weight: 500;
        display: inline-block;
        margin: 0 12px 12px 0;
    }

}

/** Descoberta **/

.descoberta {
    padding: 40px;
    border-radius: 32px;
    background: #32110C;
    color: #fe5f2f;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px dashed #000;
}

.descoberta:hover {
    border: 1px dashed #fe5f2f;
    background: #2a0d0a;
}

.descoberta h4 {
    border: 1px solid #fe5f2f;
    padding: 10px 20px;
    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;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.descoberta h2 {
    font-family: "Playfair Display", serif;
	font-size: 40px;
	font-weight: 400;
    line-height: 110%;
    margin: 30px 0;
}

.descoberta p {
	font-size: 18px;
	font-weight: 300;
    line-height: 160%;
    margin-bottom: 40px;
}

.descoberta span {
    border: 1px solid #fe5f2f;
    padding: 10px 20px;
    width: fit-content;
	border-radius: 120px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {

    .descoberta {
        padding: 30px;
        border-radius: 22px;
        display: table;
        margin-bottom: 20px;
    }

    .descoberta h4 {
        display: table;
    }

    .descoberta h2 {
        font-size: 36px;
        font-weight: 500;
    }

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

    .descoberta span {
        font-size: 14px;
        display: inline-block;
        margin: 0 12px 12px 0;
    }

}

/** Experiência **/

.experiencia {
    padding: 40px;
    border-radius: 32px;
    background: #271120;
    color: #debdff;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px dashed #000;
}

.experiencia:hover {
    border: 1px dashed #debdff;
    background: #1f0d1a;
}

.experiencia h4 {
    border: 1px solid #debdff;
    padding: 10px 20px;
    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;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.experiencia h2 {
    font-family: "Playfair Display", serif;
	font-size: 40px;
	font-weight: 400;
    line-height: 110%;
    margin: 30px 0;
}

.experiencia p {
	font-size: 18px;
	font-weight: 300;
    line-height: 160%;
    margin-bottom: 40px;
}

.experiencia span {
    border: 1px solid #debdff;
    padding: 10px 20px;
    width: fit-content;
	border-radius: 120px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {

    .experiencia {
        padding: 30px;
        border-radius: 22px;
        display: table;
        margin-bottom: 20px;
    }

    .experiencia h4 {
        display: table;
    }

    .experiencia h2 {
        font-size: 36px;
        font-weight: 500;
    }

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

    .experiencia span {
        font-size: 14px;
        display: inline-block;
        margin: 0 12px 12px 0;
    }

}

/** Performance **/

.performance {
    padding: 40px;
    border-radius: 32px;
    background: #1B2015;
    color: #aaa676;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px dashed #000;
}

.performance:hover {
    border: 1px dashed #aaa676;
    background: #141812;
}

.performance h4 {
    border: 1px solid #aaa676;
    padding: 10px 20px;
    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;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.performance h2 {
    font-family: "Playfair Display", serif;
	font-size: 40px;
	font-weight: 400;
    line-height: 110%;
    margin: 30px 0;
}

.performance p {
	font-size: 18px;
	font-weight: 300;
    line-height: 160%;
    margin-bottom: 40px;
}

.performance span {
    border: 1px solid #aaa676;
    padding: 10px 20px;
    width: fit-content;
	border-radius: 120px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {

    .performance {
        padding: 30px;
        border-radius: 22px;
        display: table;
        margin-bottom: 20px;
    }

    .performance h4 {
        display: table;
    }

    .performance h2 {
        font-size: 36px;
        font-weight: 500;
    }

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

    .performance span {
        font-size: 14px;
        display: inline-block;
        margin: 0 12px 12px 0;
    }

}

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

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

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

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

.work-home-card {
    background: #111;
    border-radius: 32px;
    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: #7F77DD;
}

.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: #7F77DD;
    border: 1px solid #7F77DD;
}

.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 h6 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 40px;
    }

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

    .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;
    }
}

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

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

.sobre-home h3 {
	font-size: 84px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -2px;
    margin-bottom: 80px;
}

.sobre-home span {
    color: #7F77DD;
}


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

    .sobre-home h3 {
        font-size: 36px;
        font-weight: 600;
        line-height: 110%;
        letter-spacing: 0;
        margin-bottom: 40px;
    }

}

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

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

.contato-home h3 {
	font-size: 84px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.contato-home p {
	font-size: 24px;
	font-weight: 200;
    line-height: 150%;
    margin-bottom: 60px;
}

.btn-contato {
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #fff;
    padding: 20px 36px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.btn-contato:hover {
    color: #000;
    border: 1px solid #fff;
    background: #fff;;
}

@media (max-width: 768px) {

    .contato-home {
        margin-bottom: 60px;
    }

    .contato-home h3 {
        font-size: 42px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .contato-home p {
        font-size: 18px;
        line-height: 160%;
        margin-bottom: 40px;
    }

    .btn-contato {
        display: block;
        text-align: center;
        padding: 14px 28px;
    }

}

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

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

footer h6 {
    margin-top: 40px;
    border-top: 3px dashed #222;
	font-size: 19vw;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -14px;
    color: #222;
    text-align: center;
}

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

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

footer ul li {
    list-style: none;
    margin: 12px 20px;
    display: inline;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

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

.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 {
        margin: 0;
    }

    footer h6 {
        padding: 14px 0;
        font-size: 18vw;
        letter-spacing: -2px;

    }

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

    footer ul li {
        display: table;
        list-style: none;
        margin: 8px 20px;
    }

}

/************** 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: 300;
    color: #7F77DD;
}

.case-hero h1 {
	font-size: 90px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -3px;
    margin-bottom: 80px;
    margin: 26px 0 60px 0
}

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

.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: 46px;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
}

.overview h6 span {
    color: #7F77DD;
}

.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: #7F77DD;
    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: #7F77DD;
}

.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 {
    font-size: 46px;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
    margin-bottom: 80px;
}

.aprendizados h6 span {
    color: #7F77DD;
}

.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: #7F77DD;
}

.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: #7F77DD;
    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: 42px;
         letter-spacing: -1px;
    }

    .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: 28px;
        line-height: 120%;
        font-weight: 600;
        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: 28px;
        line-height: 120%;
        font-weight: 600;
        margin-bottom: 46px;
    }

    .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: 98px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -3px;
}

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

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

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

.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: #7F77DD;
    border: 1px solid #7F77DD;
}

@media (max-width: 768px) {

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

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

    .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: 30px;
    }

}

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

.sobre-interna h1 {
	font-size: 98px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -3px;
}

.cs-wrap {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.cs-wrap img {
    width: auto;
    height: 550px;
}

.cs-track {
    display: flex;
    gap: 26px;
    will-change: transform;
}

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

.text-sobre p {
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
    margin-bottom: 40px;
}

.numeros-sobre {
	width: 100%;
	height: auto;
	padding: 80px 0;
}

.numeros-sobre h6 {
    font-size: 120px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -3px;
}

.numeros-sobre span {
    font-size: 70px;
}

.numeros-sobre p {
    font-size: 22px;
	font-weight: 300;
    line-height: 100%;
}

@media (max-width: 768px) {

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

    .cs-wrap img {
        width: auto;
        height: 300px;
    }

    .images-sobre {
        margin: -90px 0 0 0;
    }

    .text-sobre p {
        font-size: 20px;
    }

    .numeros-sobre {
        padding: 0 0 80px 0;
    }

    .numeros-sobre h6 {
        font-size: 70px;
        letter-spacing: -2px;
        margin-bottom: 10px;
    }

    .numeros-sobre span {
        font-size: 50px;
    }

    .numeros-sobre p {
        font-size: 20px;
        font-weight: 300;
        line-height: 100%;
        margin-bottom: 60px;
    }

}

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

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

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

/** Article Index **/

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

.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: 42px;
        line-height: 100%;
    }

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

    .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 {
	width: 100%;
	height: auto;
	padding: 180px 0 120px 0;
    text-align: center;
}

.single h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.single h1 {
    font-size: 84px;
    font-weight: 600;
    line-height: 110%;
    color: #fff;
    margin: 40px 0;
    letter-spacing: -2px;
}

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

.single h5 span {
    color: #7F77DD;
}

/** 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: #fff;
    margin: 100px 0;
}

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

.artigo h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
}

.artigo p {
    font-size: 20px;
    font-weight: 300;
    line-height: 170%;
    color: #eee;
    margin: 30px 0;
}

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

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

}

/** Posts Relacionados **/

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

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

.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: #fff;
    margin: 30px 0 20px 0;
}

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

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

.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;
    }

}

/************** PAGE DE SERVIÇO SINGLEs **************/

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

.page-servico h1 {
	font-size: 98px;
	font-weight: 600;
    line-height: 100%;
    letter-spacing: -3px;
}

.page-servico h1 span {
    color: #7F77DD;
}

.page-servico p {
    font-size: 22px;
    line-height: 160%;
    font-weight: 500;
    color: #888;
    margin: 40px 0 50px 0;
}

.page-servico img {
    margin-top: 60px;
}

.page-servico 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-servico a:hover {
    color: #7F77DD;
    border: 1px solid #7F77DD;
}

@media (max-width: 768px) {

    .page-servico {
        padding: 180px 0 120px 0;
    }

    .page-servico h1 {
        font-size: 38px;
        letter-spacing: 0;
    }

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

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

    .page-servico img {
        margin-top: 30px;
    }

}

/** Conteúdo da página de serviço **/

.content-servico {
    width: 100%;
	height: auto;
	padding: 60px 0 120px 0;
}

.content-servico h4 {
    font-size: 46px;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
}

.content-servico h4 span {
    color: #7F77DD;
}

.content-servico p {
    font-size: 20px;
    line-height: 170%;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 768px) {

    .content-servico {
        padding: 60px 0;
    }

    .content-servico h4 {
        font-size: 32px;
        line-height: 120%;
        margin-bottom: 30px;
    }

    .content-servico p {
        font-size: 20px;
        line-height: 150%;
        margin-bottom: 30px;
    }

}

/** Features Serviços **/

.features-servico {
    width: 100%;
	height: auto;
	padding: 20px 0 120px 0;
    text-align: center;
}

.feature {
    padding: 40px 0;
    border-bottom: 2px dashed #333;
}

.features-servico h5 {
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
    margin-bottom: 80px;
}

.features-servico h2 {
    font-size: 70px;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.features-servico p {
    font-size: 18px;
    line-height: 150%;
    font-weight: 300;
    color: #fff;
}

@media (max-width: 768px) {

    .features-servico {
        text-align: left;
        padding: 0 20px;
        margin-bottom: 80px;
    }

    .features-servico h5 {
        font-size: 28px;
        margin: 20px 0 20px -10px;
    }

    .features-servico h2 {
        font-size: 38px;
        line-height: 100%;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .features-servico p {
        font-size: 20px;
        font-weight: 400;
        line-height: 140%;
    }

}