/* ⚙️ CONFIGURAÇÕES GERAIS E CORES DO SITE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0e1117; /* Fundo principal */
  --bg2:      #161b25; /* Fundo secundário (cards) */
  --bg3:      #1d2433; /* Fundo ao passar o mouse */
  --border:   #2a3245; /* Cor das bordas */
  --orange:   #f5640a; /* Laranja principal */
  --orange-d: #c94e06; /* Laranja mais escuro para botões */
  --text:     #e8ecf4; /* Cor do texto claro */
  --muted:    #8b95aa; /* Cor do texto cinza/apagado */
  --green:    #2dd4a0; /* Verde dos detalhes */
  --instagram: #e1306c;/* Cor oficial do Instagram */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Estilo do Menu de Navegação */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }

.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-instagram:hover { color: var(--instagram); }
.nav-instagram svg { width: 20px; height: 20px; fill: currentColor; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-d) !important; color: #fff !important; }

/* Estilo do Painel Principal (Hero) */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-container {
  position: relative; 
  min-height: 100vh; 
  overflow: hidden; 
  background: #0e1117;
}

.hero-bg-img {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  z-index: 1;
}

.hero-overlay {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(rgba(14, 17, 23, 0.75), rgba(14, 17, 23, 0.95)); 
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 800px;
  margin-bottom: 32px;
}

.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: var(--text);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-sub strong { color: #fff; font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  background: rgba(14, 17, 23, 0.65);
  backdrop-filter: blur(4px);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.1s;
}
.btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); }

/* Estilo da Barra de Números / Resultados */
.proof-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
  position: relative;
  z-index: 4;
}
.proof-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.proof-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Estilo dos Títulos das Seções */
.section {
  padding: 96px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.section-title .accent { color: var(--orange); }

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Estilo do Grid de Problemas */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.problem-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Estilo do Grid de Soluções */
.solutions-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.solution-card {
  background: var(--bg2);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solution-card:hover { background: var(--bg3); }

.solution-info {
  margin-bottom: 20px;
}

.solution-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45,212,160,0.1);
  border: 1px solid rgba(45,212,160,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.solution-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Container das Imagens dos Cards */
.solution-media {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0e1117;
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.05);
}

.solution-card-inline-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  margin-top: 16px;
  border: 1px solid var(--border);
}

/* Seção de Criação de Sites */
.site-creation-section {
  background: linear-gradient(180deg, #0e1117 0%, #161b25 100%); 
  border-bottom: 1px solid var(--border);
}

.site-creation-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: center;
}

.site-creation-text p.sub {
  font-size: 18px; 
  color: var(--text); 
  margin-bottom: 16px; 
  font-weight: 500;
}

.site-creation-text p.desc {
  font-size: 15px; 
  color: var(--muted); 
  margin-bottom: 32px; 
  line-height: 1.7;
}

.site-creation-list {
  margin-bottom: 40px; 
  gap: 12px;
}

.site-creation-list li {
  color: var(--text); 
  font-size: 15px;
}

.site-creation-btn {
  padding: 16px 32px; 
  font-size: 16px;
}

.site-creation-visual {
  border: 1px solid var(--border); 
  border-radius: 12px; 
  overflow: hidden; 
  background: #0e1117; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.site-creation-visual img {
  width: 100%; 
  height: auto; 
  display: block; 
  object-fit: cover; 
  aspect-ratio: 16 / 10;
}

.site-creation-footer {
  padding: 24px; 
  background: var(--bg2);
}

.site-creation-footer h4 {
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 18px; 
  text-transform: uppercase; 
  color: var(--orange); 
  margin-bottom: 8px;
}

.site-creation-footer p {
  font-size: 13px; 
  color: var(--muted);
}

/* Estilo da Linha do Tempo (Como Funciona) */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 640px;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }

.step-line {
  position: absolute;
  left: 22px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step:last-child .step-line { display: none; }

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
  background: var(--bg2);
  border: 2px solid var(--orange);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  margin-top: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Estilo da Seção Sobre Mim / Terminal */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(245,100,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.terminal-line {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.terminal-prompt { color: var(--orange); font-weight: 700; }
.terminal-cmd { color: var(--green); }
.terminal-comment { color: var(--muted); }
.terminal-out { color: var(--text); margin-left: 16px; }

.about-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p strong { color: var(--text); }

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 4px;
}

/* Estilo do Rodapé e Contatos Final */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 40px;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-inner h2 .accent { color: var(--orange); }

.cta-inner p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-contact {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contact-item {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-item a { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--orange); }
.contact-item .insta-link:hover { color: var(--instagram); }

footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
footer p {
  font-size: 13px;
  color: var(--muted);
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--muted);
}
.footer-logo span { color: var(--orange); }

/* Ajustes para Dispositivos Móveis */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero, .section { padding-left: 20px; padding-right: 20px; }
  .proof-bar { padding: 20px; }
  .proof-bar-inner { gap: 24px; }
  .proof-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { padding: 64px 20px; }
  footer { padding: 24px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .site-creation-grid { grid-template-columns: 1fr; gap: 40px; }
}