/* ==========================================================================
   SERVIÇO ELITE — DESIGN SYSTEM & STYLESHEET
   Orientado à conversão, mobile-first, minimalista e confiável
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS VARIABLES)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-navy-dark: #0B192C;
  --color-navy-primary: #1E3E62;
  --color-navy-light: #2B527E;
  
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-bg-soft: #F1F5F9;
  
  --color-green-action: #10B981;
  --color-green-action-hover: #059669;
  --color-green-whatsapp: #25D366;
  --color-green-whatsapp-dark: #128C7E;
  --color-green-soft: #ECFDF5;
  --color-green-light-bubble: #E7FFDB;

  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-text-white: #FFFFFF;
  
  --color-border: #E2E8F0;
  --color-border-subtle: #F1F5F9;
  --color-border-dark: #334155;
  
  /* Typography */
  --font-family-base: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-family-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Shadows (Subtle, clean, non-heavy) */
  --shadow-subtle: 0 2px 8px rgba(11, 25, 44, 0.04);
  --shadow-card: 0 4px 20px rgba(11, 25, 44, 0.06);
  --shadow-featured: 0 10px 30px rgba(16, 185, 129, 0.12), 0 4px 12px rgba(11, 25, 44, 0.08);
  --shadow-phone: 0 20px 40px rgba(11, 25, 44, 0.12), 0 1px 3px rgba(11, 25, 44, 0.05);
  
  /* Transitions */
  --transition-fast: 0.18s ease-in-out;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout */
  --container-max-width: 1140px;
  --container-padding: 20px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & COMMON UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-family-heading);
  color: var(--color-navy-dark);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.text-center { text-align: center; }
.max-w-750 { max-width: 750px; margin-left: auto; margin-right: auto; }

.section {
  padding: 64px 0;
  position: relative;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
    scroll-margin-top: 90px;
  }
}

.bg-light { background-color: var(--color-bg-light); }
.bg-navy { background-color: var(--color-navy-dark); }
.text-white { color: var(--color-text-white) !important; }
.text-slate-light { color: #CBD5E1; }
.text-green-light { color: #34D399; }

/* Section Header styling */
.section-header {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 56px;
  }
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--color-green-soft);
  color: var(--color-green-action-hover);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag-light {
  background-color: rgba(255, 255, 255, 0.12);
  color: #A7F3D0;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.35rem;
  }
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  line-height: 1.3;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--color-green-action);
  color: var(--color-text-white);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-green-action-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-navy-dark);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  background-color: var(--color-navy-dark);
  color: var(--color-text-white);
  border-color: var(--color-navy-dark);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  width: 100%;
}

@media (min-width: 640px) {
  .btn-large {
    width: auto;
  }
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-navy-dark);
  color: var(--color-green-action);
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-family-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  letter-spacing: -0.02em;
}

.logo-text strong {
  font-weight: 800;
  color: var(--color-navy-dark);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--color-green-soft);
  color: var(--color-green-action-hover);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-header-cta:hover {
  background-color: var(--color-green-action);
  color: var(--color-text-white);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 40px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: #F1F5F9;
  border: 1px solid var(--color-border);
  color: var(--color-navy-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-green-action);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.16;
  margin-bottom: 18px;
  color: var(--color-navy-dark);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-main);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-guarantee-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   7. REALISTIC SMARTPHONE MOCKUP
   -------------------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 100%;
  max-width: 320px;
  height: 570px;
  background: #0B192C;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  position: relative;
  border: 4px solid #1E293B;
}

