/* RESET */
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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CONTAINER */
.rt-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 320px) {
.rt-container {
    max-width: 640px;
  }
}

@media screen and (min-width: 768px) {
.rt-container {
    max-width: 820px;
  }
}

@media screen and (min-width: 1024px) {
.rt-container {
    max-width: 1280px;
  }
}

@media screen and (min-width: 1440px) {
.rt-container {
    max-width: 1536px;
  }
}

/* COLORS */
:root {
  --primaria: #2cb8a5;
  --hover-link: #27a392;
  --gradiente: linear-gradient(#2cb8a5, #27a392);
  --hover-gradiente: linear-gradient(#27a392, #228f80);
  --off-white: #f5f5f5;
  --cinza-claro: #e0e0e0;
  --cinza-medio: #7a7a7a;
  --cinza-escuro: #292929;
  --preto: #141414;
  --transp-84: rgba(20, 20, 20, 0.84);
  --transp-72: rgba(20, 20, 20, 0.72);
  --sucesso: #65b44c;
  --atencao: #e2a414;
  --erro: #f44336;
  --sombra: 0.125rem 0.125rem 0.75rem rgba(20, 20, 20, 0.24);
}

.primaria {
  color: var(--primaria);
}

.hover-link {
  color: var(--hover-link);
}

.gradiente {
  color: var(--gradiente);
}

.hover-gradiente {
  color: var(--hover-gradiente);
}

.off-white {
  color: var(--off-white);
}

.cinza-claro {
  color: var(--cinza-claro);
}

.cinza-medio {
  color: var(--cinza-medio);
}

.cinza-escuro {
  color: var(--cinza-escuro);
}

.preto {
  color: var(--preto);
}

.transp-84 {
  color: var(--transp-84);
}

.transp-72 {
  color: var(--transp-72);
}

.sucesso {
  color: var(--sucesso);
}

.atencao {
  color: var(--atencao);
}

.erro {
  color: var(--erro);
}

.sombra {
  box-shadow: var(--sombra);
}

body {
  font:
    normal 400 1rem/1.5rem "Raleway",
    sans-serif !important;
  letter-spacing: 0.04rem !important;
  color: var(--preto) !important;
  background-color: var(--off-white) !important;
}

/* TYPO */
h1 {
  font:
    700 3rem/3.5rem "Raleway",
    sans-serif !important;
  letter-spacing: 0.04rem !important;
  font-optical-sizing: auto;
}

h2 {
  font:
    600 2.25rem/2.75rem "Raleway",
    sans-serif !important;
  letter-spacing: 0.04rem !important;
  font-optical-sizing: auto;
}

h3 {
  font:
    500 1.75rem/2.25rem "Raleway",
    sans-serif !important;
  font-optical-sizing: auto;
}

h4 {
  font:
    400 1.5rem/2rem "Raleway",
    sans-serif !important;
  font-optical-sizing: auto;
}

h5 {
  font:
    300 1.25rem/1.75rem "Raleway",
    sans-serif !important;
  font-optical-sizing: auto;
}

@media screen and (max-width: 820px) {
  h1 {
    font:
      700 2.25rem/2.75rem "Raleway",
      sans-serif !important;
    letter-spacing: 0.04rem;
  }

  h2 {
    font:
      600 1.5rem/2rem "Raleway",
      sans-serif !important;
    letter-spacing: 0.04rem;
  }

  h3 {
    font:
      500 1.25rem/1.75rem "Raleway",
      sans-serif !important;
  }

  h4 {
    font:
      400 1.125rem/1.75rem "Raleway",
      sans-serif !important;
  }
}

/* BUTTON */
.pagina-sobre .rt-botao {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: max-content;
  padding: 1rem 1.5rem;
  background: var(--gradiente);
  border-radius: 3rem;
  border: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--off-white);
  font:
    700 1rem/1.5rem "Raleway",
    sans-serif !important;
  font-optical-sizing: auto;
  letter-spacing: 0.04rem;
  cursor: pointer;
  transition: background 0.16s ease;
  box-shadow: var(--sombra);
}

.pagina-sobre .rt-botao:hover {
  background: var(--hover-gradiente) !important;
  color: var(--off-white) !important;
}

.pagina-sobre .rt-botao.down::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("https://paperita.com.br/wp-content/uploads/download-curriculo-off-white-bold.svg");
}

/* HERO */
.rt-hero {
  width: 100%;
  height: 84vh;
  background: url("https://paperita.com.br/wp-content/uploads/ux-ui-designer.webp") center bottom / cover no-repeat;
  position: relative;
}

.rt-hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--transp-84) !important;
}

.rt-hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: var(--off-white) !important;
  text-align: center;
}

