@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* === PALETA PREMIUM DARK LUXURY === */
  --primary: #C9A84C;          /* Ouro premium */
  --primary-light: #E2C97E;    /* Ouro claro (hover) */
  --accent-blue: #C9A84C;      /* Ouro (usado como accent principal) */
  --accent-violet: #8B6FE8;    /* Violeta luxuoso (accent secundário) */
  --accent-emerald: #3DD9A4;   /* Esmeralda suave (destaque pontual) */
  --bg-color: #08080E;         /* Obsidiana profunda (fundo principal) */
  --bg-mid: #0D0D18;           /* Fundo intermediário */
  --surface: #111120;          /* Superfície de cards */
  --surface-2: #17172A;        /* Superfície elevada */
  --surface-hover: #1E1E33;    /* Hover de cards */
  --border-color: rgba(201, 168, 76, 0.15); /* Borda dourada sutil */
  --border-strong: rgba(201, 168, 76, 0.30); /* Borda dourada forte */
  --text-primary: #F0EDE8;     /* Branco quente */
  --text-secondary: #9A96A4;   /* Cinza lavanda */
  --text-muted: #5C586A;       /* Texto suavizado */
  --glow-gold: rgba(201, 168, 76, 0.25);
  --glow-violet: rgba(139, 111, 232, 0.20);
}


html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

/* Vibrant Text Gradients (Converted to solid colors for accessibility & design system rules) */
.text-gradient {
  color: var(--text-primary);
}

.text-gradient-vibrant {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* Glassmorphism utility */
.glass-nav {
  background: rgba(8, 8, 14, 0.88); /* Obsidiana translúcida */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Premium Cards (Animated Glowing Borders) */
.premium-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* O pseudo-elemento BEFORE atua como uma borda brilhante e pulsante no HOVER */
.premium-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(45deg, var(--primary), var(--accent-violet), var(--primary));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientShift 4s ease infinite;
}

/* O fundo real do card fica por cima da borda animada */
.premium-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--surface);
  border-radius: 15px;
  z-index: -1;
  transition: background 0.5s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -10px rgba(201, 168, 76, 0.18), 0 10px 25px -5px rgba(139, 111, 232, 0.15);
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card:hover::after {
  background: var(--surface-hover);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Icon Container */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.12);
  color: var(--primary);
  transition: all 0.4s ease;
}

.premium-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(139, 111, 232, 0.15));
  color: var(--primary-light);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.2);
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #0A0A14;
  font-weight: 700;
  border-radius: 99px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--primary);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #08080E;
  box-shadow: 0 12px 30px -5px rgba(201, 168, 76, 0.45);
  border-color: var(--primary-light);
  text-decoration: none;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: rgba(201, 168, 76, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-weight: 500;
  border-radius: 99px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--primary);
  color: #08080E;
  box-shadow: 0 10px 25px -8px rgba(201, 168, 76, 0.40);
}

/* Marquee Animation */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 3rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 3rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 3rem)); }
}

.marquee-icon {
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: all 0.4s ease;
  filter: grayscale(100%) opacity(0.35);
}

.marquee-container:hover .marquee-icon {
  filter: grayscale(100%) opacity(0.18);
}

.marquee-container .marquee-icon:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.2);
  /* The original colors of the devicons will show up brilliantly */
}

/* Image Hover Effects */
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-card:hover .img-hover-zoom img {
  transform: scale(1.08);
}

/* WhatsApp Pulse - More vibrant */
@keyframes pulse-vibrant {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
  background: #25D366;
  animation: pulse-vibrant 2.5s infinite;
  transition: all 0.3s ease;
  z-index: 90;
}

.whatsapp-btn:hover {
  animation: none;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.20);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utilities */
.text-balance {
  text-wrap: balance;
}

/* Swiper Premium Styles */
.swiper-pagination-bullet {
  background: rgba(201, 168, 76, 0.25) !important;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  box-shadow: 0 0 10px var(--glow-gold) !important;
  transform: scale(1.2);
}

[class^="swiper-button-next-"].swiper-button-disabled,
[class^="swiper-button-prev-"].swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Agency Hero Background Grid */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Glowing Orbital Orbs */
.orbital-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
  100% { transform: translateY(20px) scale(0.9); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #08080E;
  box-shadow: 0 12px 30px -5px rgba(201, 168, 76, 0.45);
  border-color: var(--primary-light);
  text-decoration: none;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: rgba(201, 168, 76, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-weight: 500;
  border-radius: 99px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--primary);
  color: #08080E;
  box-shadow: 0 10px 25px -8px rgba(201, 168, 76, 0.40);
}

