/*
Theme Name: Checkboost
Theme URI: https://checkboost.com.br
Author: Checkboost
Author URI: https://checkboost.com.br
Description: Tema oficial Andressa Urach — design premium com suporte ao plugin Checkboost Home Builder.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: checkboost
Tags: custom-background, custom-logo, full-width-template, theme-options
*/

/* ==========================================================================
   IMPORT FONTS
   ========================================================================== */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400,300&display=swap');

/* ==========================================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */
:root {
  /* Colors */
  --color-bg: #03111C;
  --color-cream: #EEEBDE;
  --color-cream-50: rgba(238, 235, 222, 0.5);
  --color-cream-30: rgba(238, 235, 222, 0.3);
  --color-border: #27333A;
  --color-inverse: #03111C;

  /* Typography */
  --font-family: 'Satoshi', sans-serif;

  /* Font sizes */
  --text-meta: 18px;
  --text-body: 20px;
  --text-h3: 32px;
  --text-h2: 48px;
  --text-h1: 64px;
  --text-xl: 80px;
  --text-xxl: 160px;
  --text-hero: 280px;

  /* Spacing */
  --spacing-xs: 16px;
  --spacing-sm: 32px;
  --spacing-md: 48px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
  --spacing-xxl: 128px;

  /* Letter spacing */
  --tracking-tight: -2px;
  --tracking-normal: -1px;
  --tracking-wide: 1px;

  /* Line heights */
  --leading-none: 0.9;
  --leading-tight: 1.0;
  --leading-snug: 1.2;
  --leading-normal: 1.3;
  --leading-relaxed: 1.4;
  --leading-loose: 1.6;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-cream);
  overflow-x: hidden;
  line-height: 1.4;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

p {
  margin: 0;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   SITE WRAPPER
   ========================================================================== */
#page {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  background-color: var(--color-bg);
}

/* ==========================================================================
   NOISE OVERLAY (GLOBAL)
   ========================================================================== */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/noise.png');
  background-size: 220px 220px;
  background-position: top left;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   BUTTON TEXT STYLE ([ text ])
   ========================================================================== */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-text:hover {
  opacity: 0.7;
}

.btn-bracket {
  font-weight: 700;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background-color: var(--color-cream);
  color: var(--color-inverse);
  border-radius: 500px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-solid:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* ==========================================================================
   SECTION HERO
   ========================================================================== */
.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  z-index: 6;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Imagem e vídeo de fundo com mesma aparência */
.hero-image-wrapper img,
.hero-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* GIF: usar position absolute centrado para manter proporção e opacidade */
.hero-image-wrapper .hero-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.7;
}

/* Hide / Show media based on viewport */
.chb-media-desktop, .chb-media-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.chb-media-mobile {
  display: none;
}
@media (max-width: 768px) {
  .chb-media-desktop { display: none; }
  .chb-media-mobile { display: block; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  /* URL resolvida via inline style no PHP para garantir funcionamento no WP */
  background-size: 220px 220px;
  background-position: top left;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
  background-repeat: repeat;
}

.hero-big-title {
  position: absolute;
  left: 50%;
  top: 42%; /* Subindo o texto para acomodar melhor o botão */
  transform: translate(-50%, -50%);
  font-family: var(--font-family);
  font-weight: 700;
  /*
   * 13.5vw: calibrado para Satoshi Bold de modo que
   * "ANDRESSA ®" caiba em 1 linha e "URACH" quebre para a 2ª.
   * Resultado: título enorme de 2 linhas preenchendo a tela.
   */
  font-size: clamp(48px, 13.5vw, 260px);
  color: var(--color-cream);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -2px;
  line-height: 0.92;
  white-space: normal;       /* permite quebra de linha */
  word-break: keep-all;      /* não quebra dentro de palavras */
  mix-blend-mode: difference;
  z-index: 3;
  pointer-events: none;
  width: 90vw;
  max-width: 90vw;
}

.hero-center-btn-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  /* 
   * Acompanha o "top: 42%" do título. A altura é aprox 2 linhas de 0.92em. 
   */
  top: calc(42% + (0.92 * clamp(48px, 13.5vw, 260px)) + 20px);
  z-index: 10;
  pointer-events: none; /* Deixa o clique passar no espaço vazio */
}

.hero-center-btn-animator {
  pointer-events: auto; /* Permite clique no botão */
  animation: pulse-soft 2s infinite ease-in-out;
}

@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-header {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1728px;
  display: flex;
  align-items: center;
  gap: 32px;
  mix-blend-mode: difference;
  z-index: 10;
}

.hero-header-left,
.hero-header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-header-right {
  justify-content: flex-end;
}

.hero-header-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-text {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

.hero-grid {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 91.6%;
  max-width: 1760px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  z-index: 5;
}

/* Grupo direito: badge + scroll empilhados */
.hero-grid-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

/* Mouse Scroll Indicator */
.scroll-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-cream);
  border-radius: 20px;
  position: relative;
  opacity: 0.7;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-cream);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.5;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

.hero-headline {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 32px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
  max-width: 45%;
}