.phone-speaker {
  width: 60px;
  height: 4px;
  background: #334155;
  border-radius: 4px;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-camera {
  width: 10px;
  height: 10px;
  background: #0F172A;
  border: 2px solid #334155;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 100px;
  z-index: 10;
}

.wa-screen {
  width: 100%;
  height: 100%;
  background: #EFEAE2;
  background-image: radial-gradient(#D6D0C7 1px, transparent 1px);
  background-size: 14px 14px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* WA Header */
.wa-header {
  background-color: var(--color-navy-dark);
  color: var(--color-text-white);
  padding: 24px 12px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  background-color: #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.status-online {
  width: 9px;
  height: 9px;
  background-color: #25D366;
  border: 2px solid var(--color-navy-dark);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.wa-contact-info {
  display: flex;
  flex-direction: column;
}

.wa-contact-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.wa-contact-status {
  font-size: 0.7rem;
  color: #A7F3D0;
}

/* WA Chat Body */
.wa-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.wa-date-chip {
  align-self: center;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.6875rem;
  padding: 2px 10px;
  border-radius: 6px;
  color: #64748B;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wa-message {
  max-width: 85%;
  padding: 8px 10px;
  border-radius: 10px;
  position: relative;
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-message.received {
  align-self: flex-start;
  background-color: #FFFFFF;
  color: #111827;
  border-top-left-radius: 2px;
}

.wa-message.sent {
  align-self: flex-end;
  background-color: var(--color-green-light-bubble);
  color: #111827;
  border-top-right-radius: 2px;
}

.wa-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 2px;
}

.wa-msg-time {
  font-size: 0.65rem;
  color: #94A3B8;
  display: block;
  text-align: right;
}

/* Chat Micro-animations */
.message-anim-1 {
  animation: fadeInMsg 0.6s ease forwards;
}

.message-anim-2 {
  opacity: 0;
  animation: fadeInMsg 0.6s ease forwards 0.7s;
}

.message-anim-3 {
  opacity: 0;
  animation: fadeInMsg 0.6s ease forwards 1.6s;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-typing-indicator {
  align-self: flex-start;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-flex;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.wa-typing-indicator span {
  width: 5px;
  height: 5px;
  background: #94A3B8;
  border-radius: 50%;
  animation: wa-typing 1.2s infinite ease-in-out;
}

.wa-typing-indicator span:nth-child(1) { animation-delay: 0s; }
.wa-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes wa-typing {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* WA Footer */
.wa-footer {
  padding: 8px 10px;
  background: #F0F2F5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-input-fake {
  flex: 1;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #94A3B8;
}

.wa-mic-btn {
  width: 30px;
  height: 30px;
  background: #00A884;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Trust Badge */
.floating-stat-card {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 480px) {
  .floating-stat-card {
    right: 10px;
    bottom: -10px;
    padding: 8px 12px;
  }
}

.stat-icon-wrap {
  width: 38px;
  height: 38px;
  background-color: var(--color-green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-title {
  font-size: 0.875rem;
  color: var(--color-navy-dark);
  display: block;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   8. PROBLEM SECTION
   -------------------------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 860px) {
  .problem-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
  }
}

.problem-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.card-icon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.alert-icon {
  color: #DC2626;
}

.search-icon {
  color: var(--color-navy-primary);
}

.wrong-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.wrong-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.975rem;
  color: var(--color-text-muted);
}

.wrong-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: bold;
}

.problem-highlight-box {
  margin-top: auto;
  padding: 14px 18px;
  background-color: #FEF2F2;
  border-left: 4px solid #EF4444;
  border-radius: var(--radius-sm);
  color: #991B1B;
  font-size: 1rem;
}

.search-queries-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.search-query-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  color: var(--color-navy-dark);
  font-weight: 500;
}

.conclusion-box {
  margin-top: auto;
  padding: 18px;
  background: #F0FDF4;
  border-left: 4px solid var(--color-green-action);
  border-radius: var(--radius-sm);
}

.conclusion-box .text-contrast {
  font-size: 1.05rem;
  color: var(--color-navy-dark);
  margin-bottom: 4px;
}

.conclusion-box .text-hiring {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-green-action-hover);
  margin-bottom: 4px;
}

.conclusion-box .text-elite {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. SOLUTION SECTION (VISUAL CENTRAL FLOW)
   -------------------------------------------------------------------------- */
.flow-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
  align-items: center;
}

@media (min-width: 900px) {
  .flow-container {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
  }
}

.flow-step {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-soft);
  color: var(--color-navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.flow-icon-circle.highlight-green {
  background-color: var(--color-green-soft);
  color: var(--color-green-action-hover);
}

.flow-icon-circle.highlight-blue {
  background-color: #EFF6FF;
  color: #1D4ED8;
}

.flow-step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-text-light);
}

.flow-step-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--color-navy-dark);
}

.flow-step-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--color-text-light);
  transform: rotate(90deg);
  margin: 4px 0;
}

