/* ===================================
   LANDING PAGE - Infoproduct Style
   Animated Blob Background
   =================================== */

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

/* Variables - Dark Theme (Default) */
:root {
  --color-bg: #0a0a0f;
  --color-bg-secondary: #111118;
  --color-bg-card: rgba(255, 255, 255, 0.08);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-text-inverse: #000000;
  --color-primary: #FF8700;
  --color-primary-light: #FF9E33;
  --color-accent: #7c3aed;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-shadow: rgba(0, 0, 0, 0.3);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Blob colors */
  --blob-1: linear-gradient(135deg, #FF8700 0%, #ff6b35 100%);
  --blob-2: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --blob-3: linear-gradient(135deg, #FF9E33 0%, #f97316 100%);
  --blob-4: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  
  /* Header */
  --header-bg: rgba(10, 10, 15, 0.8);
  --header-bg-scrolled: rgba(10, 10, 15, 0.95);
}

/* Light Theme */
[data-theme="light"] {
  --color-bg: #f8f9fa;
  --color-bg-secondary: #ffffff;
  --color-bg-card: rgba(0, 0, 0, 0.03);
  --color-text: #1a1a2e;
  --color-text-muted: rgba(26, 26, 46, 0.7);
  --color-text-inverse: #ffffff;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-shadow: rgba(0, 0, 0, 0.1);
  
  /* Blob colors - muted for light mode */
  --blob-1: linear-gradient(135deg, rgba(255, 135, 0, 0.4) 0%, rgba(255, 107, 53, 0.3) 100%);
  --blob-2: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
  --blob-3: linear-gradient(135deg, rgba(255, 158, 51, 0.3) 0%, rgba(249, 115, 22, 0.2) 100%);
  --blob-4: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(190, 24, 93, 0.2) 100%);
  
  /* Header */
  --header-bg: rgba(248, 249, 250, 0.85);
  --header-bg-scrolled: rgba(255, 255, 255, 0.98);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   ANIMATED BACKGROUND - Blobs
   =================================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: var(--color-bg);
  transition: background 0.3s ease;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

/* Unique animations for each blob to create organic randomness 
   AMPLIFIED MOVEMENT for "ALIVE" feel */
@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(300px, 150px) scale(1.4) rotate(90deg); }
  50% { transform: translate(100px, 400px) scale(0.8) rotate(180deg); }
  75% { transform: translate(-200px, 100px) scale(1.2) rotate(270deg); }
}

@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(-300px, 200px) scale(1.3) rotate(-90deg); }
  66% { transform: translate(150px, -300px) scale(0.7) rotate(120deg); }
}

@keyframes blobMove3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(250px, -150px) scale(0.6) rotate(120deg); }
  66% { transform: translate(-300px, -200px) scale(1.4) rotate(240deg); }
}

@keyframes blobMove4 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(-200px, -300px) scale(1.3) rotate(-90deg); }
  50% { transform: translate(300px, -100px) scale(0.8) rotate(45deg); }
  75% { transform: translate(-100px, 300px) scale(1.1) rotate(180deg); }
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--blob-1);
  top: -10%;
  left: -10%;
  animation: blobMove1 25s ease-in-out infinite alternate;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--blob-2);
  top: 20%;
  right: -15%;
  animation: blobMove2 20s ease-in-out infinite alternate;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--blob-3);
  bottom: 10%;
  left: 20%;
  animation: blobMove3 22s ease-in-out infinite alternate;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: var(--blob-4);
  bottom: 30%;
  right: 10%;
  animation: blobMove4 28s ease-in-out infinite alternate;
}

/* Blob pulse animation for extra life */
@keyframes blobPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

/* Interactive hover effect on body/background */
.animated-bg:hover .blob {
  filter: blur(80px); /* Sharpen slightly on interaction */
}

