/* =============================================
   CURRÍCULO GO — Home Page Styles
   ============================================= */

/* ── Hero ── */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(160deg, #F5F7FA 0%, #FFFFFF 60%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-content .badge { margin-bottom: 20px; }
.hero-content h1 { color: var(--primary); margin-bottom: 20px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 36px;
}
.hero-social-proof p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.hero-social-proof strong { color: var(--text); }
.avatars { display: flex; }
.av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }

/* ── Resume Mockup ── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.resume-preview-mockup {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: 320px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.rp-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.rp-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  flex-shrink: 0;
}
.rp-name-block { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rp-line {
  height: 8px; background: var(--light-bg); border-radius: 4px;
  animation: shimmer 1.8s infinite;
}
.rp-line-name { width: 70%; height: 12px; background: #E2E8F0; }
.rp-line-role { width: 50%; background: var(--accent-light); }
.rp-line-short { width: 55%; }
.rp-line-job { width: 65%; background: #E2E8F0; height: 10px; }
.rp-divider { height: 1px; background: var(--border); margin: 16px 0; }
.rp-section-label {
  width: 90px; height: 7px; background: var(--accent);
  border-radius: 4px; margin-bottom: 12px; opacity: 0.7;
}
.rp-job { margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.rp-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.rp-skill-tag {
  height: 22px; width: 52px; background: var(--accent-light);
  border-radius: 100px;
}
.rp-skill-wide { width: 80px; }
.rp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--light-bg); color: var(--text-muted);
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; margin-top: 16px;
}
.rp-badge span:first-child { color: var(--accent); }
@keyframes shimmer {
  0%, 100% { opacity: 1; } 50% { opacity: 0.6; }
}

/* ── Floating cards ── */
.float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.float-card .float-icon { font-size: 1.4rem; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: 0.85rem; color: var(--primary); }
.float-card span { font-size: 0.75rem; color: var(--text-muted); }
.float-card-1 { top: 8%; right: -40px; animation: float 3s ease-in-out infinite; }
.float-card-2 { bottom: 10%; left: -40px; animation: float 3s ease-in-out infinite 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Trust Bar ── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--light-bg); }
.trust-label { text-align: center; font-size: 0.8rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.trust-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-logo {
  font-size: 1rem; font-weight: 700; color: var(--text-light);
  letter-spacing: -0.01em; transition: var(--transition);
}
.trust-logo:hover { color: var(--text-muted); }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--accent); transform: translateY(-2px); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; }

/* ── How it works ── */
.how-section { background: var(--light-bg); }
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.step {
  flex: 1; text-align: center; padding: 32px 24px;
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.step-number {
  font-size: 2.5rem; font-weight: 800;
  color: var(--accent); line-height: 1;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 0.9rem; }
.step-arrow {
  font-size: 1.5rem; color: var(--text-light);
  padding: 0 12px; margin-top: 56px;
  flex-shrink: 0;
}

/* ── Pricing ── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 760px; margin: 0 auto;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 36px; position: relative;
}
.pricing-card-featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 0 0 4px rgba(0,196,140,0.08);
}
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 0.75rem; font-weight: 700; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
}
.pricing-tag { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.pricing-value { font-size: 3rem; }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { font-size: 0.9rem; display: flex; align-items: center; gap: 10px; color: var(--text); }
.pricing-features li.disabled { color: var(--text-light); }
.pricing-features .check { color: var(--accent); font-weight: 700; font-size: 1rem; }
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* ── CTA ── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--primary);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
}
.cta-box h2 { color: white; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; }
.cta-box .btn-primary {
  background: var(--accent);
}

/* ── Mobile nav open ── */
.nav-links.mobile-open {
  display: flex; flex-direction: column;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 16px 24px; gap: 4px; z-index: 99;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .cta-box { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