@media (min-width: 900px) {
  .flow-arrow {
    transform: rotate(0deg);
    margin: 0;
  }
}

.solution-footer-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .solution-footer-points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.solution-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy-dark);
}

.badge-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-green-soft);
  color: var(--color-green-action-hover);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   10. HOW IT WORKS (3 STEPS)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.step-badge {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-green-action);
  background: var(--color-green-soft);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-name {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.step-body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.step-body-sub {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.step-callout {
  margin-top: auto;
  padding: 12px 14px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-navy-dark);
  line-height: 1.4;
}

.step-callout strong {
  display: block;
  margin-top: 4px;
  color: var(--color-navy-primary);
}

.step-action-tag {
  margin-top: auto;
  padding: 10px 14px;
  background: var(--color-green-soft);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-green-action-hover);
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. WHAT YOU ARE BUYING (SEÇÃO 5)
   -------------------------------------------------------------------------- */
.features-card-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.features-header-bar {
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-check-icon {
  width: 26px;
  height: 26px;
  background-color: var(--color-green-action);
  color: var(--color-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #F8FAFC;
}

/* --------------------------------------------------------------------------
   12. NO DANCING (SEÇÃO 6)
   -------------------------------------------------------------------------- */
.no-dance-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .no-dance-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.no-dance-box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

.no-dance-box-title {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--color-navy-dark);
}

.dont-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dont-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.975rem;
  color: var(--color-text-main);
}

.cross-icon {
  font-size: 0.9rem;
}

.do-box {
  background: linear-gradient(135deg, #0B192C 0%, #1E3E62 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-white);
}

.do-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.do-main-text {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-white);
}

.do-sub-text {
  font-size: 1.1rem;
  color: #34D399;
  font-weight: 600;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   13. FOR WHO SECTION (SEÇÃO 7)
   -------------------------------------------------------------------------- */
.for-who-container {
  max-width: 820px;
  margin: 0 auto;
}

.for-who-header {
  text-align: center;
  margin-bottom: 32px;
}

.for-who-subtitle {
  font-size: 1.25rem;
  color: var(--color-navy-primary);
  margin-top: 10px;
  font-weight: 600;
}

.for-who-content-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-subtle);
}

.for-who-text {
  font-size: 1.05rem;
  color: var(--color-text-main);
  margin-bottom: 18px;
  line-height: 1.65;
}

.for-who-tagline {
  margin-top: 24px;
  padding: 16px 20px;
  background-color: var(--color-green-soft);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.15rem;
  color: var(--color-green-action-hover);
}

/* --------------------------------------------------------------------------
   14. EXCLUSIVITY (SEÇÃO 8)
   -------------------------------------------------------------------------- */
.exclusivity-card {
  background: var(--color-bg-white);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .exclusivity-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
  }
}

.exclusivity-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: var(--color-navy-dark);
  color: var(--color-green-action);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exclusivity-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.exclusivity-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.exclusivity-text {
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
  line-height: 1.6;
}

.exclusivity-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   15. PRICING & PLANS (SEÇÃO 9)
   -------------------------------------------------------------------------- */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 860px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.featured-plan {
  border: 2px solid var(--color-green-action);
  box-shadow: var(--shadow-featured);
}

@media (min-width: 860px) {
  .featured-plan {
    transform: scale(1.03);
    z-index: 2;
  }
  .featured-plan:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-green-action);
  color: var(--color-text-white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.plan-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.plan-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.plan-indicator {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.plan-indicator strong {
  color: var(--color-navy-dark);
}

.plan-price-box {
  text-align: center;
  margin-bottom: 20px;
}

.plan-price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}

.plan-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-family-heading);
}

.plan-price-value .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.plan-price-value .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  line-height: 1;
}

.plan-breakdown {
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.breakdown-label {
  color: var(--color-text-muted);
}

.breakdown-value {
  font-weight: 600;
  color: var(--color-navy-dark);
}

.plan-deliverables {
  margin-bottom: 28px;
  flex: 1;
}

.plan-deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-main);
}

