/* inOpus Escrevai Landing Page CSS Stylesheet */

/* Fonts & Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #f4fcf7; /* Menta suave */
  --bg-dark: #0b1a13; /* Fundo escuro para contrastes premium */
  --panel-bg: rgba(255, 255, 255, 0.72); /* Vidro translúcido */
  --panel-border: rgba(16, 185, 129, 0.12); /* Bordas verdes sutis */
  --text-primary: #1f2937; /* Cinza escuro */
  --text-secondary: #4b5563; /* Cinza médio */
  --text-muted: #8b96a5; /* Cinza fraco */
  --accent-primary: #10b981; /* Verde Esmeralda */
  --accent-secondary: #059669; /* Verde escuro */
  --accent-glow: rgba(16, 185, 129, 0.15);
  --accent-success: #10b981;
  --accent-light: #e6fcf0; /* Verde menta claro */
  --white: #ffffff;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --border-radius-xl: 32px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 10px;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background animated decorative blobs */
.background-decorations {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 28s infinite alternate ease-in-out;
}

.blob-1 {
  width: 550px;
  height: 550px;
  background: #a7f3d0; /* Menta claro */
  top: -10%;
  left: -5%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: #dcfce7; /* Verde suave */
  bottom: -10%;
  right: -5%;
  animation-duration: 38s;
  animation-delay: -7s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: #bae6fd; /* Azul suave para contraste refrescante */
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
  animation-duration: 45s;
  animation-delay: -12s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -50px) scale(1.08); }
  100% { transform: translate(-50px, 70px) scale(0.92); }
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, #064e3b 20%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glassmorphism utility class */
.glass {
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--panel-border);
  box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.05);
}

.dark-glass {
  background: rgba(11, 26, 19, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  background: rgba(244, 252, 247, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.03);
  padding: 0.88rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  position: relative;
}

.logo-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #064e3b 30%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtext {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.65;
  letter-spacing: 0.5px;
  margin-left: 0.2rem;
  -webkit-text-fill-color: var(--text-secondary);
  display: inline-block;
  vertical-align: middle;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.05);
  border-color: var(--accent-primary);
  color: var(--accent-secondary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--border-radius-md);
}

.btn-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Sections Styling */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--accent-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  color: #064e3b;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Hero Section */
.hero-section {
  padding-top: 10.5rem;
  padding-bottom: 6rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--accent-secondary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: pulse-ring-glow 3s infinite;
}

.hero-tag svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

@keyframes pulse-ring-glow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: #064e3b;
  margin-bottom: 1.5rem;
}

.hero-title span {
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.guarantee-item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent-primary);
}

/* Interactive Live Showcase */
.showcase-section {
  padding: 4rem 0;
}

.showcase-dashboard {
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(6, 78, 59, 0.08);
  position: relative;
}

.showcase-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  padding-bottom: 1rem;
}

.showcase-nav-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.05);
  padding: 4px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(16, 185, 129, 0.06);
}

.showcase-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: calc(var(--border-radius-md) - 4px);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.showcase-tab-btn:hover {
  color: var(--accent-secondary);
}

.showcase-tab-btn.active {
  background: var(--white);
  color: var(--accent-secondary);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.06);
}

.showcase-window-controls {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
}

.window-dot.red { background: #fca5a5; }
.window-dot.yellow { background: #fef08a; }
.window-dot.green { background: #86efac; }

/* Dynamic Before / After Layout */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.showcase-panel {
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.45);
}

.showcase-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 0.75rem;
}

.showcase-panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #064e3b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.62rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.badge-raw {
  background: rgba(75, 85, 99, 0.08);
  color: var(--text-secondary);
}

.badge-structured {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-secondary);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Audio simulation player */
.demo-player-box {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
  transition: var(--transition-smooth);
}

.demo-play-btn:hover {
  transform: scale(1.05);
}

.demo-play-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.demo-player-waveform {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
}

.wave-bar {
  flex-grow: 1;
  background: rgba(16, 185, 129, 0.2);
  height: 30%;
  border-radius: 10px;
  transition: height 0.1s ease;
}

.wave-bar:nth-child(even) { height: 60%; }
.wave-bar:nth-child(3n) { height: 40%; }
.wave-bar:nth-child(4n) { height: 80%; }
.wave-bar:nth-child(5n) { height: 50%; }