/* ==========================================================================
   SECTION ABOUT (PLATAFORMAS OFICIAIS)
   ========================================================================== */
.section-about {
  position: relative;
  width: 100%;
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-xl) var(--spacing-xl) 0;
  z-index: 5;
}

.section-label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  white-space: nowrap;
}

.section-sidebar {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section-title-h1 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(28px, 2.5vw, 48px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-normal);
  line-height: 1.3;
  width: 100%;
}

.section-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--text-body);
  color: var(--color-cream-50);
  line-height: 1.4;
  width: 100%;
}

/* PLATAFORMAS GRID */
.plataformas-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 2px;
}

.plataformas-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: -2px;
  min-height: 480px; /* Um pouco menor que depoimentos, mas ainda "quadrado" */
}

.plataforma-card {
  flex: 1;
  background: var(--color-dark);
  border: 2px solid var(--color-border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-right: -2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  min-width: 50%;
}

.plataforma-card:hover {
  background: rgba(238, 235, 222, 0.05);
  border-color: var(--color-accent);
  transform: translateY(-5px);
  z-index: 10;
}

.plataforma-link-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.plataforma-card:hover .plataforma-link-icon {
  opacity: 1;
  transform: translate(3px, -3px);
  color: var(--color-accent);
}

.plataforma-number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
}

.plataforma-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 20px;
  width: 100%;
}

.plataforma-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 40px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
}

.plataforma-desc {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-cream-50);
  line-height: normal;
}



/* ==========================================================================
   SECTION WORK (DESTAQUES & PROJETOS)
   ========================================================================== */
.section-work {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}

.work-header {
  padding: var(--spacing-xxl) var(--spacing-xl) var(--spacing-xl);
  width: 100%;
}

.work-header-inner {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  width: 100%;
}

.work-titles {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  text-transform: uppercase;
  color: var(--color-cream);
}

.work-big-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(50px, 8.3vw, 160px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.work-subtitle-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 48px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-normal);
  line-height: 1.3;
}

/* PROJECT SLIDES */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-bg);
}

.project-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.6s ease;
}

.project-slide:hover .project-slide-image {
  transform: scale(1.03);
}

.project-slide-noise {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/noise.png');
  background-size: 220px 220px;
  background-position: top left;
  opacity: 0.08;
  pointer-events: none;
  z-index: 2;
}

.project-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 50px;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: difference;
}

.project-slide-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(24px, 4.5vw, 64px); /* Adjusted smaller since it's 2 cols */
  color: var(--color-cream);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: var(--tracking-tight);
  line-height: 1.0;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  mix-blend-mode: difference;
  pointer-events: none;
  display: block;
}

.project-slide-link {
  mix-blend-mode: difference;
  pointer-events: auto;
}

.project-slide-link .btn-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 32px); /* Adjusted proportionally */
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.0;
}

/* ==========================================================================
   SECTION TESTIMONIALS (REPERCUSSÃO NA MÍDIA)
   ========================================================================== */
.section-testimonials {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xxl);
  z-index: 3;
}

.testimonials-inner {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  width: 100%;
}

.testimonials-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  text-transform: uppercase;
  color: var(--color-cream);
  width: 100%;
}

.testimonials-big-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(50px, 8.3vw, 160px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.testimonials-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 48px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-normal);
  line-height: 1.3;
  width: 100%;
}

/* TESTIMONIALS GRID */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 2px;
}

.testimonials-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: -2px;
  min-height: 540px;
}

.testimonial-card {
  flex: 1;
  background: var(--color-dark);
  border: 2px solid var(--color-border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-right: -2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  min-width: 50%; /* Garante metade da largura mesmo se for o único da linha */
}

a.testimonial-card:hover {
  background: rgba(238, 235, 222, 0.05);
  border-color: var(--color-accent);
  transform: translateY(-5px);
  z-index: 10;
}

.testimonial-link-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  opacity: 0.2;
  transition: all 0.4s ease;
}

a.testimonial-card:hover .testimonial-link-icon {
  opacity: 1;
  transform: translate(3px, -3px);
  color: var(--color-accent);
}

.testimonial-number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.testimonial-title-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--text-h3);
  color: var(--color-cream);
  text-transform: uppercase;
  line-height: 1.4;
  width: 100%;
}

.testimonial-quote {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--text-body);
  color: var(--color-cream-50);
  line-height: 1.6;
  width: 100%;
}

.testimonial-author {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: black;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  white-space: nowrap;
}

.testimonial-author-org {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream-50);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  white-space: nowrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Instagram gallery strip — Marquee Infinito */
.footer-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-dark);
}

.footer-gallery-track {
  display: flex;
  width: max-content; /* Necessário para que os itens fiquem em linha */
  animation: galleryScroll 40s linear infinite;
}

.footer-gallery-item {
  width: 480px; 
  height: 480px;
  flex-shrink: 0;
  position: relative;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    /* 
     * Como renderizamos 3 cópias, mover 1/3 (-33.33%) 
     * faz o loop perfeito sem saltos.
     */
    transform: translateX(-33.333333%);
  }
}

