﻿/* Base */
html,
body,
header,
nav,
main,
section,
footer,
div,
span,
h1,
h2,
h3,
p,
a,
ul,
li,
img {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #080808;
  color: #f5f5f5;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Layout */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 210px 20px;
}

.section-heading {
  text-align: center;
}

.section-heading span {
  color: #961100;
}

.section-heading h2 {
  margin-top: 8px;
  margin-bottom: 100px;
  font-size: 38px;
}

/* CabeÃ§alho */
.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(8, 8, 8, 0.85);
  box-shadow: 0 1px 0 #333;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.main-nav__brand img {
  width: 100px;
}

.main-nav__menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav__menu a {
  color: #b5b5b5;
  transition: color 0.3s ease;
}

.main-nav__menu a:hover {
  color: #961100;
}

/* BotÃµes */
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 2px;
  font-weight: 600;
  text-align: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.button--primary {
  background: #961100;
  color: #000;
}

.button--primary:hover {
  background: #c70202;
  transform: translateY(-3px);
}

.button--secondary {
  padding: 13px 21px;
  border: 1px solid #333;
}

.button--secondary:hover {
  border-color: #961100;
  color: #961100;
  transform: translateY(-3px);
}

.button--full {
  width: 100%;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Home */
.home-hero .hero__text p {
  max-width: 520px;
}

.home-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-option-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px;
  background: linear-gradient(180deg, #121212, #080808);
  border: 1px solid #333;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(150, 17, 0, 0.12);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.home-option-card:hover {
  border-color: #961100;
  box-shadow: 0 25px 100px rgba(199, 2, 2, 0.18);
  transform: translateY(-8px);
}

.home-option-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(199, 2, 2, 0.12);
  border: 1px solid rgba(199, 2, 2, 0.25);
  border-radius: 12px;
  color: #961100;
  font-size: 22px;
}

.home-option-card strong {
  font-size: 24px;
}

.home-option-card small {
  color: #b5b5b5;
  font-size: 15px;
}

/* Hero */
.hero {
  max-width: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 40%, rgba(199, 2, 2, 0.253), transparent 35%),
    radial-gradient(circle at 20% 60%, rgba(46, 10, 5, 0.192), transparent 45%);
  animation: heroGlow 7s ease-in-out infinite alternate;
}

.hero__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.hero__text h1 {
  width: 90%;
  margin-bottom: 24px;
  font-size: 48px;
}

.hero__text p {
  margin-bottom: 30px;
  color: #b5b5b5;
}

.hero__typing-text {
  display: inline-block;
  min-height: 1.4em; /* trava altura */
  width: 100%;
  overflow: hidden;
  border-right: 4px solid #961100;
  color: #961100;
  font-size: 32px;
  white-space: nowrap;
  animation:
    typing 5s infinite steps(26),
    blinkCursor 0.5s infinite;
}

.hero__media {
  position: relative;
  max-width: 100%;
  margin-left: auto;
}

.hero__media:before {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  z-index: 0;
  content: "";
  background: radial-gradient(circle, #961100, transparent 70%);
  filter: blur(40px);
}

.hero__media:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 20px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 420px;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.45s ease;
}

.hero__media img:hover {
  transform: translateY(-8px) scale(1.02);
}

.hero__content {
  max-width: 520px;
}

/* ServiÃ§os */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  display: flex;
  width: 31.9%;
  overflow: hidden;
  flex-direction: column;
  background: #111;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px #333,
    1px 1px 100px 1px rgba(104, 1, 1, 0.178);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover {
  box-shadow:
    inset 0 0 0 1px #961100,
    1px 1px 100px 1px rgba(104, 1, 1, 0.178);
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 180px;
  box-shadow: inset 0 -1px 0 #222;
  object-fit: cover;
}

.service-card__content {
  padding: 24px;
}

.service-card__content h3 {
  margin-bottom: 10px;
}

.service-card__content p {
  margin-bottom: 20px;
  color: #b5b5b5;
}