.plans-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.custom-plan-box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .custom-plan-box {
    flex-direction: row;
    padding: 32px;
  }
}

.custom-plan-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.custom-plan-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 520px;
}

.custom-plan-action {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .custom-plan-action {
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   16. WHY SERVIÇO ELITE (SEÇÃO 10)
   -------------------------------------------------------------------------- */
.why-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .why-card {
    padding: 60px 40px;
  }
}

.why-text-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.why-text {
  font-size: 1.1rem;
  color: var(--color-navy-dark);
  line-height: 1.65;
  margin-bottom: 24px;
}

.why-contrast-box {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 24px auto;
  display: inline-block;
  font-size: 1.15rem;
}

.why-contrast-box p {
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.why-contrast-box strong {
  color: var(--color-green-action-hover);
  font-size: 1.25rem;
}

.why-cta-wrapper {
  margin-top: 28px;
}

/* --------------------------------------------------------------------------
   17. FOUNDER SECTION (SEÇÃO 11)
   -------------------------------------------------------------------------- */
.founder-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-subtle);
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .founder-card {
    grid-template-columns: 240px 1fr;
    padding: 44px;
  }
}

.founder-avatar-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.avatar-placeholder {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #0B192C 0%, #1E3E62 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.founder-initials {
  font-family: var(--font-family-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-white);
  letter-spacing: -0.04em;
}

.experience-badge {
  position: absolute;
  bottom: -10px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 6px 14px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.experience-badge strong {
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  color: var(--color-green-action-hover);
  line-height: 1;
}

.experience-badge span {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.founder-title {
  font-size: 1.85rem;
  margin-bottom: 6px;
}

.founder-name {
  font-size: 1.25rem;
  color: var(--color-navy-primary);
  margin-bottom: 16px;
  font-weight: 500;
}

.founder-bio p {
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 12px;
  line-height: 1.6;
}

.founder-highlight {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-navy-dark);
  border-radius: var(--radius-sm);
}

.founder-highlight strong {
  color: var(--color-navy-dark);
  display: block;
}

.founder-highlight p {
  color: var(--color-navy-primary);
  font-weight: 600;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   18. FINAL CTA (SEÇÃO 12)
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 0%, #1E3E62 0%, #0B192C 100%);
}

.final-cta-title {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.9rem;
  }
}

.final-cta-question-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.final-lead {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 8px;
}

.final-core-question {
  font-size: 1.4rem;
  color: #FFFFFF;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .final-core-question {
    font-size: 1.7rem;
  }
}

.final-action-text {
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 32px;
}

.final-btn-wrap {
  margin-bottom: 20px;
}

.btn-final {
  font-size: 1.15rem;
  padding: 20px 36px;
}

.final-footer-note {
  font-size: 0.95rem;
  color: #94A3B8;
}

/* --------------------------------------------------------------------------
   19. FOOTER (SEÇÃO 13)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #07101C;
  color: #94A3B8;
  padding: 48px 0 28px 0;
  border-top: 1px solid #1E293B;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.logo-badge-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1E293B;
  color: var(--color-green-action);
  border-radius: 6px;
}

.footer-logo h3 {
  color: #FFFFFF;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.footer-slogan {
  font-size: 1.05rem;
  color: #F8FAFC;
  margin-bottom: 6px;
}

.footer-positioning {
  font-size: 0.875rem;
  color: #64748B;
}

.footer-divider {
  height: 1px;
  background: #1E293B;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-badge-clean {
  padding: 4px 10px;
  background: #1E293B;
  border-radius: var(--radius-full);
  color: #94A3B8;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   20. FLOATING MOBILE "VER PLANOS" CTA
   -------------------------------------------------------------------------- */
.floating-plan-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 99;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.floating-plan-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-floating-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background-color: var(--color-green-action);
  color: var(--color-text-white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4), 0 2px 6px rgba(11, 25, 44, 0.1);
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-floating-plan:active {
  transform: scale(0.98);
  background-color: var(--color-green-action-hover);
}

@media (max-width: 767px) {
  .floating-plan-bar {
    display: block;
  }
}

@media (min-width: 768px) {
  .floating-plan-bar {
    display: none !important;
  }
}