/* Mouse-following glow effect REMOVED */

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* ===================================
   CONTAINER
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 135, 0, 0.15);
  border: 1px solid rgba(255, 135, 0, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Headline */
.headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheadline */
.subheadline {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.stat {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.highlight-text {
  color: #f87171;
  font-weight: 600;
}

/* CTA Group */
.cta-group {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(255, 135, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 135, 0, 0.6);
}

.btn-large {
  padding: 22px 48px;
  font-size: 1.2rem;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: -12px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  border: 2px solid var(--color-bg);
}

.proof-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.proof-text strong {
  color: var(--color-text);
}

/* ===================================
   MACBOOK VISUAL - Image Mockup
   =================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}

.macbook-wrapper {
  position: relative;
  width: 300%;
  max-width: none;
  margin-left: 0;
  transition: transform 0.3s ease;
}

.macbook-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 135, 0, 0.3) 0%, rgba(124, 58, 237, 0.15) 40%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Hide glow on mobile for better performance */
@media (max-width: 1024px) {
  .macbook-glow {
    display: none;
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.macbook-frame {
  position: relative;
}

.macbook-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

@keyframes floatMacbook {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: floatStat 4s ease-in-out infinite;
  z-index: 10;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.stat-2 {
  top: 10%;
  left: 20%;
  animation-delay: -1.5s;
}

.stat-3 {
  bottom: 15%;
  right: 5%;
  animation-delay: -3s;
}

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

/* ===================================
   LOGO CAROUSEL - Infinite Scroll
   =================================== */
.logo-carousel-section {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  z-index: 10;
}

.carousel-stripe {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: scrollLogos 25s linear infinite;
  width: fit-content;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 120px;
  overflow: hidden;
}

.logo-item img {
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Individual logo sizes - adjusted for visual balance */
/* MIFIT é a referência - todas devem parecer visualmente iguais */

.logo-mifit { 
  width: 200px; 
}
.logo-mifit img { 
  height: 50px;
  object-fit: contain;
}

/* Alive - logo horizontal com ícone, precisa de mais largura */
.logo-alive { 
  width: 360px; 
}
.logo-alive img { 
  height: 90px; 
}

/* AutoNexus - texto condensado */
.logo-autonexus { 
  width: 300px; 
}
.logo-autonexus img { 
  height: 300px; 
}

/* Sena - logo com ícone de casa */
.logo-sena { 
  width: 350px; 
}
.logo-sena img { 
  height: 350px; 
}

/* Criativas - logo cursiva */
.logo-criativas { 
  width: 300px; 
}
.logo-criativas img { 
  height: 300px; 
}

/* VGamer - logo gaming com hexagonos coloridos */
.logo-vgamer { 
  width: 350px; 
}
.logo-vgamer img { 
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.3);
  transition: filter 0.3s ease;
}
.logo-vgamer:hover img {
  filter: grayscale(0%) brightness(1);
}

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

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 100px 0;
  position: relative;
  /* Scroll blur effect */
  transition: filter 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
  will-change: filter, opacity, transform;
}

/* Blur states for scroll effect - DESKTOP ONLY */
@media (min-width: 769px) {
  .section.blur-enter {
    filter: blur(8px);
    opacity: 0.5;
    transform: translateY(30px);
  }

  .section.blur-exit {
    filter: blur(8px);
    opacity: 0.5;
    transform: translateY(-30px);
  }

  .section.in-view {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: No blur effect for better performance */
@media (max-width: 768px) {
  .section.blur-enter,
  .section.blur-exit,
  .section.in-view {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 135, 0, 0.1);
  border: 1px solid rgba(255, 135, 0, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   PROBLEMS SECTION - Pills Chain Design
   Two-Color Split Pills
   =================================== */
.problems-pills {
  background: #000;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.problems-pills .section-header {
  text-align: left;
  margin-bottom: 80px;
}

.section-title-large {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
}

/* Pills Chain - Main Container */
.pills-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
}

/* Pill Wrapper */
.pill-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Pill Card - Two Color Split (50/50) */
.pill-card {
  width: 200px;
  height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Section (Black with notch and text) - exactly 50% */
.pill-top-section {
  height: 50%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 15px 10px;
  position: relative;
  border-radius: 100px 100px 0 0;
}

/* Bottom Section (Black with notch and text) - exactly 50% */
.pill-bottom-section {
  height: 50%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 15px 15px;
  position: relative;
  border-radius: 0 0 100px 100px;
}

/* Main Section (White/Orange with text) - exactly 50% */
.pill-main-section {
  height: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px;
}

/* Notch inside the black section */
.pill-notch {
  width: 50px;
  height: 25px;
  background: #000;
  border-radius: 50px;
  position: relative;
}

.pill-top-section .pill-notch {
  background: #000;
  margin-bottom: -1px;
}

.pill-bottom-section .pill-notch {
  background: #000;
  margin-top: -1px;
}

/* Circle Divider at the center */
.pill-divider {
  width: 50px;
  height: 25px;
  background: #000;
  border-radius: 0 0 50px 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.pill-card.notch-bottom .pill-divider {
  border-radius: 50px 50px 0 0;
}

/* Notch-top: black on top, white on bottom */
.pill-card.notch-top .pill-main-section {
  border-radius: 0 0 100px 100px;
}

/* Notch-bottom: white on top, black on bottom */
.pill-card.notch-bottom .pill-main-section {
  border-radius: 100px 100px 0 0;
}

/* Featured Pill (Orange) */
.pill-card.featured .pill-main-section {
  background: var(--color-primary);
}

.pill-card.featured .pill-title,
.pill-card.featured .pill-subtitle {
  color: #fff;
}

/* Text Styles */
.pill-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: lowercase;
  font-style: italic;
  line-height: 1.1;
}

.pill-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a1a2e;
  text-transform: lowercase;
  font-style: italic;
}

/* Description texts outside pills */
.pill-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  font-style: italic;
  text-align: center;
  max-width: 150px;
  margin-top: 16px;
}

/* Description texts INSIDE the black section */
.pill-desc-inside {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  font-style: italic;
  text-align: center;
  max-width: 140px;
  margin: 5px 0;
}
/* White connector bar between pills */
.pill-wrapper::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 50px;
  background: #fff;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.pill-wrapper:last-child::after {
  display: none;
}

/* Featured pill connector - orange */
.pill-wrapper:has(.featured)::after {
  background: var(--color-primary);
}

/* Black dots on connector */
.pill-wrapper::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.pill-wrapper:last-child::before {
  display: none;
}

/* Hover effect */
.pill-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 135, 0, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
  .pills-chain {
    flex-wrap: wrap;
    gap: 60px 40px;
    padding: 40px 0;
  }
  
  .pill-wrapper::after,
  .pill-wrapper::before {
    display: none;
  }
  
  .pill-card {
    width: 180px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .pills-chain {
    flex-direction: column;
    gap: 50px;
  }
  
  .pill-card {
    width: 200px;
    height: 300px;
  }
  
  .pill-title {
    font-size: 1.6rem;
  }
  
  .pill-subtitle {
    font-size: 1.1rem;
  }
}

/* ===================================
   SERVICES SECTION - New Design
   =================================== */
.services {
  background: #0a0a0f;
  padding: 120px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: lowercase;
  letter-spacing: 2px;
}

.services-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.services-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 24px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 135, 0, 0.15);
}

.service-card.featured {
  background: var(--color-primary);
}

.service-card.featured .service-metric,
.service-card.featured .service-info h3,
.service-card.featured .service-info span,
.service-card.featured .service-icon-wrapper {
  color: #000;
}

.service-card.featured .service-icon-wrapper {
  background: rgba(0, 0, 0, 0.1);
}

.service-metric {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.service-visual {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 135, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.service-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.service-info {
  text-align: center;
}

.service-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.service-info span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

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

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  border-color: rgba(255, 135, 0, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 135, 0, 0.1);
}

/* Clickable Portfolio Cards */
.portfolio-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.portfolio-card-link:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(255, 135, 0, 0.2);
}

.portfolio-image {
  height: 220px;
  overflow: hidden;
  background: #111;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 135, 0, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Portfolio CTA Button */
.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-projects {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b35 100%);
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 135, 0, 0.3);
}

.btn-projects:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 135, 0, 0.4);
}

.btn-projects svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-projects:hover svg {
  transform: translateX(5px);
}

.portfolio-cta-hint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 135, 0, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(255, 135, 0, 0.2);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 135, 0, 0.1) 0%, transparent 50%);
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10%, 10%); }
}