/* Marquee Animation */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 3rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 3rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 3rem)); }
}

.marquee-icon {
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: all 0.4s ease;
  filter: grayscale(100%) opacity(0.35);
}

.marquee-container:hover .marquee-icon {
  filter: grayscale(100%) opacity(0.18);
}

.marquee-container .marquee-icon:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.2);
  /* The original colors of the devicons will show up brilliantly */
}

/* Image Hover Effects */
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-card:hover .img-hover-zoom img {
  transform: scale(1.08);
}

/* WhatsApp Pulse - More vibrant */
@keyframes pulse-vibrant {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
  background: #25D366;
  animation: pulse-vibrant 2.5s infinite;
  transition: all 0.3s ease;
  z-index: 90;
}

.whatsapp-btn:hover {
  animation: none;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* Utilities */
.text-balance {
  text-wrap: balance;
}

/* Swiper Premium Styles */
.swiper-pagination-bullet {
  background: rgba(201, 168, 76, 0.25) !important;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  box-shadow: 0 0 10px var(--glow-gold) !important;
  transform: scale(1.2);
}

[class^="swiper-button-next-"].swiper-button-disabled,
[class^="swiper-button-prev-"].swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Agency Hero Background Grid */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Glowing Orbital Orbs */
.orbital-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
  100% { transform: translateY(20px) scale(0.9); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* Vanilla CSS Replacements for Tailwind */
.body-custom { selection-background-color: white; selection-color: black; }
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; max-width: 80rem; }

/* Header */
.main-header { position: relative; width: 100%; z-index: 50; transition: all 0.3s; padding: 1rem 0; }
.header-scrolled-default { padding: 1rem 0; background-color: rgba(8, 8, 14, 0.65); }
.header-scrolled { padding: 0.75rem 0; background-color: rgba(8, 8, 14, 0.92); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.header-logo { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: var(--primary); cursor: pointer; transition: opacity 0.3s; }
.header-logo:hover { opacity: 0.8; }
.text-muted { color: var(--text-secondary); }
.nav-menu { display: none; align-items: center; gap: 2rem; font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }
@media (min-width: 768px) { .nav-menu { display: flex; } }
.nav-link { color: var(--text-secondary); transition: color 0.3s; text-decoration: none; }
.nav-link:hover { color: var(--primary); }
.nav-cta { color: var(--primary); padding: 0.625rem 1.25rem; border-radius: 9999px; border: 1px solid var(--border-color); transition: all 0.3s; text-decoration: none; }
.nav-cta:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #08080E; border-color: var(--primary); }

/* Marquee */
.tech-marquee-wrapper { width: 100%; background-color: var(--surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 0.5rem 0; display: flex; align-items: center; overflow: hidden; position: relative; z-index: 10; }
.custom-marquee { display: flex; align-items: center; font-weight: 700; font-size: 0.75rem; }
.custom-marquee i { margin-right: 0.25rem; }

/* Hero */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
  background-image: url('../img/img_hero_fotoperfil.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Overlay escuro premium sobre a foto de perfil para garantir legibilidade */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(8, 8, 14, 0.97) 0%,
      rgba(8, 8, 14, 0.88) 45%,
      rgba(8, 8, 14, 0.55) 70%,
      rgba(8, 8, 14, 0.30) 100%
    );
  z-index: 1;
}

/* Layout hero centralizado (sem grid de 2 colunas) */
.hero-content-centered {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
}

@media (max-width: 1024px) {
  .hero-content-centered {
    justify-content: center;
    padding: 3rem 0;
  }
  .hero-photo-overlay {
    background: rgba(8, 8, 14, 0.88);
  }
}

.hero-text-centered {
  max-width: 640px;
}
.hero-bg-grid { position: absolute; inset: 0; z-index: 0; }
.glow-1 { width: 600px; height: 600px; background-color: rgba(201, 168, 76, 0.07); top: 0; left: 50%; transform: translateX(-50%); }
.glow-2 { width: 400px; height: 400px; background-color: rgba(139, 111, 232, 0.06); bottom: 0; left: 25%; }
.glow-3 { width: 300px; height: 300px; background-color: rgba(201, 168, 76, 0.08); top: 33%; right: 25%; }
.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 64rem; }
.status-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid rgba(201, 168, 76, 0.35); background-color: rgba(201, 168, 76, 0.12); font-size: 0.75rem; font-weight: 600; color: var(--primary); margin-bottom: 2rem; backdrop-filter: blur(12px); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.status-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background-color: #10b981; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.hero-title { font-size: 2rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 0.5rem; color: #FFFFFF; text-wrap: balance; text-shadow: 0 4px 20px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .hero-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 2.75rem; } }
.hero-subtitle { color: rgba(240, 237, 232, 0.90); font-size: 1rem; margin-bottom: 1rem; max-width: 48rem; font-weight: 400; line-height: 1.5; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.1rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.1875rem; } }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; width: 100%; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; width: auto; } }
.hero-btn { padding: 1.25rem 2.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 1rem; font-weight: 500; text-decoration: none; }
.primary-glow { box-shadow: 0 0 30px rgba(37, 99, 235, 0.3); }

