/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

/* VARIÁVEIS */
:root {
  --bg-main: #050b1a;
  --bg-surface: rgba(15, 23, 42, 0.85);
  --card-bg: rgba(255,255,255,0.04);

  --green: #22c55e;
  --blue: #0b63f0;

  --text-main: #e5e7eb;
  --text-muted: #94a3b8;

  --border-soft: rgba(255,255,255,0.08);
}

/* BODY */
body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: var(--text-main);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
}

.navbar a {
 
  margin-left: 24px;
  text-decoration: none;
}

.btn-nav {
  background: var(--green);
  color: #000;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  
}
/* Mantém os outros links iguais */
nav a {
  color: #c0bebe; /* ou a cor que já está definida */
  text-decoration: none;
}

/* Estilo do botão verde */
.btn-fale-comigo {
  background-color: green;   /* mantém o botão verde */
  color: black;              /* muda o texto para preto */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}


/* HERO */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, #0a1f44, #050b1a),
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: cover, 50px 50px, 50px 50px;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 20px 0;
}

.green { color: var(--green); }
.blue { color: var(--blue); }

.hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.hero-buttons {
  margin-top: 40px;
}

.btn-primary {
  background: var(--green);
  padding: 14px 28px;
  border-radius: 14px;
  color: #000;
  margin-right: 16px;
  text-decoration: none;
}
.btn-primary {
  display: inline-block;   /* mantém os botões lado a lado */
  margin-top: 20px;        /* adiciona espaço acima dos botões */
}

.btn-outline {
  border: 1px solid var(--green);
  padding: 14px 28px;
  border-radius: 14px;
  color: var(--green);
  text-decoration: none;
}.container-botoes {
  margin-top: 30px;   /* empurra o bloco inteiro para baixo */
  text-align: center; /* centraliza os botões */
}
.bnt-blue {
  background-color: #0077b5; /* Azul oficial do LinkedIn */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.bnt-blue:hover {
  background-color: #005582; /* Tom mais escuro no hover */
}


/* HERO CARDS */
.hero-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 80px;
}

.hero-card {
  width: 220px;
  padding: 20px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
}

.hero-card .icon {
  font-size: 28px;
  color: var(--green);
}

/* SECTIONS */
.section {
  padding: 120px 60px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 60px;
}

/* GRID / CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  background: var(--bg-surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
}

/* SKILLS NEW SECTION */
.skills-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.section-header.center {
  text-align: center;
  margin-bottom: 60px;
}

.badge-blue {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(11, 99, 240, 0.15);
  color: var(--blue);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Category Icons Row */
.skills-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 120px;
}

.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.category-item:hover .cat-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  transform: translateY(-4px);
}

.category-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Skills Grid Main */
.skills-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.skill-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.skill-icon-title {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border-soft);
}

.green-text { color: var(--green); }
.blue-text { color: var(--blue); }

.skill-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Progress Bars */
.skill-bar-item {
  margin-bottom: 24px;
}

.skill-bar-item:last-child {
  margin-bottom: 0;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.progress-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  position: relative;
}

.green-fill {
  background: linear-gradient(90deg, var(--green), #4ade80);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.blue-fill {
  background: linear-gradient(90deg, var(--blue), #3b82f6);
  box-shadow: 0 0 12px rgba(11, 99, 240, 0.4);
}

@media (max-width: 900px) {
  .skills-grid-main {
    grid-template-columns: 1fr;
  }
}

/* ABOUT */
.about-section {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* About Left Column */
.about-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-text strong {
  color: var(--text-main);
}

/* Stats Grid */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 24px 16px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat strong {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline */
.timeline {
  position: relative;
  border-left: 1px solid var(--border-soft);
  margin-left: 16px; /* Offset for icon centering */
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -20px; /* Center on 1px border. 40px width -> -20px */
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-main);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}

.timeline-icon.green-icon {
  color: var(--green);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.05);
}

.timeline-icon.blue-icon {
  color: var(--blue);
  border-color: rgba(11, 99, 240, 0.3);
  box-shadow: 0 0 0 4px rgba(11, 99, 240, 0.05);
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.timeline-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-date {
  display: block;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }
  
  .about-text h1 {
    font-size: 2rem;
  }
}

/* CTA */
.cta {
  text-align: center;
  padding: 120px 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* SERVICES */
.services {
  background: radial-gradient(circle at top, #0b1c3d, #050b1a);
  padding: 80px 0 120px;

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;

}

.service-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* linha verde lateral (detalhe da lovable) */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;

}

.service-card:hover::before {
  border-left-color: var(--green);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.35);
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.1),
    0 20px 40px rgba(0,0,0,0.6);
}

/* CARD DESTACADO (Landing Pages) */
.service-card.featured {
  border-color: rgba(34,197,94,0.6);
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.25),
    0 0 40px rgba(34,197,94,0.15);
}