.urgency-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box > p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.cta-feature svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
}

.cta-box .btn-primary {
  position: relative;
  z-index: 1;
}

.cta-disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

.cta-disclaimer strong {
  color: #f87171;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  width: 60px;
  margin-bottom: 16px;
}

.footer p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  animation: whatsappPulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { 
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
  }
  50% { 
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1); 
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
    position: relative;
  }

  .social-proof {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  /* Floating stats visible on mobile */
  .floating-stat {
    padding: 10px 14px;
    border-radius: 12px;
  }
  
  .stat-1 {
    top: -5%;
    right: 5%;
  }
  
  .stat-2 {
    top: -5%;
    left: 5%;
  }
  
  .stat-3 {
    bottom: -10%;
    right: 15%;
  }

  .stat-icon {
    font-size: 1.2rem;
  }

  .stat-value {
    font-size: 0.9rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .problems-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}

/* ===================================
   ABOUT ME IMMERSIVE SECTION
   =================================== */
.about-immersive {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.about-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) blur(2px); /* Blurred and darkened for depth */
  transform: scale(1.05); /* Slight zoom to prevent blur edges */
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.about-container-immersive {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content-immersive {
  color: #fff;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-role {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.about-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* Person Visual Integration */
.about-visual-immersive {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.person-wrapper {
  position: relative;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.person-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.person-img {
  width: 100%;
  height: auto;
  display: block;
  /* Blend effect to match room lighting */
  filter: contrast(1.1) brightness(0.9) sepia(0.2) hue-rotate(-10deg); 
}

/* Glow specifically matching the orange neon */
.person-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 135, 0, 0.2), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-container-immersive {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
  }
  
  .about-stats-row {
    justify-content: center;
  }
  
  .person-wrapper {
    margin: 40px auto 0;
    max-width: 400px;
    transform: none;
  }
  
  .person-wrapper:hover {
    transform: none;
  }
}

/* ===================================
   ANIMATIONS & EFFECTS
   =================================== */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible .reveal-left {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
}

.section.visible .reveal-scale {
  opacity: 1;
  transform: scale(1);
}

/* Fix for background-clip warning */
.about-title {
  background-clip: text; /* standard property */
}

/* ===================================
   LANDING PAGE HEADER
   =================================== */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.lp-header.scrolled {
  background: var(--header-bg-scrolled);
  padding: 12px 0;
  box-shadow: 0 4px 30px var(--color-shadow);
}

.lp-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.lp-logo {
  display: flex;
  align-items: center;
}

.lp-logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
.lp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-nav-link {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lp-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.lp-nav-cta {
  margin-left: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 135, 0, 0.3);
}

.lp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 135, 0, 0.4);
}

/* Mobile Menu Toggle */
.lp-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  transition: all 0.3s ease;
}