/* Mockup */
.mockup-container { margin-top: 5rem; width: 100%; max-width: 56rem; height: auto; min-height: 16rem; border-radius: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); background-color: rgba(10, 10, 10, 0.75); backdrop-filter: blur(16px); display: flex; flex-direction: column; overflow: hidden; position: relative; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
@media (min-width: 768px) { .mockup-container { height: auto; min-height: 20rem; } }
.mockup-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent); pointer-events: none; }
.mockup-header { height: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; padding: 0 1rem; gap: 0.5rem; background-color: rgba(0, 0, 0, 0.4); }
.mockup-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; }
.mockup-dot.red { background-color: rgba(239, 68, 68, 0.8); }
.mockup-dot.yellow { background-color: rgba(234, 179, 8, 0.8); }
.mockup-dot.green { background-color: rgba(34, 197, 94, 0.8); }
.mockup-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; font-family: monospace; font-size: 0.875rem; }
.mockup-line { height: 1rem; border-radius: 0.25rem; background-color: #27272a; }
.w-75 { width: 75%; } .w-50 { width: 50%; } .w-83 { width: 83.333333%; } .w-33 { width: 33.333333%; } .w-66 { width: 66.666667%; }
.bg-emerald-light { background-color: rgba(6, 78, 59, 0.4); }
.bg-blue-light { background-color: rgba(30, 58, 138, 0.4); }
.mockup-hover-glow { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.1), transparent); opacity: 0; transition: opacity 1s; }
.mockup-container:hover .mockup-hover-glow { opacity: 0.15; }