/* ICON */
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* TEXTOS */
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* LISTA */
.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.service-card li::before {
  content: "•";
  color: var(--green);
  position: absolute;
  left: 0;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .section {
    padding: 80px 40px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Scale down section padding */
  .section {
    padding: 60px 20px;
  }

  .navbar {
    padding: 20px;
  }

  /* Hero: Keep content centered but smaller */
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .btn-primary, .btn-outline {
    padding: 12px 20px;
    font-size: 0.9rem;
    margin: 0;
  }

  /* Hero Cards: Keep row, scale down */
  .hero-cards {
    margin-top: 40px;
    gap: 12px;
  }

  .hero-card {
    width: auto;
    flex: 1;
    padding: 16px;
  }

  .hero-card .icon {
    font-size: 24px;
  }

  .hero-card h3 {
    font-size: 1rem;
  }

  /* Services: Keep 3 columns but smaller */
  .services-grid {
    gap: 16px;
    /* Force 3 columns if screen permits, or allow scroll/wrap if too small? 
       User said "exact same layout". Desktop has 3 cols. 
       Fitting 3 cols on 360px is 120px each. */
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    padding: 16px;
  }
  
  .service-card .icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .service-card li {
    font-size: 0.75rem;
  }

  /* About: Keep 2 columns */
  .about-grid {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

  .badge {
    margin-bottom: 12px;
  }

  .stats {
    margin-top: 24px;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr); /* Keep 3 cols */
  }

  .stat {
    padding: 12px 8px;
  }

  .stat strong {
    font-size: 1.2rem;
  }

  .stat span {
    font-size: 0.6rem;
  }

  /* Timeline */
  .timeline-item {
    padding-left: 32px;
    margin-bottom: 32px;
  }

  .timeline-icon {
    width: 32px;
    height: 32px;
    left: -16px;
    font-size: 1rem;
  }

  .timeline-content {
    padding: 16px;
  }

  .timeline-content h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens: Scale down further */
  
  .hero h1 {
    font-size: 24px;
  }

  /* Force Services to remain 3 cols but maybe scrollable? 
     Or just very small. User insisted on "exact same layout". */
  .services-grid {
    gap: 8px;
  }

  .service-card {
    padding: 12px;
    border-radius: 12px;
  }
  
  .about-grid {
    gap: 12px;
  }

  /* Skills Section Scaling */
  .skills-categories {
    gap: 12px;
  }

  .category-item {
    width: 80px;
  }

  .cat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .skills-grid-main {
    grid-template-columns: 1fr 1fr; /* Keep 2 cols */
    gap: 16px;
  }

  .skill-card {
    padding: 20px;
  }

  .skill-header h3 {
    font-size: 1rem;
  }
}
/* NAV DESKTOP */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* HAMBURGER */
.hamburger {
  font-size: 26px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* MENU MOBILE */
.mobile-menu {
  position: absolute;
  top: 80px;
  right: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
}

/* ATIVO */
.mobile-menu.active {
  display: flex;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-desktop a:not(.btn-nav) {
    display: none;
  }
}









