@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #128C7E;
  /* Verde Profundo WhatsApp */
  --accent: #25D366;
  /* Verde Vibrante */
  --dark: #0f172a;
  /* Azul Noturno (Mais elegante que preto) */
  --gray-dark: #334155;
  --gray-light: #64748b;
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-lg: 16px;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background-color: var(--bg-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navbar Glassmorphism --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(255,255,255,0.3); */
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.logo-st {
  position: relative;
  width: 25px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-icon {
  color: var(--accent);
  font-size: 1.8rem;
}

.logo b {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--dark);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2);
}

/* --- Hero Section --- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Background Blob (Efeito sutil de cor no fundo) */
.hero-bg-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag-pill {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--dark);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-primary {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--primary), #0e7065);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(18, 140, 126, 0.3);
}

.mini-proof {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -15px;
}

.avatars img:first-child {
  margin-left: 0;
}

.mini-proof span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
}

/* Hero Visual (CSS Art) */
.hero-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-float {
  background: white;
  width: 320px;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbd2e;
}

.green {
  background: #27c93f;
}

.chart-line {
  height: 100px;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 2px solid var(--accent);
  margin: 20px 0;
  position: relative;
}

.chart-line::after {
  content: '';
  position: absolute;
  top: -5px;
  right: 20%;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.text-green {
  color: var(--primary);
}

.float-badge {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.float-badge i {
  color: var(--accent);
}

.badge-1 {
  top: 10%;
  right: 0;
  animation: float 7s ease-in-out infinite 1s;
}

.badge-2 {
  bottom: 15%;
  left: -20px;
  animation: float 5s ease-in-out infinite 0.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* --- Partners Strip --- */
.partners-strip {
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
}

.partners-strip p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.logos-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  font-weight: 800;
  color: #cbd5e1;
  font-size: 1.5rem;
  user-select: none;
}

section {
  border-bottom: 1px solid var(--border);
}

/* --- Stats Section --- */
.stats-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h2 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.stat-item p {
  color: var(--gray-light);
  font-weight: 500;
}

/* --- Bento Grid Services --- */
.services {
  padding: 100px 0;
  background: var(--bg-body);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sub-title {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  letter-spacing: -1px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(250px, auto);
}

.bento-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.large {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.icon-bg {
  width: 60px;
  height: 60px;
  background: #DCFCE7;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.icon-main {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.bento-card p {
  color: var(--gray-light);
  font-size: 1rem;
}

/* --- Process Section --- */
.process {
  padding: 100px 0;
  background: var(--bg-white);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  position: relative;
}

.step {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
  font-size: 1.2rem;
  border: 5px solid white;
  box-shadow: var(--shadow-sm);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-light);
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: #e2e8f0;
  margin-top: 30px;
}

/* --- Premium CTA --- */
.premium-cta {
  padding: 80px 0;
  border-bottom: none;
}

.cta-box {
  background: var(--dark);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  background-image: radial-gradient(circle at top right, #1e293b, var(--dark));
  color: white;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-box p {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.btn-white {
  background: white;
  color: var(--dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-white:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* --- Footer --- */
footer {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.brand h3 {
  font-size: 1.5rem;
}

.brand p {
  color: var(--gray-light);
}

.links {
  display: flex;
  gap: 30px;
}

.links a {
  font-weight: 600;
  color: var(--dark);
}

.copy {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* Float WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
    height: 350px;
  }

  .hero-actions {
    align-items: center;
  }

  .btn-primary {
    align-self: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .large {
    grid-column: span 1;
  }

  .steps-container {
    flex-direction: column;
    gap: 30px;
  }

  .step-line {
    display: none;
  }

  .nav-links {
    display: none;
  }
}