/* Sections */
.section-container { padding: 4.5rem 1.5rem; position: relative; overflow: hidden; }
.bg-alt { background-color: var(--surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.section-inner { position: relative; z-index: 10; max-width: 80rem; margin: 0 auto; }
.section-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; border-bottom: 1px solid var(--border-color); padding-bottom: 2rem; }
@media (min-width: 768px) { .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-kicker { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.section-title { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.025em; margin: 0; }
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }
.section-desc { color: var(--text-secondary); margin-top: 1rem; max-width: 42rem; font-weight: 300; }
.slider-nav-container { display: flex; gap: 0.5rem; }
.slider-btn { width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 1px solid var(--border-color); background-color: rgba(201, 168, 76, 0.05); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.3s; cursor: pointer; backdrop-filter: blur(12px); }
.slider-btn:hover { color: var(--primary); background-color: rgba(201, 168, 76, 0.10); border-color: var(--border-strong); }

/* Catalogs */
.catalog-slide { height: auto; }
.catalog-card { display: flex; flex-direction: column; height: 100%; border-radius: 16px; overflow: hidden; }
.card-image-container { height: 10rem; overflow: hidden; position: relative; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; background-color: var(--bg-mid); }
.card-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; opacity: 0.9; }
.premium-card:hover .card-image-container img { transform: scale(1.05); }
.card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.premium-card:hover .card-overlay { opacity: 1; }
.card-badge { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #08080E; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; letter-spacing: 0.025em; box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35); }
.card-content { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.125rem; font-weight: bold; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.25; margin-top: 0; }
.card-description { color: var(--text-secondary); font-size: 0.75rem; margin-bottom: 1.5rem; flex: 1; font-weight: 300; line-height: 1.625; }
.card-btn { width: 100%; padding: 0.625rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; text-decoration: none; box-sizing: border-box; }

/* Contact CTA Section */
.cta-section { padding: 4rem 1.5rem; border-top: 1px solid var(--border-color); background-color: var(--surface); }
.cta-container { max-width: 64rem; margin: 0 auto; }
.cta-card { padding: 2rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; border-radius: 16px; overflow: hidden; }
@media (min-width: 768px) { .cta-card { padding: 3.5rem; flex-direction: row; } }
@media (min-width: 1024px) { .cta-card { padding: 4rem; } }
.cta-text-wrapper { flex: 1; text-align: center; }
@media (min-width: 768px) { .cta-text-wrapper { text-align: left; } }
.cta-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.025em; margin-top: 0;}
@media (min-width: 768px) { .cta-title { font-size: 2.25rem; } }
.cta-desc { color: var(--text-secondary); font-size: 1.125rem; margin-bottom: 2rem; font-weight: 300; line-height: 1.625; }
.cta-btn-wrapper-desktop { display: none; }
@media (min-width: 768px) { .cta-btn-wrapper-desktop { display: block; } }
.cta-btn { padding: 1rem 2rem; display: inline-flex; align-items: center; gap: 0.75rem; }
.contact-form-container { flex: 1; width: 100%; background-color: var(--bg-color); border-radius: 1rem; padding: 1.5rem 1rem; border: 1px solid var(--border-color); position: relative; z-index: 10; box-sizing: border-box; }
@media (min-width: 768px) { .contact-form-container { padding: 2rem; } }

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0.75rem !important;
  }
  .cta-card {
    padding: 2rem 1rem !important;
  }
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border-color); padding: 0.75rem 0; color: var(--text-primary); transition: all 0.3s; font-size: 0.875rem; outline: none; box-sizing: border-box; font-family: inherit; }
.form-input:focus { border-color: var(--text-primary); }
.form-input::placeholder { color: var(--text-secondary); }
.form-select { color: var(--text-secondary); appearance: none; cursor: pointer; }
.form-select option { background-color: var(--bg-color); color: var(--text-primary); }
.form-textarea { resize: none; font-family: inherit; }
.submit-btn { width: 100%; padding: 1rem; margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9375rem; cursor: pointer; border: none; font-family: inherit; }
.cta-btn-wrapper-mobile { display: block; margin-top: 1rem; width: 100%; }
@media (min-width: 768px) { .cta-btn-wrapper-mobile { display: none; } }
.w-full { width: 100%; box-sizing: border-box; }
.inline-btn { text-decoration: none; justify-content: center; }

/* Footer */
.main-footer { border-top: 1px solid var(--border-color); padding: 2rem 0; text-align: center; color: var(--text-secondary); font-size: 0.875rem; background-color: var(--bg-color); }
.main-footer p { margin: 0; }