.lp-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.lp-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.lp-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.lp-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.lp-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lp-mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lp-mobile-nav .lp-nav-link {
  padding: 16px;
  font-size: 1rem;
  text-align: center;
  border-radius: 12px;
}

.lp-mobile-nav .lp-nav-cta {
  margin: 16px 0 0 0;
  text-align: center;
  padding: 16px 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .lp-nav {
    display: none;
  }
  
  .lp-menu-toggle {
    display: flex;
  }
  
  .lp-mobile-nav {
    display: flex;
  }
}

/* Adjust hero padding for fixed header */
.hero {
  padding-top: 100px !important;
}

/* ===================================
   THEME TOGGLE BUTTON
   =================================== */
.lp-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 16px;
}

.lp-theme-toggle:hover {
  background: var(--color-primary);
  transform: scale(1.05);
}

.lp-theme-toggle:hover svg {
  fill: #000;
}

.lp-theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
  transition: fill 0.3s ease;
}

/* Sun icon - visible in dark mode */
.lp-theme-toggle .icon-sun {
  display: block;
}

.lp-theme-toggle .icon-moon {
  display: none;
}

/* Moon icon - visible in light mode */
[data-theme="light"] .lp-theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .lp-theme-toggle .icon-moon {
  display: block;
}

/* ===================================
   LIGHT THEME SPECIFIC STYLES
   =================================== */
[data-theme="light"] body {
  background: var(--color-bg);
}

[data-theme="light"] .lp-nav-link {
  color: var(--color-text-muted);
}

[data-theme="light"] .lp-nav-link:hover {
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .lp-menu-toggle span {
  background: var(--color-text);
}

[data-theme="light"] .lp-mobile-nav {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
}

[data-theme="light"] .headline,
[data-theme="light"] .section-title,
[data-theme="light"] .section-title-large {
  color: var(--color-text);
}

[data-theme="light"] .subheadline,
[data-theme="light"] .section-subtitle {
  color: var(--color-text-muted);
}

[data-theme="light"] .floating-stat {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-label {
  color: var(--color-text-muted);
}

[data-theme="light"] .proof-text {
  color: var(--color-text-muted);
}

[data-theme="light"] .proof-text strong {
  color: var(--color-text);
}

[data-theme="light"] .carousel-stripe {
  background: var(--color-bg-secondary);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* Seção "O Problema" mantém fundo escuro para impacto visual - nenhuma alteração no light mode */
[data-theme="light"] .problems-pills .section-title-large {
  color: #fff;
}

[data-theme="light"] .portfolio-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
}

[data-theme="light"] .portfolio-info h3 {
  color: var(--color-text);
}

[data-theme="light"] .portfolio-info p {
  color: var(--color-text-muted);
}

[data-theme="light"] .about-overlay {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
}

/* Fix about-title - remove gradient and make text readable */
[data-theme="light"] .about-title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--color-text);
  background-clip: unset;
  color: var(--color-text);
}

[data-theme="light"] .about-role {
  color: var(--color-primary);
}

[data-theme="light"] .about-text p {
  color: var(--color-text-muted);
}

/* Fix stat-box - remove white rectangle background */
[data-theme="light"] .stat-box {
  background: transparent;
  border: none;
}

[data-theme="light"] .stat-num {
  color: var(--color-primary);
}

[data-theme="light"] .stat-lbl {
  color: var(--color-text-muted);
}

[data-theme="light"] .cta-box {
  background: var(--color-bg-secondary);
  border-color: var(--color-border);
}

[data-theme="light"] .cta-box h2 {
  color: var(--color-text);
}

[data-theme="light"] .cta-box p {
  color: var(--color-text-muted);
}

[data-theme="light"] .cta-feature span {
  color: var(--color-text-muted);
}

[data-theme="light"] .footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

[data-theme="light"] .footer p {
  color: var(--color-text-muted);
}