/* Pausa o scroll ao passar o mouse */
.footer-gallery:hover .footer-gallery-track {
  animation-play-state: paused;
}

.footer-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease;
}

.footer-gallery-item:hover img {
  transform: scale(1.05);
}

.footer-gallery-noise {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/noise.png');
  background-size: 220px 220px;
  background-position: top left;
  opacity: 0.08;
  pointer-events: none;
}

/* Footer CTA */
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  align-items: center;
  width: 100%;
  padding: var(--spacing-xxl) 80px 80px var(--spacing-xxl);
}

.footer-cta-header {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.footer-big-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(48px, 8.3vw, 160px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  min-width: 100%;
}

.footer-cta-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 48px);
  color: var(--color-cream-50);
  letter-spacing: var(--tracking-normal);
  line-height: 1.3;
  max-width: 1200px;
}

.footer-cta-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(30px, 4.1vw, 80px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  text-align: center;
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-cta-link:hover {
  opacity: 0.7;
}

/* Footer Nav */
.footer-nav {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 1400px;
  max-width: 100%;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.footer-col-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.footer-col-label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream-50);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  text-align: center;
  white-space: nowrap;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.footer-nav-list a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--text-meta);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  display: block;
  width: 100%;
  text-align: center;
  transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
  opacity: 0.6;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.footer-bottom-left {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-center {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-logo-text {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-bottom-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
  .section-about,
  .work-header,
  .section-testimonials,
  .footer-cta {
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-sidebar {
    width: 200px;
  }
}

@media (max-width: 1024px) {
  .section-about,
  .work-header,
  .section-testimonials {
    flex-direction: column;
    gap: 40px;
    padding: 60px 40px 0;
  }

  .section-sidebar {
    width: 100%;
  }

  .plataformas-row,
  .testimonials-row {
    flex-direction: column;
  }

  .plataforma-card,
  .testimonial-card {
    margin-right: 0;
    margin-bottom: -2px;
    min-height: auto;
    gap: 48px;
  }

  .footer-nav {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .footer-gallery-item {
    height: 300px;
  }

  .footer-cta {
    padding: 80px 40px;
  }

  .hero-big-title {
    font-size: clamp(48px, 10vw, 160px);
  }

  .hero-headline {
    font-size: clamp(22px, 3vw, 48px);
    max-width: 70%;
  }

  .hero-grid {
    flex-direction: column;
    gap: 20px;
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  /* HERO MOBILE */
  .hero-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    top: 32px;
    mix-blend-mode: normal;
  }

  .hero-header-center {
    display: none;
  }

  .hero-header-left, .hero-header-right {
    width: auto;
  }

  .hero-big-title {
    font-size: clamp(40px, 15vw, 100px);
    top: 28%;
    width: 90vw;
    line-height: 1.1;
    mix-blend-mode: normal;
  }

  .hero-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    bottom: 40px;
    gap: 40px;
    width: 100%;
    padding: 0 40px;
  }

  .hero-headline {
    max-width: 100%;
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-grid-right {
    align-items: center;
  }

  /* SEÇÕES GLOBAL */
  .section-about,
  .work-header,
  .section-testimonials,
  .testimonials-inner,
  .work-header-inner {
    flex-direction: column;
    padding: 60px 40px 0;
    gap: 40px;
  }

  .btn-text {
    white-space: normal;
    text-align: center;
    display: inline-block; /* Permite wrapping melhor */
  }

  .testimonials-inner, .work-header-inner {
    padding: 0;
    width: 100%;
  }

  .section-sidebar {
    width: 100%;
  }

  .section-title-h1, .work-big-title, .testimonials-big-title, .footer-big-title {
    font-size: clamp(32px, 10vw, 80px);
    line-height: 1.1;
  }

  .work-subtitle-text, .testimonials-subtitle {
    font-size: 20px;
  }

  .plataformas-row, .testimonials-row {
    flex-direction: column;
    margin-bottom: 0;
  }

  .plataforma-card, .testimonial-card {
    margin-right: 0;
    margin-bottom: -2px;
    padding: 40px;
    min-height: auto;
  }

  /* PROJETOS */
  .project-slide {
    height: 60vh;
  }

  .project-slide-title {
    font-size: clamp(32px, 12vw, 120px);
    bottom: 10%;
  }

  .project-slide-link {
    top: 32px;
    right: 32px;
  }

  /* DEPOIMENTOS */
  .testimonials-content {
    gap: 48px;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* FOOTER */
  .footer-cta {
    padding: 80px 40px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-col-inner {
    align-items: center;
  }

  .footer-nav-list {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 24px 40px;
  }

  .footer-gallery-item {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-big-title {
    font-size: clamp(36px, 15vw, 80px);
  }

  .hero-headline {
    font-size: 18px;
  }

  .btn-solid {
    width: 100%;
    padding: 16px 24px;
  }

  .footer-gallery-item {
    width: 260px;
    height: 260px;
  }

  .testimonial-title-text {
    font-size: 24px;
  }
}