.footer-social-icon { color: var(--text-secondary); font-size: 1.5rem; transition: color 0.3s; }
.footer-social-icon:hover.fa-whatsapp, .footer-social-icon:hover .fa-whatsapp { color: #25D366; }
.footer-social-icon:hover.fa-instagram, .footer-social-icon:hover .fa-instagram { color: #E1306C; }
.footer-social-icon:hover.fa-linkedin-in, .footer-social-icon:hover .fa-linkedin-in { color: #0077b5; }
.footer-social-icon:hover.fa-envelope, .footer-social-icon:hover .fa-envelope { color: var(--primary); }

/* Background Blobs */
.bg-blob { position: absolute; width: 500px; height: 500px; border-radius: 9999px; filter: blur(120px); pointer-events: none; }
.blob-blue { background-color: rgba(139, 111, 232, 0.06); }
.blob-emerald { background-color: rgba(201, 168, 76, 0.06); }
.top-left { top: 5rem; left: 0; }
.bottom-right { bottom: 0; right: 0; }
.center-left { top: 50%; left: 25%; transform: translateY(-50%); }
.top-right { top: 2.5rem; right: 2.5rem; }

/* Code Mockup Animations & Syntax Highlighting */
.code-mockup { opacity: 1;
  opacity: 0.9;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #abb2bf;
}

.typewriter-line {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing 0.8s steps(40, end) forwards;
  margin-bottom: 0.25rem;
}

.indent { padding-left: 1.5rem; }
.indent-2 { padding-left: 3rem; }

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Syntax Colors (One Dark Theme) */
.code-keyword { color: #c678dd; }
.code-function { color: #61afef; }
.code-type { color: #e5c07b; }
.code-method { color: #61afef; }
.code-comment { color: #5c6370; font-style: italic; }
.code-number { color: #d19a66; }
.code-property { color: #e06c75; }
.code-string { color: #98c379; }

/* Hero Grid Layout (2 Columns) */
.hero-grid-layout {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-text-col {
    align-items: center;
    text-align: center;
  }
}

.hero-visual-col {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-bg-video {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(201, 168, 76, 0.25);
  border: 1px solid var(--border-color);
  background-color: #000;
}

.overlay-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  z-index: 20;
  animation: floatMockup 6s ease-in-out infinite;
  box-shadow: 0 25px 50px -12px rgba(201, 168, 76, 0.20);
}

@keyframes floatMockup {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .overlay-mockup {
    margin-top: 2rem;
  }
}

/* Fullscreen Hero Video Background */
.hero-video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: saturate(1.2) contrast(1.1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,1) 0%, rgba(5,5,5,0.75) 45%, rgba(5,5,5,0.4) 100%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-video-overlay {
    background: linear-gradient(to bottom, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.85) 50%, rgba(5,5,5,0.6) 100%);
  }
}

/* Premium Text Link replacing bulky buttons */
.premium-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.premium-text-link i {
  transition: transform 0.3s ease;
}

.premium-card:hover .premium-text-link {
  color: var(--primary-light);
}

.premium-card:hover .premium-text-link i {
  transform: translateX(5px);
}

/* Specific text link for the Hero Section */
.hero-text-link {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 0;
}

.hero-text-link:hover {
  color: var(--primary);
}

.hero-text-link:hover i {
  transform: translateY(5px) translateX(0) !important;
}

/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #08080E;
  border: none;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px -5px rgba(201, 168, 76, 0.45);
}

.back-to-top.show-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-violet));
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(139, 111, 232, 0.55);
}

/* Testimonials / Prova Social */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  margin-top: 0.25rem;
}

.testimonial-card-small {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-card-small .quote-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.testimonial-card-small .testimonial-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
  flex-grow: 1;
}
.testimonial-card-small .testimonial-author {
  margin-top: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}
.testimonial-card-small .author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-card-small .author-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Override Native Swiper Colors */
.swiper-button-prev, .swiper-button-next {
  color: var(--primary) !important;
  transform: scale(0.7);
}
.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.swiper-pagination-bullet {
  background-color: rgba(201, 168, 76, 0.25) !important;
}
.swiper-nav-container {
  display: block;
}

/* --- COMPREHENSIVE MOBILE UI/UX FIXES --- */
@media (max-width: 767px) {
  /* Hero Typography Alignment */
  .hero-title {
    font-size: 2rem !important; 
    line-height: 1.15 !important;
    word-break: break-word;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  /* Status Badge Wrapping */
  .status-badge {
    font-size: 0.7rem !important;
    padding: 0.5rem 0.875rem !important;
    white-space: normal !important;
    text-align: left;
    display: inline-flex;
    align-items: flex-start;
    max-width: 100%;
  }
  
  .status-dot {
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  /* Hero Actions Harmony */
  .hero-actions {
    display: flex;
    flex-direction: column-reverse !important;
    gap: 1.5rem !important;
    width: 100%;
    align-items: center !important;
  }

  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .hero-text-link {
    margin-top: 0 !important;
  }

  /* Catalog Sections Fixes */
  .section-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  .section-desc {
    font-size: 0.95rem !important;
  }
  
  /* Fix Mockup Container Width */
  .mockup-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  /* Container Padding Guarantee */
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    overflow-x: hidden;
  }
}

/* --- COMPREHENSIVE MOBILE OVERHAUL PHASE 2 --- */
.desktop-only { display: none !important; }

/* Hamburger Button */
.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none !important; }
  .desktop-only { display: flex !important; }
}

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: rgba(8, 8, 14, 0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-content {
  width: 100%;
  padding: 2rem;
  position: relative;
  text-align: center;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--primary); }

@media (max-width: 767px) {
  /* Contact Form Adjustments */
  .contact-form-container {
    padding: 1.25rem !important;
  }
  .form-input, .form-select, .form-textarea {
    font-size: 16px !important;
    padding: 0.85rem 0 !important;
  }
  
  /* Global Buttons Width Fix */
  .cta-btn, .btn-primary, .btn-outline {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box;
  }

  /* Global Section Spacing */
  .section-container {
    padding: 3.5rem 1.25rem !important;
  }
  
  /* Make sure footer doesn't break */
  .main-footer {
    padding: 2rem 1.25rem !important;
  }
}

/* CSS Grid Blowout Fix */
.hero-grid-layout > div {
  min-width: 0;
  max-width: 100vw;
}

/* Force Typewriter to wrap on mobile to prevent any inner expansion */
@media (max-width: 767px) {
  .typewriter-line {
    white-space: pre-wrap !important;
    word-break: break-all;
    font-size: 0.7rem !important;
  }
}

/* Form Validation UX */
.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* Portfólio Dinâmico com Abas de Filtro */
.portfolio-tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .portfolio-tabs-container {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 0.5rem !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
}

.portfolio-tab {
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: rgba(201, 168, 76, 0.05);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  outline: none;
}

@media (max-width: 768px) {
  .portfolio-tab {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }
}
.portfolio-tab:hover {
  background-color: rgba(201, 168, 76, 0.12);
  color: var(--primary);
  border-color: var(--border-strong);
}
.portfolio-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #08080E;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.30);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  transition: all 0.5s ease;
}
@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.portfolio-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center;
}
.portfolio-item.hidden {
  display: none !important;
}

.section-divider-banner {
  background: linear-gradient(135deg, #0D0D18 0%, #12102A 50%, #0D0D18 100%);
  color: var(--primary);
  padding: 3rem 1.5rem;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1.6rem;
  box-shadow: inset 0 4px 30px rgba(201, 168, 76, 0.05), 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .section-divider-banner {
    padding: 2rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.25em;
  }
}

/* --- Clean Layout: Classes para remoção de CSS inline --- */

/* Navbar e Header */
.header-container-left {
  justify-content: flex-start !important;
}

.logo-container {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

.logo-accent {
  font-weight: 800 !important;
}

.logo-subtitle {
  font-size: 0.5em !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin-top: 2px !important;
}

/* Cinematic Agency Hero */
.hero-section-clean {
  position: relative !important;
  overflow: hidden !important;
}

.hero-grid-overlay {
  z-index: 2 !important;
  opacity: 0.15 !important;
}

.blob-subtle-blue {
  opacity: 0.05 !important;
}

.blob-subtle-emerald {
  opacity: 0.05 !important;
}

.hero-content-inner {
  position: relative !important;
  z-index: 10 !important;
}

.hero-title-centered {
  text-align: center !important;
}

.hero-subtitle-lead {
  text-align: center !important;
  margin-bottom: 0.5rem !important;
  font-weight: 500 !important;
  color: rgba(240, 237, 232, 0.92) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5) !important;
}

.hero-subtitle-desc {
  text-align: center !important;
  margin-top: 0 !important;
  font-size: 0.95rem !important;
  max-width: 44rem !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
  margin-bottom: 1.25rem !important;
  color: rgba(220, 216, 210, 0.85) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4) !important;
}

.hero-actions-container {
  justify-content: center !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-btn-cta {
  font-size: 1.0625rem !important;
  padding: 0.75rem 2.25rem !important;
}

.hero-cta-sub {
  color: rgba(200, 196, 190, 0.80) !important;
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4) !important;
}

/* Seção de Desafio */
.challenge-section-container {
  padding-top: 5rem !important;
  padding-bottom: 3rem !important;
}

.challenge-wrapper {
  max-width: 68rem !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.challenge-kicker {
  color: var(--accent-blue) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.75rem !important;
}

.challenge-title {
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  margin-bottom: 3rem !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Grid de Dores do Desafio */
.challenge-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  margin-bottom: 3.5rem !important;
  text-align: left !important;
}

@media (min-width: 768px) {
  .challenge-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Card Individual de Dor */
.challenge-card {
  background: var(--surface) !important;
  border: 1px solid var(--border-color) !important;
  border-top: 4px solid var(--primary) !important;
  border-radius: 12px !important;
  padding: 2.25rem 1.75rem !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
  .challenge-card {
    text-align: center !important;
  }
}

.challenge-card:hover {
  transform: translateY(-5px) !important;
  border-top-color: var(--primary-light) !important;
  box-shadow: 0 15px 35px -8px rgba(201, 168, 76, 0.18) !important;
}

.challenge-card-icon {
  font-size: 1.75rem !important;
  color: var(--primary) !important;
  margin-bottom: 1.25rem !important;
  display: inline-block !important;
  transition: color 0.4s ease !important;
}

.challenge-card:hover .challenge-card-icon {
  color: var(--primary-light) !important;
}

.challenge-card-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0 !important;
}

.challenge-card-text {
  font-size: 0.925rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
  font-weight: 300 !important;
  margin: 0 !important;
}

/* Banner de Solução */
.challenge-solution-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(139, 111, 232, 0.10) 100%) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 16px !important;
  padding: 2.5rem 2rem !important;
  text-align: center !important;
  position: relative !important;
  z-index: 10 !important;
  box-shadow: 0 15px 40px -10px rgba(201, 168, 76, 0.20) !important;
  max-width: 52rem !important;
  margin: 0 auto !important;
}

