/* 
* Eterna - Portfolio Redesign 2025
* Design System Moderno com Sofisticação Tecnológica
*/

/* === RESET E CONFIGURAÇÕES GLOBAIS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* === PALETA DE CORES EXPANDIDA === */
  --primary-teal: #008080;
  --primary-teal-light: #20b2aa;
  --primary-teal-dark: #005555;
  --secondary-dark: #1a1a1a;
  --secondary-gray: #2d2d2d;
  --accent-cream: #fafaf7;
  --accent-white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-light: #6b7280;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e0;
  
  /* === GRADIENTES === */
  --gradient-primary: linear-gradient(135deg, #008080 0%, #20b2aa 50%, #66d9e8 100%);
  --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* === TIPOGRAFIA === */
  --font-primary: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* === SOMBRAS === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
  
  /* === TRANSIÇÕES === */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--accent-cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === COMPONENTES GLOBAIS === */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 128, 128, 0.1);
  border: 1px solid rgba(0, 128, 128, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-teal);
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--accent-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-primary-alt {
  background: var(--accent-white);
  color: var(--primary-teal);
  border-color: var(--accent-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary-alt:hover {
  background: var(--primary-teal);
  color: var(--accent-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--accent-white);
  border-color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary-teal);
  border-color: var(--primary-teal);
}

.btn-outline:hover {
  background: var(--primary-teal);
  color: var(--accent-white);
}

.btn-portfolio {
  background: var(--primary-teal);
  color: var(--accent-white);
  border: 2px solid var(--primary-teal);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn-portfolio:hover {
  background: var(--accent-white);
  color: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all var(--transition-normal);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 40px;
  width: auto;
  transition: all var(--transition-normal);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav ul li a {
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: all var(--transition-normal);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  transition: width var(--transition-normal);
}

nav ul li a:hover::after {
  width: 100%;
}

.btn-contact {
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-contact:hover {
  background: var(--primary-teal);
  color: var(--accent-white);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 128, 128, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 128, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.05) 0%, rgba(32, 178, 170, 0.03) 50%, transparent 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 128, 128, 0.1);
  border: 1px solid rgba(0, 128, 128, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-teal);
  margin-bottom: 32px;
}

.hero-content h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-teal);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

/* === HERO VISUAL === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.card-dots span:nth-child(2) {
  background: #ffbd2e;
}

.card-dots span:nth-child(3) {
  background: #28cd41;
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.card-content {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.code-line {
  margin-bottom: 4px;
}

.code-line.indent {
  padding-left: 24px;
}

.code-keyword {
  color: #d73a49;
  font-weight: 600;
}

.code-function {
  color: #6f42c1;
  font-weight: 600;
}

.code-variable {
  color: #e36209;
}

.code-string {
  color: #032f62;
}

/* === SERVICES SECTION === */

/* === SERVICES SECTION === */
.services {
  padding: 120px 0;
  background: var(--accent-white);
}

.services-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 600px;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card.large {
  grid-row: 1 / 3;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 128, 128, 0.2);
}

.service-visual {
  position: relative;
  margin-bottom: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-teal);
}

.service-graph {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 40px;
}

.graph-bar {
  width: 8px;
  background: var(--gradient-primary);
  border-radius: 4px;
  height: var(--height);
  animation: growUp 1.5s ease-out;
}

@keyframes growUp {
  from { height: 0; }
  to { height: var(--height); }
}

.responsive-demo {
  display: flex;
  gap: 8px;
  align-items: end;
}

.device {
  background: var(--primary-teal);
  border-radius: 4px;
}

.device.desktop {
  width: 32px;
  height: 20px;
}

.device.tablet {
  width: 20px;
  height: 26px;
}

.device.mobile {
  width: 12px;
  height: 20px;
}

.seo-chart {
  position: relative;
  width: 60px;
  height: 40px;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-teal);
  border-radius: 2px;
  transform-origin: left;
  animation: drawLine 2s ease-out;
}

.chart-line::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--primary-teal);
  border-radius: 50%;
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.growth-visual {
  display: flex;
  gap: 8px;
  align-items: center;
}