.demo-player-box.playing .wave-bar {
  animation: wave-bounce 1.2s infinite ease-in-out alternate;
  background: var(--accent-primary);
}

.demo-player-box.playing .wave-bar:nth-child(even) { animation-delay: 0.15s; }
.demo-player-box.playing .wave-bar:nth-child(3n) { animation-delay: 0.3s; }
.demo-player-box.playing .wave-bar:nth-child(4n) { animation-delay: 0.45s; }
.demo-player-box.playing .wave-bar:nth-child(5n) { animation-delay: 0.6s; }

@keyframes wave-bounce {
  0% { height: 15%; }
  100% { height: 100%; }
}

.demo-player-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.showcase-content-area {
  flex-grow: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-line;
  overflow-y: auto;
  max-height: 280px;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.showcase-content-area.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.showcase-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(16, 185, 129, 0.1);
  border-top-color: var(--accent-primary);
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.showcase-content-area.fade-in {
  animation: text-reveal 0.5s ease forwards;
}

@keyframes text-reveal {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.soap-title {
  color: var(--accent-secondary);
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  padding-bottom: 2px;
}

.soap-text {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.showcase-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 0.75rem;
}

.showcase-action-btn {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.12);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.38rem 0.75rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  transition: var(--transition-smooth);
}

.showcase-action-btn:hover {
  background: rgba(16, 185, 129, 0.04);
  color: var(--accent-secondary);
  border-color: var(--accent-primary);
}

.showcase-action-btn svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* Key Benefits Grid */
.benefits-section {
  padding: 6rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.08);
}

.benefit-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-box {
  background: var(--accent-primary);
  color: var(--white);
  transform: scale(1.05);
}

.benefit-icon-box svg {
  width: 1.8rem;
  height: 1.8rem;
}

.benefit-title {
  font-size: 1.25rem;
  color: #064e3b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.benefit-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.03) 50%, transparent 100%);
  padding: 6rem 0;
}

.roadmap-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-top: 1rem;
}

/* Line connecting steps */
.roadmap-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.4) 50%, rgba(16, 185, 129, 0.05) 100%);
  z-index: 1;
}

.roadmap-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-secondary);
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.05);
  transition: var(--transition-smooth);
}

.roadmap-step:hover .step-number-box {
  transform: scale(1.08);
  border-color: var(--accent-primary);
  background: var(--accent-light);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.12);
}

.step-title {
  font-size: 1.2rem;
  color: #064e3b;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.plan-glow {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  left: 0;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.plan-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
}

.plan-price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 0.25rem;
}

.plan-price .amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.plan-price .period {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.plan-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.plan-features li svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.premium-feature {
  font-weight: 600;
  color: #064e3b;
}

.plan-features li.premium-feature svg {
  color: #059669;
}

.pricing-card-recommended {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(180deg, #ffffff 0%, rgba(16, 185, 129, 0.02) 100%);
  box-shadow: 0 20px 45px -15px rgba(16, 185, 129, 0.15);
}

.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-secondary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
}

.pricing-card .btn-cta {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #064e3b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card.open {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.03);
}

.faq-card.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-card.open .faq-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* Call to Action Footer Panel */
.cta-banner-section {
  padding: 4rem 0;
}

.cta-banner {
  border-radius: var(--border-radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(6, 78, 59, 0.3);
  background: linear-gradient(135deg, #0b2216 0%, #064e3b 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cta-banner-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.25rem auto;
  position: relative;
  z-index: 2;
}

#cta-banner-btn {
  position: relative;
  z-index: 2;
}

/* Footer Styling */
.main-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 0 2.5rem 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-column .logo-text {
  background: linear-gradient(135deg, #a7f3d0 30%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-column .logo-subtext {
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: #34d399;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.8rem;
}

.footer-lgpd {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  text-align: right;
}

/* Responsive Breakpoints (Mobile First) */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
  .section-title {
    font-size: 1.88rem;
  }
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.88rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .header-nav {
    padding: 0.88rem 0;
  }
  .nav-menu {
    display: none; /* Simplification for small screens, a true drawer is optimal but link in header/footer suffices */
  }
  .showcase-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .showcase-panel {
    min-height: auto;
    max-height: 350px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .roadmap-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .roadmap-container::before {
    display: none;
  }
  .pricing-wrapper {
    flex-direction: column;
    max-width: 400px;
  }
  .pricing-card {
    padding: 2.25rem 1.75rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-lgpd {
    text-align: center;
  }
}