.challenge-solution-icon {
  font-size: 2rem !important;
  color: var(--primary) !important;
  margin-bottom: 1rem !important;
}

.challenge-solution-text {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: var(--text-primary) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-style: italic !important;
}

.challenge-solution-text strong {
  font-weight: 800 !important;
  color: var(--primary) !important;
}

/* Seção de Portfólio */
.portfolio-header-container {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-bottom: 2rem !important;
}

.portfolio-section-desc {
  text-align: center !important;
  max-width: 48rem !important;
}

/* Fade Classes para Cards do Portfólio */
.portfolio-item {
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  opacity: 1;
  transform: scale(1);
}

.portfolio-item.fade-out {
  opacity: 0 !important;
  transform: scale(0.95) !important;
}

/* Testimonial Swiper */
.testimonial-swiper {
  margin-top: 2rem !important;
  padding: 1rem 0 3rem 0 !important;
}

/* --- Seção de Método (Deep Dark Section) --- */
.method-section {
  background: linear-gradient(160deg, #05050C 0%, #0A0A18 50%, #050510 100%) !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid var(--border-color) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.method-kicker {
  color: var(--primary) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.75rem !important;
}

.method-title {
  color: var(--text-primary) !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1rem !important;
}

.method-desc {
  color: var(--text-secondary) !important;
  font-size: 1.125rem !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  max-width: 32rem !important;
}

.method-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  margin-top: 3rem !important;
}