.growth-circle {
  width: 12px;
  height: 12px;
  background: var(--primary-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.service-content h3 {
  margin-bottom: 12px;
}

.service-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.service-tech span {
  padding: 4px 12px;
  background: rgba(0, 128, 128, 0.1);
  color: var(--primary-teal);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* === PORTFOLIO SECTION === */
.portfolio {
  padding: 120px 0;
  background: var(--accent-cream);
}

/* === PROJETOS PRINCIPAIS === */
.portfolio-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.portfolio-item-main {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
}

.portfolio-item-main:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 128, 128, 0.2);
}

.portfolio-item-main .portfolio-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.portfolio-item-main .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.portfolio-item-main .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 5;
  box-sizing: border-box;
  overflow: hidden;
}

.portfolio-item-main:hover .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.portfolio-tech span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-white);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.portfolio-overlay h3 {
  color: var(--accent-white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  line-height: 1.4;
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-white);
}

.feature-item i {
  color: var(--primary-teal);
  font-size: 0.9rem;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-results {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.result {
  text-align: center;
}

.result-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-white);
  margin-bottom: 2px;
}

.result-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-overlay .btn-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-teal);
  color: var(--accent-white);
  border: 2px solid var(--primary-teal);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  z-index: 15;
  position: relative;
}

.portfolio-overlay .btn-portfolio:hover {
  background: var(--accent-white);
  color: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.portfolio-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}

/* === PROJETOS SECUNDÁRIOS === */
.portfolio-secondary {
  margin-bottom: 60px;
}

.portfolio-secondary h3 {
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: center;
  font-size: 1.5rem;
}

.portfolio-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item-small {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.portfolio-item-small:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 128, 128, 0.2);
}

