/* ==========================================
   Reset & Base
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #0f0d0f;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Mobile: wrappers transparentes mas com clip lateral */
.phone-frame {
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow-x: clip;
}

.phone-screen {
  width: 100%;
  overflow-x: clip;
}

/* Desktop: ativa o frame de celular */
@media (min-width: 1024px) {
  body {
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px 60px;
    overflow-x: unset;
  }

  .phone-frame {
    width: 390px;
    height: 844px;
    border-radius: 52px;
    border: 8px solid #2c2c2c;
    box-shadow:
      0 0 0 1px #3d3d3d,
      0 40px 100px rgba(0, 0, 0, 0.8),
      inset 0 0 0 1px #1a1a1a;
    overflow: hidden;
    flex-shrink: 0;
    transform: translateZ(0);
  }

  .phone-screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #0f0d0f;
    scrollbar-width: none;
  }

  .phone-screen::-webkit-scrollbar {
    display: none;
  }
}

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

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



/* ==========================================
   Header
   ========================================== */
.header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 12px 16px;
  width: 100%;
  position: sticky;
  top: 0;
  background: transparent;
  z-index: 10;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 15, 0) 0%, rgba(15, 13, 15, 0.8));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  z-index: -1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-icon {
  width: 34px;
  height: 40px;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: 1;
}

.nav-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  padding: 4px;
  white-space: nowrap;
}

.nav-link.muted {
  color: #7b7b7b;
}

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

/* ==========================================
   Hero
   ========================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 0 40px;
  width: 100%;
}

.hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 0 16px;
}

.hero-title {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 85px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  text-align: left;
  padding-top: 20px;
}

.hero-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: #7b7b7b;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.companies-marquee {
  width: 100%;
  overflow: hidden;
  opacity: 0.6;
  padding-top: 20px;
  mask-image: linear-gradient(to right, transparent 0px, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0px, black 20px, black calc(100% - 20px), transparent 100%);
}

.companies-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  margin-right: 32px;
}

.company img {
  object-fit: contain;
  height: 18px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.company.humanizadas img {
  height: 22px !important;
}

.company.seu-influencer img {
  height: 22px !important;
}

/* ==========================================
   Work Cards Carousel
   ========================================== */
.cards-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  background-color: #0f0d0f;
  padding-bottom: 40px;
}

.cards-track {
  display: flex;
  gap: 16px;
  padding-left: 20px;
  padding-right: 0;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cards-track::-webkit-scrollbar {
  display: none;
}

.cards-track::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
}

.card {
  background-color: #1a1a1a;
  border-radius: 28px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  width: calc(100% - 40px);
  min-width: calc(100% - 40px);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 20px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-category {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #7b7b7b;
  display: block;
}

.card-quote {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: #fff;
}

.card-desc {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #7b7b7b;
  display: block;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 8px;
}

.card-logo {
  flex: 1;
  min-width: 0;
  height: 16px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.card-cta {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}

.card-arrow {
  width: 11px;
  height: 11px;
  object-fit: contain;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: #272727;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.dot.active {
  background-color: #a3a3a3;
}

/* ==========================================
   Projects Section
   ========================================== */
.projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding-bottom: 60px;
}

.project {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.project-label {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #7b7b7b;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.project-scroll-wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  padding-left: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.project-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.project-scroll-wrap::after {
  content: '';
  min-width: 16px;
  flex-shrink: 0;
}

.project-scroll-track {
  display: flex;
  min-width: max-content;
  gap: 12px;
  background-color: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
}

.project-scroll-track img {
  height: 516px;
  width: 237px;
  object-fit: cover;
  border-radius: 28px;
  flex-shrink: 0;
  pointer-events: none;
}

.project-scroll-track img.wide {
  width: 918px;
  border-radius: 28px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 0 16px;
}

.tag {
  background-color: #404040;
  color: #0f0d0f;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  padding: 0 8px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}


/* ==========================================
   About Page
   ========================================== */
.about-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 80px 20px 0;
}

.about-title {
  font-family: 'Kode Mono', monospace;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.about-body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}

.about-body p { margin: 0; }
.about-body p + p { margin-top: 1.3em; }
.about-body--light { font-weight: 700; }

.about-photo-wrap {
  width: 371px;
  max-width: calc(100% - 40px);
  height: 371px;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px auto 0;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.25) translateY(20px) translateX(-20px);
  transform-origin: center center;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px 0;
}

.about-section--cards { padding-bottom: 40px; }

.about-section-label {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #7b7b7b;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.exp-card {
  background: #1a1a1a;
  border-radius: 28px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 0;
}

.exp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.exp-logo-maia {
  height: 16px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.exp-logo-humanizadas {
  height: 20px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.exp-logo-seuinfluencer {
  display: flex;
  align-items: center;
  gap: 5px;
}

.exp-logo-seuinfluencer img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.exp-logo-seuinfluencer span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.exp-date {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #7b7b7b;
  text-transform: uppercase;
  white-space: nowrap;
}

.exp-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.exp-role {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

.exp-duration {
  background: #343434;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  padding: 4px 16px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-desc {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #7b7b7b;
  margin: 0;
}

.exp-image-wrap {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 0 20px 20px;
  flex-shrink: 0;
}

.exp-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  display: block;
  max-width: none;
}

.exp-skill-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
}

.exp-skill-tag {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  padding: 4px 16px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ==========================================
   Stack Section
   ========================================== */
.stack-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  width: 100%;
}

.stack-subtitle {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #7b7b7b;
  text-align: center;
  padding: 0 20px;
  margin: 0;
}

.stack-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}

.stack-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stack-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.stack-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.stack-name {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  display: block;
}

.stack-category {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #7b7b7b;
  display: block;
}

/* ==========================================
   Floating Contact Button
   ========================================== */
.contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 80px;
  padding: 4px;
  text-decoration: none;
  z-index: 50;
  overflow: hidden;
  transition: background 0.2s ease;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  justify-content: center;
  padding: 0 4px 0 20px;
  white-space: nowrap;
}

.contact-btn-label {
  font-family: 'Kode Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.contact-btn-time {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  line-height: 1;
}

.contact-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #141414;
  border-radius: 20px;
  flex-shrink: 0;
}

.contact-btn-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}