/* Projetos */
.projects-section {
  position: relative;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.project-card {
  width: 31.8%;
  overflow: hidden;
  background: linear-gradient(180deg, #121212, #080808);
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px #333,
    0 20px 80px rgba(150, 17, 0, 0.12);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.project-card:hover {
  box-shadow:
    inset 0 0 0 1px #961100,
    0 25px 100px rgba(199, 2, 2, 0.18);
  transform: translateY(-10px);
}

.project-card__preview {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #111;
}

.project-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}

.project-card:hover .project-card__preview img {
  filter: brightness(0.55);
  transform: scale(1.08);
}

.project-card__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__preview-link {
  padding: 12px 18px;
  background: rgba(150, 17, 0, 0.55);
  border: 1px solid #961100;
  border-radius: 8px;
  color: #f5f5f5;
  font-weight: 700;
  transition: background 0.3s ease;
}

.project-card__preview-link:hover {
  background: #c70202;
}

.project-card__content {
  padding: 24px;
}

.project-card__content h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.project-card__content p {
  margin-bottom: 18px;
  color: #b5b5b5;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.project-card__tags span {
  padding: 6px 10px;
  background: rgba(199, 2, 2, 0.12);
  border: 1px solid rgba(199, 2, 2, 0.25);
  border-radius: 999px;
  color: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-button {
  display: inline-flex;
  flex: 1 1 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.project-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.project-button--github {
  background: #fff;
  color: #050505;
}

.project-button--github:hover {
  background: #dcdcdc;
  transform: translateY(-3px);
}

.project-button--site {
  background: #961100;
  color: #fff;
}

.project-button--site:hover {
  background: #c70202;
  transform: translateY(-3px);
}

/* Tecnologias */
.tech-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.tech-carousel:before,
.tech-carousel:after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.tech-carousel:before {
  left: 0;
  background: linear-gradient(to right, #080808, transparent);
}

.tech-carousel:after {
  right: 0;
  background: linear-gradient(to left, #080808, transparent);
}

.tech-carousel__track {
  display: inline-flex;
  gap: 18px;
  animation: techScroll 30s linear infinite;
}

.tech-carousel:hover .tech-carousel__track {
  animation-play-state: paused;
}

.tech-item {
  display: flex;
  min-width: 170px;
  height: 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px #333;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.tech-item:hover {
  box-shadow:
    inset 0 0 0 1px #961100,
    0 15px 40px rgba(199, 2, 2, 0.18);
  transform: translateY(-6px);
}

.tech-item i {
  color: #961100;
  font-size: 34px;
}

.tech-item span {
  color: #b5b5b5;
  font-size: 15px;
  font-weight: 600;
}

/* FormaÃ§Ã£o */
.education-section {
  position: relative;
}

.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 20px;
}

.timeline:before {
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
  content: "";
  background: #333;
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline__dot {
  position: absolute;
  top: 5px;
  left: -1px;
  width: 16px;
  height: 16px;
  background: #961100;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(199, 2, 2, 0.6);
}

.timeline__content {
  padding: 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.timeline__content:hover {
  border-color: #961100;
  transform: translateY(-4px);
}

.timeline__date {
  display: block;
  margin-bottom: 6px;
  color: #b5b5b5;
  font-size: 13px;
}

.timeline__content h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.timeline__content p {
  margin-bottom: 10px;
  color: #b5b5b5;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge--done {
  background: rgba(0, 200, 120, 0.15);
  color: #00c878;
}

.status-badge--progress {
  background: rgba(199, 2, 2, 0.15);
  color: #961100;
}

/* Contato */
.contact-section {
  padding-bottom: 160px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 54px;
  background:
    radial-gradient(circle at top right, rgba(199, 2, 2, 0.18), transparent 38%),
    #111;
  border: 1px solid #333;
  border-radius: 28px;
}

.contact-panel__text {
  flex: 1 1 520px;
}

.contact-card {
  flex: 1 1 360px;
}

.contact-panel__text span {
  display: block;
  margin-bottom: 14px;
  color: #c70202;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-panel__text h2 {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
}

.contact-panel__text p {
  max-width: 620px;
  color: #b5b5b5;
  font-size: 18px;
}

.contact-card {
  padding: 34px;
  background: rgba(8, 8, 8, 0.75);
  border: 1px solid #222;
  border-radius: 22px;
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.contact-card p {
  margin-bottom: 24px;
  color: #b5b5b5;
}

.contact-card__whatsapp {
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #333;
  border-radius: 8px;
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 600;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.social-link:hover {
  border-color: #961100;
  color: #961100;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 16px;
}

/* RodapÃ© */
.site-footer {
  padding: 30px;
  border-top: 1px solid #333;
  color: #777;
  text-align: center;
}

/* AnimaÃ§Ã£o ao rolar a pÃ¡gina */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Transição entre páginas */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(150, 17, 0, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: all;
}

.page-transition__content {
  opacity: 0;
  transform: scale(0.92);
}

.page-transition.is-active .page-transition__content {
  animation: pageLogoReveal 1.15s ease forwards;
}

.page-transition img {
  width: clamp(110px, 18vw, 190px);
  filter: drop-shadow(0 0 26px rgba(199, 2, 2, 0.24));
}

/* Keyframes */
@keyframes heroGlow {
  from {
    opacity: 0.75;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes typing {
  0% {
    width: 0;
  }

  40%,
  60% {
    width: 26ch;
  }

  100% {
    width: 0;
  }
}

@keyframes blinkCursor {
  50% {
    border-right-color: transparent;
  }
}

@keyframes techScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pageLogoReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.9);
  }

  45% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.04);
  }
}

/* Responsivo */
@media (max-width: 1024px) {
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero {
    gap: 50px;
  }

  .hero__media img {
    width: 360px;

  }

  .project-card {
    width: 48%;
  }
}

@media (max-width: 900px) {
  .hero {
    margin-top: 200px;
  }

  .hero__media img {
    display: none;
  }

  .service-card {
    width: 48%;
  }

  .contact-panel {
    padding: 34px 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .main-nav {
    flex-direction: column;
    gap: 16px;
  }

  .main-nav__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .main-nav__menu a {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    gap: 40px;
    padding-top: 160px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__media {
    display: none;
  }

  .hero__text h1 {
    width: 100%;
    font-size: 32px;
  }

  .hero__typing-text {
    width: 390px;
    margin: 0 auto;
    font-size: 32px;
  }

  .hero__text p {
    font-size: 16px;
  }

  .hero__media {
    margin: 40px auto 0;
  }

  .hero__media img {
    width: 280px;
  }

  .button-group {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-options {
    grid-template-columns: 1fr;
  }

  .home-option-card {
    text-align: left;
  }

  .section-heading h2 {
    margin-bottom: 50px;
    font-size: 30px;
  }

  .service-card,
  .project-card {
    width: 100%;
  }

  .project-button {
    flex-basis: 100%;
  }

  .contact-panel {
    padding: 30px 20px;
  }

  .contact-panel__text h2 {
    font-size: 34px;
  }

  .contact-panel__text p {
    font-size: 16px;
  }

  .social-links {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero__typing-text {
    animation: none;
    border: none;
  }

  .tech-item {
    min-width: 140px;
    height: 95px;
  }

  .tech-item i {
    font-size: 28px;
  }

  .tech-item span {
    font-size: 13px;
  }

  .timeline {
    padding-left: 10px;
  }

  .timeline__item {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 80px 16px;
  }

  .main-nav__brand img {
    width: 80px;
  }

  .hero {
    margin-top: 100px;
  }

  .hero__text h1 {
    font-size: 32px;
  }

  .hero__typing-text {
    width: 250px;
    font-size: 19px;
  }

  .hero__media img {
    display: none;
  }

  .service-card img {
    height: 150px;
  }

  .service-card__content {
    padding: 20px;
  }

  .project-card__preview {
    height: 180px;
  }

  .tech-carousel:before,
  .tech-carousel:after {
    width: 50px;
  }

  .timeline__content h3 {
    font-size: 18px;
  }

  .site-footer {
    font-size: 14px;
  }
}

/* Página inicial de escolha */
.choice-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(199, 2, 2, 0.11), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(80, 12, 8, 0.22), transparent 34%),
    linear-gradient(135deg, #030303 0%, #08090c 48%, #0d0504 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.choice-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 80px 24px;
}

.choice-panel {
  width: min(980px, 100%);
  text-align: center;
  animation: choiceFadeIn 0.9s ease both;
}

.choice-eyebrow {
  margin-bottom: 26px;
  color: #f04438;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.choice-panel h1 {
  max-width: 920px;
  margin: 0 auto 28px;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -3.6px;
}

.choice-subtitle {
  max-width: 670px;
  margin: 0 auto 72px;
  color: #b9bbc2;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.7;
}

.choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006)),
    linear-gradient(180deg, #0b0c0f 0%, #030405 100%);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.032),
    inset 0 -44px 80px rgba(0, 0, 0, 0.34);
  text-align: left;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  animation: choiceCardIn 0.8s ease both;
}

.choice-card:nth-child(2) {
  animation-delay: 0.12s;
}

.choice-card:before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(240, 68, 56, 0.09), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.022), transparent 48%);
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.choice-card:after {
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.42));
  content: "";
  pointer-events: none;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: rgba(240, 68, 56, 0.28);
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.72),
    0 0 28px rgba(240, 68, 56, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.048),
    inset 0 -48px 86px rgba(0, 0, 0, 0.42);
  transform: translateY(-6px);
}

.choice-card:hover:before,
.choice-card:focus-visible:before {
  opacity: 1;
}

.choice-card__icon,
.choice-card__label,
.choice-card__text {
  position: relative;
  z-index: 2;
  display: block;
}

.choice-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background:
    linear-gradient(145deg, rgba(240, 68, 56, 0.09), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(240, 68, 56, 0.16);
  border-radius: 14px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #f04438;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.choice-card__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.choice-card:hover .choice-card__icon,
.choice-card:focus-visible .choice-card__icon {
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.54),
    0 0 18px rgba(240, 68, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}

.choice-card__label {
  margin-bottom: 16px;
  color: #f5f5f5;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.choice-card__text {
  max-width: 350px;
  color: #b9bbc2;
  font-size: 16px;
  line-height: 1.65;
}

@keyframes choiceFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes choiceCardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .choice-shell {
    align-items: start;
    padding: 72px 20px;
  }

  .choice-panel {
    text-align: left;
  }

  .choice-panel h1,
  .choice-subtitle {
    margin-right: 0;
    margin-left: 0;
  }

  .choice-subtitle {
    margin-bottom: 46px;
  }

  .choice-actions {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 184px;
    padding: 28px;
    border-radius: 16px;
  }

  .choice-card__label {
    font-size: 26px;
  }

  .choice-card__text {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-transition,
  .page-transition__content {
    transition: none;
  }

  .page-transition.is-active .page-transition__content {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .choice-panel,
  .choice-card {
    animation: none;
  }

  .choice-card {
    transition: none;
  }
}

/* Página para clientes */
.client-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 2, 2, 0.14), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(150, 17, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 48%, #050505 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.client-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 900;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(10, 10, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.client-brand img {
  width: 76px;
}

.client-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.client-nav a {
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.client-nav a:hover {
  color: #ff3b30;
}

.client-hero {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 170px 20px 130px;
}

.client-hero__content {
  width: min(920px, 100%);
  text-align: center;
}

.client-eyebrow {
  margin-bottom: 18px;
  color: #ff3b30;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.client-hero h1,
.client-section__intro h2,
.client-final-cta h2 {
  color: #f5f5f5;
  letter-spacing: -2px;
}

.client-hero h1 {
  max-width: 880px;
  margin: 0 auto 28px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
}

.client-hero p {
  max-width: 690px;
  margin: 0 auto 42px;
  color: #c7c7c7;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.client-actions,
.client-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.client-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.client-button:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 0.3s ease,
    transform 0.55s ease;
}

.client-button:hover:before {
  opacity: 1;
  transform: translateX(70%);
}

.client-button--primary {
  background:
    linear-gradient(135deg, #ff2b20, #a90f04);
  color: #fff;
  box-shadow:
    0 18px 50px rgba(199, 2, 2, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.client-button--primary:hover {
  background:
    linear-gradient(135deg, #ff3b30, #c11105);
  box-shadow:
    0 24px 74px rgba(199, 2, 2, 0.3),
    0 0 34px rgba(255, 59, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}

.client-button--ghost {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f5f5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.client-button--ghost:hover {
  border-color: rgba(255, 59, 48, 0.46);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(255, 59, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.client-button--large {
  min-width: min(100%, 300px);
  min-height: 60px;
  font-size: 17px;
}

.client-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0;
  scroll-margin-top: 140px;
}

.client-section__intro {
  max-width: 760px;
  margin: 0 auto 74px;
  text-align: center;
}

.client-section__intro h2,
.client-final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.client-section__intro p,
.client-final-cta p {
  color: #b5b5b5;
  font-size: 18px;
  line-height: 1.75;
}

.client-pill-list,
.client-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.client-pill-list span,
.client-benefits span,
.client-feature-card,
.client-step,
.client-model-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(17, 17, 19, 0.92), rgba(7, 7, 8, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 -48px 80px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.client-pill-list span,
.client-benefits span {
  padding: 26px;
  border-radius: 26px;
  color: #f5f5f5;
  font-weight: 800;
  text-align: center;
}

.client-pill-list span:hover,
.client-benefits span:hover,
.client-feature-card:hover,
.client-step:hover,
.client-model-card:hover {
  border-color: rgba(255, 59, 48, 0.38);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(199, 2, 2, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-10px);
}

.client-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.client-model-card {
  overflow: hidden;
  border-radius: 34px;
}

.client-model-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  opacity: 0.92;
  transition:
    opacity 0.3s ease,
    transform 0.45s ease;
}

.client-model-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.client-model-card__body {
  padding: 34px;
}

.client-model-card h3,
.client-feature-card h3,
.client-step h3 {
  color: #f5f5f5;
}

.client-model-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.client-model-card p,
.client-feature-card p {
  margin-bottom: 22px;
  color: #b5b5b5;
}

.client-model-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  list-style: none;
}

.client-model-card li {
  position: relative;
  padding-left: 22px;
  color: #d8d8d8;
}

.client-model-card li:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  content: "";
}

.client-card-actions {
  align-items: stretch;
}

.client-card-actions .client-button {
  flex: 1 1 170px;
  border-radius: 18px;
}

.client-feature-grid,
.client-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.client-feature-card,
.client-step {
  min-height: 210px;
  padding: 32px;
  border-radius: 30px;
}

.client-feature-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.client-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.24);
  border-radius: 14px;
  color: #ff3b30;
  font-weight: 900;
}

.client-step h3 {
  font-size: 21px;
  line-height: 1.25;
}

.client-final-cta {
  width: min(1120px, calc(100% - 40px));
  margin: 110px auto 140px;
  padding: 96px 36px;
  background:
    radial-gradient(circle at top right, rgba(199, 2, 2, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: center;
  scroll-margin-top: 140px;
}

.client-final-cta p {
  max-width: 560px;
  margin: 0 auto 34px;
}

.client-footer {
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777;
  text-align: center;
}

@media (max-width: 980px) {
  .client-model-grid,
  .client-system-grid,
  .client-feature-grid,
  .client-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-pill-list,
  .client-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .client-header {
    top: 12px;
    flex-direction: column;
    gap: 12px;
    border-radius: 26px;
  }

  .client-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .client-hero {
    padding-top: 190px;
  }

  .client-section {
    width: min(100% - 32px, 1120px);
    padding: 104px 0;
  }

  .client-section__intro {
    margin-bottom: 46px;
    text-align: left;
  }

  .client-hero__content,
  .client-final-cta {
    text-align: left;
  }

  .client-hero p,
  .client-final-cta p {
    margin-left: 0;
  }

  .client-actions {
    justify-content: flex-start;
  }

  .client-button {
    width: 100%;
  }

  .client-model-grid,
  .client-system-grid,
  .client-feature-grid,
  .client-steps,
  .client-pill-list,
  .client-benefits {
    grid-template-columns: 1fr;
  }

  .client-model-card img {
    height: 180px;
  }

  .client-model-card__body,
  .client-feature-card,
  .client-step {
    padding: 28px;
  }

  .client-final-cta {
    width: min(100% - 32px, 1120px);
    margin-top: 70px;
    margin-bottom: 96px;
    padding: 56px 26px;
    border-radius: 30px;
  }
}

/* Página para recrutadores */
.recruiter-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(199, 2, 2, 0.08), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.028), transparent 28%),
    radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.72), transparent 42%),
    linear-gradient(180deg, #020202 0%, #070708 46%, #020202 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.recruiter-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 900;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(10, 10, 12, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.recruiter-brand img {
  width: 76px;
}

.recruiter-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.recruiter-nav a {
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.recruiter-nav a:hover {
  color: #ff3b30;
}

.recruiter-hero {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 170px 20px 130px;
}

.recruiter-hero__inner {
  display: grid;
  width: min(1120px, 100%);
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 70px;
}

.recruiter-hero__content {
  width: 100%;
  text-align: left;
}

.recruiter-eyebrow {
  margin-bottom: 18px;
  color: #ff3b30;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.recruiter-hero h1,
.recruiter-section__intro h2,
.recruiter-contact h2 {
  color: #f5f5f5;
  letter-spacing: -2px;
}

.recruiter-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.98;
}

.recruiter-hero p {
  max-width: 680px;
  margin: 0 0 42px;
  color: #c7c7c7;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.recruiter-hero__photo {
  position: relative;
  isolation: isolate;
}

.recruiter-hero__photo:before {
  position: absolute;
  inset: -26px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 34%, rgba(199, 2, 2, 0.16), transparent 54%),
    radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.8), transparent 62%);
  border-radius: 36px;
  content: "";
  filter: blur(8px);
}

.recruiter-hero__photo:after {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.42));
  content: "";
  pointer-events: none;
}

.recruiter-hero__photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.72),
    0 0 52px rgba(199, 2, 2, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.recruiter-actions,
.recruiter-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.recruiter-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.recruiter-button:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 0.3s ease,
    transform 0.55s ease;
}

.recruiter-button:hover:before {
  opacity: 1;
  transform: translateX(70%);
}

.recruiter-button--primary {
  background: linear-gradient(135deg, #ff2b20, #a90f04);
  color: #fff;
  box-shadow:
    0 18px 50px rgba(199, 2, 2, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.recruiter-button--primary:hover {
  background: linear-gradient(135deg, #ff3b30, #c11105);
  box-shadow:
    0 24px 74px rgba(199, 2, 2, 0.3),
    0 0 34px rgba(255, 59, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}

.recruiter-button--ghost {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f5f5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.recruiter-button--ghost:hover {
  border-color: rgba(255, 59, 48, 0.46);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(255, 59, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.recruiter-button--large {
  min-width: min(100%, 260px);
  min-height: 60px;
  font-size: 17px;
}

.recruiter-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0;
  scroll-margin-top: 140px;
}

.recruiter-section__intro {
  max-width: 760px;
  margin: 0 auto 74px;
  text-align: center;
}

.recruiter-section__intro h2,
.recruiter-contact h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.recruiter-section__intro p,
.recruiter-contact p {
  color: #b5b5b5;
  font-size: 18px;
  line-height: 1.75;
}

.recruiter-about__panel,
.recruiter-tech-card,
.recruiter-project-card,
.recruiter-timeline__item,
.recruiter-differential-card,
.recruiter-contact {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(13, 13, 15, 0.96), rgba(3, 3, 4, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -62px 92px rgba(0, 0, 0, 0.34);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.recruiter-tech-card:hover,
.recruiter-project-card:hover,
.recruiter-timeline__item:hover,
.recruiter-differential-card:hover {
  border-color: rgba(255, 59, 48, 0.38);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(199, 2, 2, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-10px);
}

.recruiter-about__panel {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  padding: 44px;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 42px;
  border-radius: 34px;
}

.recruiter-about__content span {
  display: block;
  margin-bottom: 18px;
  color: #ff3b30;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.recruiter-about__content p {
  color: #d0d0d0;
  font-size: 20px;
  line-height: 1.85;
}

.recruiter-about__highlights {
  display: grid;
  gap: 12px;
}

.recruiter-about__highlights span {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 800;
}

.recruiter-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.recruiter-tech-card {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 28px;
}

.recruiter-tech-card i {
  color: #ff3b30;
  font-size: 40px;
}

.recruiter-tech-card span {
  color: #f5f5f5;
  font-weight: 800;
}

.recruiter-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.recruiter-project-card {
  overflow: hidden;
  border-radius: 34px;
}

.recruiter-project-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  opacity: 0.92;
  transition:
    opacity 0.3s ease,
    transform 0.45s ease;
}

.recruiter-project-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.recruiter-project-card__body {
  padding: 34px;
}

.recruiter-project-card h3,
.recruiter-timeline__item h3,
.recruiter-differential-card h3 {
  color: #f5f5f5;
}

.recruiter-project-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.recruiter-project-card p,
.recruiter-timeline__item p,
.recruiter-differential-card p {
  color: #b5b5b5;
}

.recruiter-project-card p {
  margin-bottom: 22px;
}

.recruiter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.recruiter-tags span {
  padding: 7px 11px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.22);
  border-radius: 999px;
  color: #f5f5f5;
  font-size: 12px;
  font-weight: 800;
}

.recruiter-card-actions .recruiter-button {
  flex: 1 1 130px;
  border-radius: 18px;
}

.recruiter-more {
  margin-top: 56px;
  text-align: center;
}

.recruiter-timeline {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.recruiter-timeline__item {
  padding: 30px;
  border-radius: 28px;
}

.recruiter-timeline__item span {
  display: block;
  margin-bottom: 10px;
  color: #ff3b30;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.recruiter-timeline__item h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.recruiter-differentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.recruiter-differential-card {
  min-height: 210px;
  padding: 32px;
  border-radius: 30px;
}

.recruiter-differential-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.recruiter-contact {
  width: min(1120px, calc(100% - 40px));
  margin: 110px auto 140px;
  padding: 96px 36px;
  border-radius: 40px;
  text-align: center;
  scroll-margin-top: 140px;
}

.recruiter-contact p {
  max-width: 560px;
  margin: 0 auto 34px;
}

.recruiter-footer {
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777;
  text-align: center;
}

@media (max-width: 980px) {
  .recruiter-hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .recruiter-hero__photo {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .recruiter-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recruiter-project-grid,
  .recruiter-differentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruiter-about__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .recruiter-header {
    top: 12px;
    flex-direction: column;
    gap: 12px;
    border-radius: 26px;
  }

  .recruiter-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .recruiter-hero {
    padding-top: 210px;
  }

  .recruiter-section {
    width: min(100% - 32px, 1120px);
    padding: 104px 0;
  }

  .recruiter-section__intro {
    margin-bottom: 46px;
    text-align: left;
  }

  .recruiter-hero__content,
  .recruiter-contact {
    text-align: left;
  }

  .recruiter-hero p,
  .recruiter-contact p {
    margin-left: 0;
  }

  .recruiter-actions {
    justify-content: flex-start;
  }

  .recruiter-hero__photo img {
    max-height: 420px;
    border-radius: 28px;
  }

  .recruiter-button {
    width: 100%;
  }

  .recruiter-tech-grid,
  .recruiter-project-grid,
  .recruiter-differentials {
    grid-template-columns: 1fr;
  }

  .recruiter-project-card img {
    height: 180px;
  }

  .recruiter-about__panel,
  .recruiter-project-card__body,
  .recruiter-differential-card,
  .recruiter-timeline__item {
    padding: 28px;
  }

  .recruiter-about__content p {
    font-size: 18px;
  }

  .recruiter-contact {
    width: min(100% - 32px, 1120px);
    margin-top: 70px;
    margin-bottom: 96px;
    padding: 56px 26px;
    border-radius: 30px;
  }
}

/* Página cliente clean */
.client-page {
  background: #0f0f0f;
  color: #f7f7f7;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.client-header {
  top: 18px;
  width: min(1080px, calc(100% - 32px));
  padding: 12px 16px;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

.client-brand img {
  width: 68px;
}

.client-nav {
  gap: 20px;
}

.client-nav a {
  color: #d0d0d0;
  font-size: 14px;
}

.client-nav a:hover {
  color: #ffffff;
}

.client-hero {
  min-height: auto;
  padding: 190px 20px 120px;
  background: linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
}

.client-hero__content {
  width: min(860px, 100%);
}

.client-eyebrow {
  margin-bottom: 16px;
  color: #ff4d3d;
  font-size: 12px;
  letter-spacing: 2.4px;
}

.client-hero h1,
.client-section__intro h2,
.client-final-cta h2 {
  color: #ffffff;
  letter-spacing: -1.6px;
}

.client-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
}

.client-hero p {
  max-width: 620px;
  margin-bottom: 36px;
  color: #c9c9c9;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.client-actions,
.client-card-actions {
  gap: 12px;
}

.client-button {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 15px;
}

.client-button:before {
  display: none;
}

.client-button--primary {
  background: #f04438;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(240, 68, 56, 0.18);
}

.client-button--primary:hover {
  background: #ff5145;
  box-shadow: 0 12px 26px rgba(240, 68, 56, 0.22);
  transform: translateY(-2px);
}

.client-button--ghost {
  background: #181818;
  border: 1px solid #303030;
  color: #f5f5f5;
  box-shadow: none;
  backdrop-filter: none;
}

.client-button--ghost:hover {
  border-color: #4a4a4a;
  box-shadow: none;
  transform: translateY(-2px);
}

.client-button--large {
  min-width: min(100%, 260px);
  min-height: 54px;
  font-size: 16px;
}

.client-section {
  width: min(1080px, calc(100% - 40px));
  padding: 120px 0;
}

.client-section__intro {
  max-width: 680px;
  margin-bottom: 52px;
}

.client-section__intro h2,
.client-final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.client-section__intro p,
.client-final-cta p {
  color: #c5c5c5;
  font-size: 17px;
  line-height: 1.7;
}

.client-pill-list,
.client-benefits {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.client-pill-list span,
.client-benefits span,
.client-model-card,
.client-featured-card,
.client-system-card,
.client-step {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.client-pill-list span,
.client-benefits span {
  padding: 20px;
  color: #f2f2f2;
  font-weight: 700;
}

.client-pill-list span:hover,
.client-benefits span:hover,
.client-featured-card:hover,
.client-system-card:hover,
.client-step:hover,
.client-model-card:hover {
  border-color: #3a3a3a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.client-model-grid {
  gap: 22px;
}

.client-model-card {
  overflow: hidden;
}

.client-model-card img {
  height: 210px;
  opacity: 1;
}

.client-model-card:hover img {
  transform: none;
}

.client-model-card__body {
  padding: 24px;
}

.client-model-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 23px;
}

.client-model-card p {
  margin-bottom: 24px;
  color: #c5c5c5;
  line-height: 1.65;
}

.client-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  overflow: hidden;
}

.client-featured-card__media {
  min-height: 100%;
  background: #101010;
  border-right: 1px solid #2a2a2a;
}

.client-featured-card__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.client-featured-card__content {
  padding: 36px;
}

.client-featured-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.client-featured-card p {
  color: #c5c5c5;
  line-height: 1.7;
}

.client-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.client-system-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
}

.client-system-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  background: #1d1d1d;
  border: 1px solid #353535;
  border-radius: 8px;
  color: #ff4d3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.client-system-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 22px;
}

.client-system-card p {
  color: #c5c5c5;
  line-height: 1.7;
}

.client-system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 24px 0 28px;
  list-style: none;
}

.client-system-list li {
  position: relative;
  padding-left: 18px;
  color: #e4e4e4;
  font-size: 14px;
  font-weight: 700;
}

.client-system-list li:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ff4d3d;
  border-radius: 50%;
  content: "";
}

.client-system-card > .client-button {
  width: fit-content;
}

.client-system-card .client-button--demo {
  width: 100%;
  background: #f04438;
  border: 1px solid #ff6a5f;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(240, 68, 56, 0.16);
}

.client-system-card .client-button--demo:hover {
  background: #ff5145;
  border-color: #ff7d73;
  box-shadow: 0 12px 26px rgba(240, 68, 56, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .client-featured-card,
  .client-system-grid {
    grid-template-columns: 1fr;
  }

  .client-featured-card__media {
    border-right: 0;
    border-bottom: 1px solid #2a2a2a;
  }
}

.client-model-card ul {
  display: none;
}

.client-card-actions .client-button {
  flex: 1 1 150px;
  border-radius: 10px;
}

.client-steps {
  gap: 16px;
}

.client-step {
  min-height: 160px;
  padding: 24px;
}

.client-step span {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  background: #1f1f1f;
  border: 1px solid #343434;
  border-radius: 10px;
  color: #ff4d3d;
}

.client-step h3 {
  color: #ffffff;
  font-size: 19px;
}

.client-final-cta {
  width: min(1080px, calc(100% - 40px));
  margin: 70px auto 110px;
  padding: 72px 28px;
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.client-final-cta p {
  margin-bottom: 28px;
}

.client-footer {
  border-top: 1px solid #252525;
  color: #8f8f8f;
}

@media (max-width: 720px) {
  .client-header {
    top: 12px;
    border-radius: 12px;
  }

  .client-hero {
    padding: 180px 20px 88px;
  }

  .client-section {
    width: min(100% - 32px, 1080px);
    padding: 88px 0;
  }

  .client-section__intro {
    margin-bottom: 36px;
  }

  .client-model-card__body,
  .client-featured-card__content,
  .client-system-card,
  .client-step {
    padding: 22px;
  }

  .client-featured-card__media img {
    min-height: 260px;
  }

  .client-system-list {
    grid-template-columns: 1fr;
  }

  .client-final-cta {
    width: min(100% - 32px, 1080px);
    margin-top: 48px;
    margin-bottom: 80px;
    padding: 46px 22px;
    border-radius: 12px;
  }
}

/* Página recrutador dark minimal */
.recruiter-page {
  background: #0f0f0f;
  color: #f5f5f5;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.recruiter-header {
  top: 18px;
  width: min(1080px, calc(100% - 32px));
  padding: 12px 16px;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
}

.recruiter-brand img {
  width: 68px;
}

.recruiter-nav {
  gap: 18px;
}

.recruiter-nav a {
  color: #c7c7c7;
  font-size: 14px;
}

.recruiter-nav a:hover {
  color: #ffffff;
}

.recruiter-hero {
  min-height: auto;
  padding: 190px 20px 120px;
  background: #0f0f0f;
}

.recruiter-hero__inner {
  width: min(1080px, 100%);
  gap: 56px;
}

.recruiter-hero__content {
  text-align: left;
}

.recruiter-eyebrow {
  margin-bottom: 14px;
  color: #ff4d3d;
  font-size: 12px;
  letter-spacing: 2.4px;
}

.recruiter-hero h1,
.recruiter-section__intro h2,
.recruiter-contact h2 {
  color: #ffffff;
  letter-spacing: -1.5px;
}

.recruiter-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
}

.recruiter-hero p {
  max-width: 620px;
  margin-bottom: 34px;
  color: #c8c8c8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.recruiter-hero__photo:before,
.recruiter-hero__photo:after {
  display: none;
}

.recruiter-hero__photo img {
  max-height: 500px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.recruiter-actions,
.recruiter-card-actions {
  gap: 12px;
}

.recruiter-button {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 15px;
}

.recruiter-button:before {
  display: none;
}

.recruiter-button--primary {
  background: #f04438;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(240, 68, 56, 0.14);
}

.recruiter-button--primary:hover {
  background: #ff5145;
  box-shadow: 0 10px 24px rgba(240, 68, 56, 0.18);
  transform: translateY(-2px);
}

.recruiter-button--ghost {
  background: #111111;
  border: 1px solid #303030;
  color: #f5f5f5;
  box-shadow: none;
  backdrop-filter: none;
}

.recruiter-button--ghost:hover {
  border-color: #444444;
  box-shadow: none;
  transform: translateY(-2px);
}

.recruiter-button--large {
  min-width: min(100%, 240px);
  min-height: 54px;
  font-size: 16px;
}

.recruiter-section {
  width: min(1080px, calc(100% - 40px));
  padding: 110px 0;
  scroll-margin-top: 130px;
}

.recruiter-section__intro {
  max-width: 680px;
  margin-bottom: 48px;
}

.recruiter-section__intro h2,
.recruiter-contact h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.recruiter-section__intro p,
.recruiter-contact p {
  color: #c5c5c5;
  font-size: 17px;
  line-height: 1.7;
}

.recruiter-about__panel,
.recruiter-tech-card,
.recruiter-project-card,
.recruiter-timeline__item,
.recruiter-contact {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.recruiter-tech-card:hover,
.recruiter-project-card:hover,
.recruiter-timeline__item:hover {
  border-color: #3a3a3a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.recruiter-about__panel {
  max-width: 900px;
  padding: 30px;
  gap: 28px;
}

.recruiter-about__content span {
  margin-bottom: 12px;
  color: #ff4d3d;
}

.recruiter-about__content p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.75;
}

.recruiter-about__highlights {
  gap: 10px;
}

.recruiter-about__highlights span {
  padding: 12px 14px;
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #f2f2f2;
}

.recruiter-tech-grid {
  gap: 16px;
}

.recruiter-tech-card {
  min-height: 140px;
  border-radius: 12px;
}

.recruiter-tech-card i {
  color: #ff4d3d;
  font-size: 34px;
}

.recruiter-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.recruiter-project-card {
  display: flex;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

.recruiter-project-card img {
  display: none;
}

.recruiter-project-card:hover img {
  transform: none;
}

.recruiter-project-card__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 24px;
}

.recruiter-project-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 22px;
}

.recruiter-project-card p,
.recruiter-timeline__item p,
.recruiter-education-card p {
  color: #c5c5c5;
  line-height: 1.65;
}

.recruiter-project-card p {
  margin-bottom: 24px;
}

.recruiter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.recruiter-tags span {
  background: #181818;
  border: 1px solid #303030;
  color: #e6e6e6;
}

.recruiter-card-actions .recruiter-button {
  flex: 1 1 120px;
  border-radius: 10px;
}

.recruiter-more {
  margin-top: 44px;
}

.recruiter-timeline {
  gap: 16px;
}

.recruiter-timeline__item {
  padding: 24px;
}

.recruiter-timeline__item span {
  color: #ff4d3d;
}

.recruiter-timeline__item h3 {
  color: #ffffff;
  font-size: 21px;
}

.recruiter-education-timeline {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 34px;
}

.recruiter-education-timeline:before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 9px;
  width: 1px;
  background: #303030;
  content: "";
}

.recruiter-education-item {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.recruiter-education-item:before {
  position: absolute;
  top: 7px;
  left: -31px;
  width: 13px;
  height: 13px;
  background: #ff4d3d;
  border: 3px solid #111111;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ff4d3d;
  content: "";
}

.recruiter-education-date {
  padding-top: 2px;
  color: #ff4d3d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.recruiter-education-card {
  position: relative;
  padding: 24px;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.recruiter-education-card:hover {
  border-color: #3a3a3a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.recruiter-status {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  background: #181818;
  border: 1px solid #303030;
  border-radius: 8px;
  color: #e6e6e6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.recruiter-status--active {
  color: #ffb3ad;
}

.recruiter-status--done {
  color: #d9f7df;
}

.recruiter-status--study {
  color: #d6e7ff;
}

.recruiter-education-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.recruiter-education-card strong {
  display: block;
  margin-bottom: 14px;
  color: #e7e7e7;
  font-size: 15px;
}

.recruiter-contact {
  width: min(1080px, calc(100% - 40px));
  margin: 70px auto 110px;
  padding: 64px 28px;
  text-align: center;
  scroll-margin-top: 130px;
}

.recruiter-contact p {
  margin-bottom: 28px;
}

.recruiter-footer {
  border-top: 1px solid #252525;
  color: #8f8f8f;
}

@media (max-width: 720px) {
  .recruiter-header {
    top: 12px;
    border-radius: 12px;
  }

  .recruiter-hero {
    padding: 190px 20px 88px;
  }

  .recruiter-hero__inner {
    gap: 40px;
  }

  .recruiter-hero__photo img {
    max-height: 420px;
  }

  .recruiter-section {
    width: min(100% - 32px, 1080px);
    padding: 88px 0;
  }

  .recruiter-section__intro {
    margin-bottom: 36px;
  }

  .recruiter-education-timeline {
    padding-left: 28px;
  }

  .recruiter-education-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .recruiter-education-item:before {
    left: -28px;
  }

  .recruiter-about__panel,
  .recruiter-project-card__body,
  .recruiter-education-card,
  .recruiter-timeline__item {
    padding: 22px;
  }

  .recruiter-contact {
    width: min(100% - 32px, 1080px);
    margin-top: 48px;
    margin-bottom: 80px;
    padding: 46px 22px;
    border-radius: 12px;
    text-align: left;
  }
}

/* Index dark minimal */
.choice-page {
  background: #0b0b0b;
}

.choice-card {
  background: #111111;
  border: 1px solid #222222;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

.choice-card:before,
.choice-card:after {
  display: none;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: #333333;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.choice-card__icon {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  box-shadow: none;
  color: #f04438;
}

.choice-card:hover .choice-card__icon,
.choice-card:focus-visible .choice-card__icon {
  box-shadow: none;
  transform: none;
}

@media (max-width: 720px) {
  .choice-card {
    border-radius: 10px;
  }
}

/* Ajustes pontuais da página recrutador */
.recruiter-about__panel {
  position: relative;
  max-width: 820px;
  padding: 0;
  display: block;
  overflow: hidden;
  background: #101010;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.recruiter-about__content span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: #171717;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  color: #ff4d3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.recruiter-about__content {
  padding: 36px;
}

.recruiter-about__content p {
  max-width: none;
  color: #dddddd;
  font-size: 19px;
  line-height: 1.85;
}

.recruiter-about__highlights {
  align-self: stretch;
  display: grid;
  gap: 0;
  background: #0d0d0d;
  border-left: 1px solid #252525;
}

.recruiter-about__highlights span {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #252525;
  border-radius: 0;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 700;
}

.recruiter-about__highlights span:last-child {
  border-bottom: 0;
}

.recruiter-about__highlights span:before {
  width: 7px;
  height: 7px;
  margin-right: 12px;
  background: #ff4d3d;
  border-radius: 50%;
  content: "";
}

.recruiter-tech-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
}

.recruiter-tech-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: recruiterTechScroll 24s linear infinite;
}

.recruiter-tech-carousel:hover .recruiter-tech-track {
  animation-play-state: paused;
}

.recruiter-tech-carousel:before,
.recruiter-tech-carousel:after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(120px, 18vw);
  height: 100%;
  pointer-events: none;
  content: "";
}

.recruiter-tech-carousel:before {
  left: 0;
  background: linear-gradient(to right, #0f0f0f, transparent);
}

.recruiter-tech-carousel:after {
  right: 0;
  background: linear-gradient(to left, #0f0f0f, transparent);
}

.recruiter-tech-card {
  flex: 0 0 190px;
  min-height: 120px;
  background: #111111;
  border: 1px solid #262626;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.recruiter-tech-card:hover {
  border-color: #333333;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.recruiter-contact .recruiter-actions {
  justify-content: center;
  gap: 14px;
}

.recruiter-contact .recruiter-button {
  width: auto;
  min-width: 150px;
}

@keyframes recruiterTechScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (max-width: 720px) {
  .recruiter-about__panel {
    grid-template-columns: 1fr;
  }

  .recruiter-about__content {
    padding: 24px;
  }

  .recruiter-about__content p {
    font-size: 17px;
  }

  .recruiter-about__highlights {
    border-top: 1px solid #252525;
    border-left: 0;
  }

  .recruiter-tech-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .recruiter-tech-card {
    flex-basis: 150px;
    min-height: 105px;
  }

  .recruiter-contact .recruiter-actions {
    justify-content: center;
  }

  .recruiter-contact .recruiter-button {
    width: auto;
    min-width: 140px;
  }
}

@media (max-width: 980px) {
  .recruiter-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .recruiter-project-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruiter-project-card {
    min-height: auto;
  }

  .recruiter-project-card__body {
    padding: 20px;
  }

  .recruiter-card-actions .recruiter-button {
    width: 100%;
    flex-basis: 100%;
  }
}

/* Redes sociais */
.social-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #d9d9d9;
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.social-links a:hover {
  background: #181818;
  border-color: #3a3a3a;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-links i,
.client-button i,
.recruiter-button i {
  width: 16px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.social-links--choice {
  margin-top: 26px;
}

.social-links--choice a {
  min-height: 36px;
  padding: 8px 11px;
  background: transparent;
  color: #9f9f9f;
  font-size: 13px;
}

.social-links--client {
  margin-top: 18px;
}

.client-final-cta .social-links--client {
  margin-top: 18px;
}

.client-final-cta .social-links--client a {
  min-width: 150px;
}

.client-button,
.recruiter-button {
  gap: 8px;
}

@media (max-width: 720px) {
  .social-links {
    justify-content: flex-start;
  }

  .choice-panel .social-links {
    justify-content: center;
  }

  .social-links a {
    flex: 1 1 140px;
  }

  .social-links--choice a {
    flex: 0 1 auto;
  }
}

/* Tipografia global */
body,
.choice-page,
.client-page,
.recruiter-page {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
.choice-card__label,
.client-button,
.recruiter-button {
  font-weight: 800;
}

p,
li,
span {
  line-height: 1.7;
}

.choice-subtitle,
.client-hero p,
.client-section__intro p,
.client-final-cta p,
.recruiter-hero p,
.recruiter-section__intro p,
.recruiter-contact p {
  line-height: 1.75;
}

.main-nav__menu a,
.client-nav a,
.recruiter-nav a {
  font-weight: 600;
}
