:root {
  --green-dark: #1a6b0a;
  --green-mid: #2d8c1a;
  --green-light: #3daa20;
  --green-neon: #5ecf30;
  --black: #0d0d0d;
  --white: #ffffff;
  --gray-light: #f4f6f2;
  --gray-mid: #e0e6dc;
  --text-dark: #1a1a1a;
  --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: relative;
  z-index: 102;
  top: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--green-light);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-wrap {
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5%;
  border-radius: 4px;
}

.logo-box {
  background: var(--green-dark);
  border-radius: 10px;
  padding: 6px 13px;
  border: 2px solid var(--green-neon);
}

.tamanho_logo {
  width: 100%;
  box-shadow: 0 6px 24px rgba(0, 82, 30, 0.5);
  text-decoration: none;
  animation: pulse-wa 2.0s ease-in-out infinite;
  transition: transform 0.2s;
}


@media only screen and (max-width: 800px) {
  .tamanho_logo {
    width: 50%;
    box-shadow: 0 6px 24px rgba(0, 82, 30, 0.5);
    text-decoration: none;
    animation: pulse-wa 2.0s ease-in-out infinite;
    transition: transform 0.2s;
  }  

    .logo-wrap {
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20%;
    border-radius: 4px;
  }
}


.logo-box span.logo-top {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
  width: 100%;
}

.logo-box span.logo-bot {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--green-neon);
  line-height: 1.1;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

nav a:hover { color: var(--green-neon); background: rgba(94,207,48,0.1); }

.btn-assinar {
  background: var(--green-light);
  color: #fff !important;
  border-radius: 30px !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  box-shadow: 0 4px 15px rgba(61,170,32,0.4);
  transition: all 0.2s !important;
}

.btn-assinar:hover {
  background: var(--green-neon) !important;
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94,207,48,0.5) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-neon);
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  z-index: 998;
  border-bottom: 3px solid var(--green-light);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.mobile-menu a:hover { background: rgba(94,207,48,0.15); color: var(--green-neon); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(61,170,32,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(26,107,10,0.25) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #111a0d 50%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  padding: 0px 40px 60px;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 80px solid rgba(94,207,48,0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border: 60px solid rgba(61,170,32,0.06);
  border-radius: 50%;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text .badge {
  display: inline-block;
  background: rgba(94,207,48,0.15);
  border: 1px solid var(--green-neon);
  color: var(--green-neon);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0px;
  margin-bottom: 12px;
}

.hero-text h1 .green { color: var(--green-neon); }

.hero-text p {
  color: #aaa;
  font-size: 17px;
  line-height: 1.7;
  margin: 20px 0 36px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-light);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(61,170,32,0.45);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.btn-primary:hover {
  background: var(--green-neon);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(94,207,48,0.5);
}

.btn-outline {
  border: 2px solid var(--green-light);
  color: var(--green-neon);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--green-light);
  color: #fff;
  transform: translateY(-3px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.speed-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(94,207,48,0.2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  animation: float 4s ease-in-out infinite;
}

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

.speed-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 8px solid var(--green-dark);
  border-top-color: var(--green-neon);
  border-right-color: var(--green-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(94,207,48,0.25), inset 0 0 30px rgba(61,170,32,0.08);
  animation: spin-glow 6s linear infinite;
}

@keyframes spin-glow {
  0%   { box-shadow: 0 0 30px rgba(94,207,48,0.2), inset 0 0 20px rgba(61,170,32,0.05); }
  50%  { box-shadow: 0 0 60px rgba(94,207,48,0.4), inset 0 0 30px rgba(61,170,32,0.1); }
  100% { box-shadow: 0 0 30px rgba(94,207,48,0.2), inset 0 0 20px rgba(61,170,32,0.05); }
}

.speed-circle .num {
  font-family: 'Arial Rounded MT Bold', sans-serif;
  font-size: 40px;
  color: var(--green-neon);
  line-height: 1;
  letter-spacing: 2px;
}

.speed-circle .unit {
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.speed-label {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.speed-sub {
  color: #777;
  font-size: 12px;
  margin-top: 6px;
}

.mini-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-badge {
  background: rgba(94,207,48,0.12);
  border: 1px solid rgba(94,207,48,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── SELF-SERVICE ── */
.selfservice {
  background: var(--green-dark);
  padding: 48px 40px;
}

.selfservice-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.selfservice h2 {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.selfservice h2 span { color: var(--green-neon); }

.selfservice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.ss-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 22px 18px;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ss-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: var(--green-neon);
}

.ss-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(94,207,48,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ss-card span {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ── PLANS ── */
.plans {
  padding: 90px 40px;
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--green-dark);
  color: var(--green-neon);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}

.section-header p {
  color: #666;
  font-size: 16px;
  margin-top: 12px;
}

.plans-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 2px solid var(--gray-mid);
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--green-light);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(61,170,32,0.15);
}

.plan-card.featured {
  border-color: var(--green-light);
  background: linear-gradient(160deg, #fff 60%, #f0faf0 100%);
  box-shadow: 0 16px 40px rgba(61,170,32,0.18);
}

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(61,170,32,0.35);
}

.plan-speed {
  font-family: 'Lato', sans-serif;
  font-size: 68px;
  line-height: 1;
  color: var(--black);
  letter-spacing: 2px;
  font-weight: 600;
}

.plan-speed span {
  font-size: 24px;
  color: var(--green-dark);
  vertical-align: middle;
}

.plan-name {
  font-weight: 900;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px 0 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 14px;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

.plan-price {
  margin-bottom: 20px;
}

.plan-price .from {
  font-size: 11px;
  color: #aaa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-price .value {
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  color: var(--green-dark);
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 600;
}

.plan-price .value sup {
  font-size: 22px;
  vertical-align: super;
}

.plan-price .value sub {
  font-size: 16px;
  vertical-align: baseline;
  color: #888;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}

.btn-plan-outline {
  border: 2px solid var(--green-light);
  color: var(--green-dark);
}

.btn-plan-outline:hover {
  background: var(--green-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-plan-fill {
  background: var(--green-light);
  color: #fff;
  box-shadow: 0 6px 20px rgba(61,170,32,0.35);
}

.btn-plan-fill:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,107,10,0.4);
}

/* ── DIFERENCIAIS ── */
.diferenciais {
  padding: 90px 40px;
  background: var(--black);
}

.diferenciais .section-header h2 { color: var(--white); }
.diferenciais .section-header p { color: #777; }

.dif-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.dif-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s;
}

.dif-card:hover {
  border-color: rgba(94,207,48,0.3);
  background: rgba(94,207,48,0.05);
  transform: translateY(-5px);
}

.dif-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}

.dif-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.dif-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
}

/* ── CTA / CONTATO ── */
.cta-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #56e938 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 80px solid rgba(94,207,48,0.06);
}

.cta-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 40px;
  position: relative;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s;
  position: relative;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 50px 40px 30px;
  border-top: 3px solid var(--green-dark);
}


.footer-logo{
  opacity: 0.8;
  border-radius: 2%;
  box-shadow: 0 6px 24px rgba(0, 82, 30, 0.5);
  text-decoration: none;
  animation: pulse-wa 2.0s ease-in-out infinite;
  transition: transform 0.2s;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-box {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--green-neon);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--green-neon); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: #444;
  font-size: 12px;
}

.footer-bottom span {
  color: var(--green-neon);
  font-weight: 700;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 24px 50px; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text p { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }

  .selfservice { padding: 40px 24px; }

  .plans { padding: 70px 24px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; }

  .diferenciais { padding: 70px 24px; }
  .cta-section  { padding: 70px 24px; }

  footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