.method-card {
  background: linear-gradient(145deg, #0F0F1E, #13132A) !important;
  border: 1px solid rgba(201, 168, 76, 0.12) !important;
  border-radius: 16px !important;
  padding: 2.5rem 2rem !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3) !important;
}

.method-card::after {
  background: transparent !important;
}

.method-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(201, 168, 76, 0.30) !important;
  box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.08) !important;
}

.method-step-num {
  font-size: 3.5rem !important;
  color: rgba(201, 168, 76, 0.07) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  position: absolute !important;
  right: 2rem !important;
  top: 2rem !important;
  user-select: none !important;
  transition: color 0.3s ease !important;
}

.method-card:hover .method-step-num {
  color: rgba(201, 168, 76, 0.15) !important;
}

.method-step-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  position: relative !important;
}

.method-step-desc {
  color: var(--text-secondary) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  font-weight: 300 !important;
  margin: 0 !important;
}

/* Redes Sociais no Header/Navbar */
.header-socials {
  display: flex !important;
  gap: 1.25rem !important;
  align-items: center !important;
  margin-left: auto !important;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .logo-container {
    font-size: 1rem !important;
  }
  .logo-subtitle {
    font-size: 0.4em !important;
  }
  .header-socials {
    margin-left: 0 !important;
    justify-content: flex-end !important;
    gap: 0.75rem !important;
  }
}

.header-social-icon {
  font-size: 1.15rem !important;
  color: var(--text-secondary) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.header-social-icon:hover {
  color: var(--primary) !important;
  transform: translateY(-2px) !important;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4)) !important;
}

/* Centralização do Cabeçalho de Seções */
.section-header-center {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 2rem !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) {
  .section-header-center {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Utilitário para centralizar textos de grid no mobile */
@media (max-width: 768px) {
  .about-grid-item {
    text-align: center !important;
  }
}
