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

:root {
  --brand-primary: #0066cc;
  --brand-primary-dark: #004d99;
  --brand-secondary: #1e293b;
  --brand-light: #f5f9ff;
  --brand-extra-light: #f8fbfe;
  --neutral-700: #2f3a4a;
  --neutral-500: #5f6c7b;
  --neutral-300: #c7d4e3;
  --accent: #3b82f6;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 60px -28px rgba(0, 77, 153, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--neutral-700);
  background-color: white;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 102, 204, 0.08);
  backdrop-filter: blur(16px);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.08);
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.08) rotate(5deg);
}

.brand span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-primary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
}

nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--neutral-500);
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--brand-primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-outline {
  color: var(--brand-primary);
  border: 1px solid rgba(0, 102, 204, 0.35);
  background: transparent;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -26px rgba(0, 102, 204, 0.4);
}

.btn-primary {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 24px 52px -28px rgba(0, 102, 204, 0.58);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--brand-primary-dark);
}

main {
  padding-bottom: 120px;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(130deg, rgba(241, 246, 251, 1) 0%, rgba(255, 255, 255, 1) 55%, rgba(230, 243, 252, 0.9) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.25), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(0, 102, 204, 0.16), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  line-height: 1.1;
  color: var(--brand-secondary);
  margin: 0 0 24px;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

.hero-copy p {
  max-width: 520px;
  font-size: 1.08rem;
  color: var(--neutral-500);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions small {
  flex-basis: 100%;
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin-top: 6px;
}

.metrics-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  display: grid;
  gap: 24px;
  animation: slideInRight 0.8s ease-out 0.3s backwards;
}

.metric {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.metric span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.metric h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--brand-secondary);
}

.metric p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--neutral-500);
}

section {
  padding: 90px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--brand-secondary);
}

.section-header p {
  margin: 0;
  font-size: 1rem;
  color: var(--neutral-500);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--brand-extra-light);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(0, 102, 204, 0.08);
  display: grid;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px -32px rgba(0, 102, 204, 0.5);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card strong {
  font-size: 1.05rem;
  color: var(--brand-secondary);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--neutral-500);
  margin: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 102, 204, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-primary);
  transition: transform 0.3s ease;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.process-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 102, 204, 0.12);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px -32px rgba(0, 102, 204, 0.5);
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  right: 18px;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(0, 102, 204, 0.08);
}

.process-card h3 {
  margin: 0 0 12px;
  color: var(--brand-secondary);
  font-size: 1.1rem;
}

.process-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--neutral-500);
}

.data-band {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  padding: 36px;
  background: linear-gradient(130deg, rgba(0, 102, 204, 0.12), rgba(0, 77, 153, 0.16));
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--brand-secondary);
}

.stat strong {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat span {
  font-size: 0.95rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

.security-split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.security-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  box-shadow: var(--shadow-soft);
}

.security-panel ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.security-panel li {
  font-size: 0.95rem;
  color: var(--neutral-500);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.security-panel li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  margin-top: 7px;
}

.trust-card {
  background: var(--brand-extra-light);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(0, 102, 204, 0.08);
  display: grid;
  gap: 10px;
}

.trust-card strong {
  color: var(--brand-secondary);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 102, 204, 0.1);
  padding: 26px;
  display: grid;
  gap: 18px;
  box-shadow: 0 22px 54px -32px rgba(0, 102, 204, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px -32px rgba(0, 102, 204, 0.45);
}

.testimonial-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--neutral-500);
}

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

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

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

.author-meta strong {
  color: var(--brand-secondary);
  font-size: 0.95rem;
}

.author-meta span {
  font-size: 0.82rem;
  color: var(--neutral-500);
}

.testimonial-score {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cta {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.18), rgba(0, 102, 204, 0.05));
}

.cta-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(0, 102, 204, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 22px;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--brand-secondary);
}

.cta-card p {
  margin: 0;
  color: var(--neutral-500);
  font-size: 1rem;
}

footer {
  padding: 46px 0;
  background: #0f1c2b;
  color: rgba(255, 255, 255, 0.76);
}

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

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

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

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav strong {
  color: white;
  font-size: 0.95rem;
}

.footer-nav a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  margin-top: 32px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  header {
    position: static;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .metrics-card {
    padding: 24px;
  }

  .cta-card {
    padding: 36px 26px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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