.rt-hero-info h1{
  color: var(--off-white) !important;
}

.rt-hero-info p {
  width: 48%;
  font:
    400 1.5rem/2rem "Raleway",
    sans-serif !important;
  font-optical-sizing: auto;
}

/* BOTÃO SETA */
.rt-seta {
  position: absolute;
  right: 49,5%;
  bottom: 0.25rem;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--preto) !important;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.4s;
  animation: pulse 1.5s infinite; /* Animação pulsar */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.rt-seta:hover {
  background: var(--cinza-escuro) !important;
}

.rt-seta img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.4s;
}

/* CONTACT BUTTON */
.rt-btn-contact {
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(44, 184, 165, 0.6) !important;
  border-radius: 50%;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  cursor: pointer;
  transition: background 0.4s;
}

.rt-btn-contact:hover {
  background: rgba(39, 163, 146, 0.6) !important;
}

.rt-btn-contact img {
  width: 2rem;
  height: 2rem;
  align-self: center;
}

/* XP AND EDUCATION */
.rt-xp-formacao {
  margin: 2rem 0 3rem 0;
}

.rt-divs {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  gap: 2rem;
}

.rt-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rt-ano-info,
.rt-img-info {
  display: flex;
}

.rt-ano {
  padding: 0.5rem;
  width: max-content;
  height: max-content;
  background-color: var(--primaria) !important;
  color: var(--off-white) !important;
  text-align: center;
}

.rt-info {
  padding-left: 0.5rem;
  border-left: 0.125rem solid var(--primaria) !important;
}

.rt-info p,
.rt-info-cert-hab p,
.rt-content-titulo h3 {
  color: var(--cinza-medio) !important;
}

/* CERTIFICATIONS AND SKILLS */
.rt-cert-hab,
.rt-hei {
  padding: 1rem 0;
  background: var(--cinza-escuro) !important;
}

.rt-img {
  padding: 0.5rem;
}

.rt-info-cert-hab {
  padding-left: 0.5rem;
  border-left: 0.125rem solid var(--off-white) !important;
}

.rt-info-cert-hab h4,
.rt-hei-cards-content h5 {
  color: var(--off-white) !important;
}

.rt-hab-idiomas,
.rt-habilidades {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rt-hab {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.rt-hab-bg {
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  color: var(--off-white) !important;
  background: var(--primaria) !important;
}

.rt-hab-90 {
  width: 90%;
}

.rt-hab-80 {
  width: 80%;
}

.rt-hab-60 {
  width: 60%;
}

.rt-content-idioma {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rt-idioma {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rt-idioma p {
  color: var(--off-white) !important;
}

.rt-estrelas li {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
}

.rt-estrelas li:last-child {
  margin-right: 0;
}

/* WHAT I DO */
.rt-cert-hab,
.rt-wid {
  width: 100%;
  margin: 3rem 0;
}

.rt-content-wid,
.rt-content-hei {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rt-wid-cards,
.rt-hei-cards {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
}

.rt-wid-cards-bg {
  width: 100%;
  max-width: 24%;
  background: var(--cinza-claro) !important;
}

.rt-wid-cards-content,
.rt-hei-cards-content {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.rt-wid-cards-content img {
  width: 4.5rem;
  height: 4.5rem;
}

/* HOBBIES AND INTERESTS */
.rt-hei {
  margin-top: 3rem;
}

.rt-hei-cards-bg {
  width: 100%;
  max-width: 14%;
  background: var(--preto) !important;
}

.rt-hei-cards-content img {
  width: 3.25rem;
  height: 3.25rem;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
.rt-hab-bg p {
    font-size: 0.875rem;
  }

.rt-wid-cards-bg {
    max-width: 48%;
  }

.rt-wid-cards,
  .rt-hei-cards {
    justify-content: center;
  }

.rt-content-wid,
  .rt-content-hei {
    padding: 0 1rem;
  }

.rt-hei-cards-bg {
    max-width: 24%;
  }
}

@media screen and (max-width: 1023px) {
.rt-ano-info,
  .rt-img-info {
    flex-direction: column;
  }

.rt-ano {
    width: 100%;
  }

.rt-hab {
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 640px) {
.rt-hero-info p {
    width: 96%;
  }

.rt-xp-formacao {
    margin: 2rem 0;
  }

.rt-divs {
    padding: 0 1rem;
    flex-direction: column;
  }

.rt-idioma p {
    font-size: 0.875rem;
  }

.rt-estrelas li {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.125rem;
  }

.rt-wid-cards {
    flex-direction: column;
  }

.rt-wid-cards-bg,
  .rt-hei-cards-bg {
    max-width: 100%;
  }

.rt-hei {
    margin-top: 2rem;
  }
}