.portfolio-item-small .portfolio-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.portfolio-item-small .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.portfolio-overlay-small {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(8px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all var(--transition-normal);
}

.portfolio-item-small:hover .portfolio-overlay-small {
  opacity: 1;
}

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

.portfolio-overlay-small h4 {
  color: var(--accent-white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.portfolio-overlay-small p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.btn-portfolio-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-teal);
  color: var(--accent-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-normal);
  align-self: flex-start;
}

.btn-portfolio-small:hover {
  background: #006666;
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media screen and (max-width: 1024px) {
  .portfolio-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .portfolio-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-features {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .portfolio {
    padding: 80px 0;
  }
  
  .portfolio-grid-small {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item-main .portfolio-image {
    height: 280px;
  }
  
  .portfolio-item-main .portfolio-overlay {
    padding: 20px;
  }
  
  .portfolio-overlay h3 {
    font-size: 1.3rem;
  }
  
  .portfolio-results {
    gap: 16px;
  }
}

/* === PORTFOLIO GRID ORIGINAL (mantido para compatibilidade) === */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
}

.portfolio-item.featured {
  grid-row: 1 / 3;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.portfolio-tech span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.portfolio-overlay h3 {
  color: var(--accent-white);
  margin-bottom: 8px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.portfolio-results {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.result {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-white);
}

.result-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-cta {
  text-align: center;
}

.portfolio-cta p {
  margin-bottom: 24px;
  font-size: 1.125rem;
}

/* === DEVELOPMENT PROCESS SECTION === */
.development-process {
  padding: 120px 0;
  background: var(--accent-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.process-step {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 128, 128, 0.2);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: -10px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-white);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.step-icon i {
  font-size: 1.5rem;
  color: var(--primary-teal);
  transition: all var(--transition-normal);
}

.process-step:hover .step-icon {
  background: var(--primary-teal);
  transform: scale(1.1);
}

.process-step:hover .step-icon i {
  color: var(--accent-white);
}

.process-step h3 {
  margin-bottom: 16px;
  color: var(--text-primary);
  font-size: 1.375rem;
}

.process-step p {
  margin-bottom: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-details span {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 16px;
}

.step-details span::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: bold;
}

.process-cta {
  text-align: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 50px 50px;
}

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

.process-cta h3 {
  color: var(--accent-white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.process-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-cta .btn {
  background: var(--accent-white);
  color: var(--primary-teal);
  border-color: var(--accent-white);
  font-weight: 600;
  padding: 16px 40px;
}

.process-cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* === RESPONSIVE === */
@media screen and (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .process-step {
    padding: 32px;
  }
  
  .process-cta {
    padding: 40px 24px;
  }
}

@media screen and (max-width: 768px) {
  .development-process {
    padding: 80px 0;
  }
  
  .process-step {
    padding: 24px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
  }
  
  .step-icon i {
    font-size: 1.25rem;
  }
  
  .process-step h3 {
    font-size: 1.25rem;
  }
  
  .process-cta h3 {
    font-size: 1.5rem;
  }
}

/* === TESTIMONIALS SECTION (mantido para compatibilidade) === */
.testimonials {
  padding: 120px 0;
  background: var(--accent-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 128, 128, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
}

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

.avatar-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  font-weight: 600;
  font-size: 1rem;
}

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

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

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

/* === ABOUT SECTION === */
.about {
  padding: 120px 0;
  background: var(--accent-cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.visual-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.code-showcase {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(45, 45, 45, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}

.code-dots span:nth-child(2) {
  background: #ffbd2e;
}

.code-dots span:nth-child(3) {
  background: #28cd41;
}

.code-title {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.code-content {
  padding: 24px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.code-line {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  min-height: 20px;
}

.line-number {
  width: 30px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 20px;
  text-align: right;
  user-select: none;
}

.code-keyword {
  color: #ff79c6;
  font-weight: 600;
}

.code-class {
  color: #50fa7b;
  font-weight: 600;
}

.code-string {
  color: #f1fa8c;
}

.code-indent {
  color: rgba(255, 255, 255, 0.9);
}

.visual-stats {
  display: flex;
  gap: 16px;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 128, 128, 0.2);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 128, 128, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.25rem;
}

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

.stat-value {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.tech-stack {
  margin: 40px 0;
}

.tech-stack h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.tech-item:hover {
  background: rgba(0, 128, 128, 0.05);
  border-color: rgba(0, 128, 128, 0.2);
}

.tech-item i {
  font-size: 1.25rem;
  color: var(--primary-teal);
}

.tech-item span {
  font-weight: 500;
  font-size: 0.875rem;
}

.company-metrics {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.metric-item {
  text-align: center;
  flex: 1;
}

.metric-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 8px;
  display: block;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* === CTA SECTION === */

/* === CTA SECTION === */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 50px 50px;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-text h2 {
  color: var(--accent-white);
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 500px;
}

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

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.cta-note i {
  font-size: 1rem;
}

/* === CONTACT SECTION === */
.contact {
  padding: 120px 0;
  background: var(--accent-cream);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all var(--transition-normal);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 128, 128, 0.2);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: 12px;
}

.contact-item h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.social-media {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-media a {
  width: 48px;
  height: 48px;
  background: rgba(0, 128, 128, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.social-media a:hover {
  background: var(--primary-teal);
  color: var(--accent-white);
  transform: translateY(-2px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 128, 128, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: var(--accent-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* === FOOTER === */
footer {
  background: var(--secondary-dark);
  color: var(--accent-white);
  padding: 80px 0 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  color: var(--accent-white);
  font-size: 2rem;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
}

.contact-detail:hover {
  color: var(--accent-white);
  transform: translateX(4px);
}

.contact-detail i {
  width: 20px;
  color: var(--primary-teal);
  font-size: 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h3 {
  color: var(--accent-white);
  font-size: 1.125rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-teal);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
}

.footer-column ul li a:hover {
  color: var(--accent-white);
  padding-left: 8px;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  transition: width var(--transition-normal);
}

.footer-column ul li a:hover::before {
  width: 4px;
}

.footer-column ul li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
  text-decoration: none;
  border: 1px solid transparent;
}

.footer-social a:hover {
  background: var(--primary-teal);
  color: var(--accent-white);
  transform: translateY(-2px);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-md);
}

.footer-social a i {
  font-size: 1.125rem;
}

/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .services-bento {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  
  .service-card.large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item.featured {
    grid-row: auto;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .visual-stats {
    flex-direction: column;
  }
  
  .code-content {
    padding: 16px;
    font-size: 0.8rem;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  header {
    padding: 16px 0;
  }
  
  .logo-img {
    height: 32px;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 20px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-xl);
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 24px;
  }
  
  .services {
    padding: 80px 0;
  }
  
  .services-bento {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .service-card.large {
    grid-column: auto;
    grid-row: auto;
  }
  
  .service-visual {
    height: 60px;
  }
  
  .portfolio,
  .testimonials,
  .about {
    padding: 80px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-metrics {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .metric-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
  }
  
  .metric-item:last-child {
    border-bottom: none;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta {
    padding: 80px 0;
  }
  
  .contact {
    padding: 80px 0;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  footer {
    padding: 60px 0 0;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand p {
    max-width: none;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .section-header {
    margin-bottom: 60px;
  }
  
  .hero-card {
    padding: 20px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .about-text h2 br {
    display: none;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* === ANIMAÇÕES EXTRAS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.6s;
}
