/* InfoComment - Google Workspace Style Sheets */

/* Custom Reset & Base variables */
:root {
  /* Google Colors */
  --google-blue: #1a73e8;
  --google-blue-hover: #1557b0;
  --google-blue-light: #e8f0fe;
  
  --google-red: #ea4335;
  --google-red-hover: #c5221f;
  --google-red-light: #fce8e6;
  
  --google-yellow: #fbbc05;
  --google-yellow-hover: #f29900;
  --google-yellow-light: #fef7e0;
  
  --google-green: #34a853;
  --google-green-hover: #137333;
  --google-green-light: #e6f4ea;

  /* Neutral palette */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f4;
  --gray-200: #e8eaed;
  --gray-300: #dadce0;
  --gray-400: #bdc1c6;
  --gray-600: #5f6368;
  --gray-700: #3c4043;
  --gray-800: #202124;
  
  /* Text and shadows */
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-light: #80868b;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  --shadow-md: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  --shadow-lg: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Helpers & Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-red { color: var(--google-red); }
.text-blue { color: var(--google-blue); }
.text-green { color: var(--google-green); }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 32px; }
.font-medium { font-weight: 500; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  gap: 8px;
  outline: none;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 4px;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 15px;
  border-radius: 24px;
}

.btn-primary {
  background-color: var(--google-blue);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--google-blue-hover);
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--google-blue);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  background-color: var(--google-blue-light);
  border-color: var(--google-blue);
}

.btn-white {
  background-color: var(--white);
  color: var(--google-blue);
  border-color: transparent;
}
.btn-white:hover {
  background-color: var(--gray-50);
  box-shadow: var(--shadow-sm);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-info { background-color: var(--google-blue-light); color: var(--google-blue); }
.badge-warning { background-color: var(--google-yellow-light); color: var(--google-yellow-hover); }
.badge-error { background-color: var(--google-red-light); color: var(--google-red); }

/* Progress bar */
.google-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--google-blue);
  z-index: 1000;
  transition: width 0.3s ease;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 90;
  height: 64px;
}

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

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

.logo-icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 24px;
  height: 24px;
}

.logo-icon .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.logo-icon .blue { background-color: var(--google-blue); }
.logo-icon .red { background-color: var(--google-red); }
.logo-icon .yellow { background-color: var(--google-yellow); }
.logo-icon .green { background-color: var(--google-green); }

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--google-blue);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--google-blue);
}

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray-600);
  cursor: pointer;
}

/* Mobile Nav Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px;
  z-index: 80;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 12px 0;
}

.mobile-nav-divider {
  height: 1px;
  background-color: var(--gray-200);
  margin: 16px 0;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--google-blue-light) 0%, transparent 60%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--google-blue-light);
  color: var(--google-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--google-blue);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--google-blue);
  background: linear-gradient(120deg, var(--google-blue-light) 0%, var(--google-blue-light) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-social-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.hero-social-icons {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-social-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-yt {
  color: var(--google-red);
}

/* Hero visual card mock */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(60,64,67,0.1), 0 8px 10px -6px rgba(60,64,67,0.1);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-card-header {
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-dots {
  display: flex;
  gap: 6px;
}

.header-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray-300);
}

.header-title-mock {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-card-body {
  padding: 24px;
}

.mock-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mock-stat-card {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.mock-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.mock-stat-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--google-blue);
}

.mock-bar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-bar-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
}

.mock-bar-bg {
  height: 8px;
  background-color: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 4px;
}
.mock-bar-fill.blue { background-color: var(--google-blue); }
.mock-bar-fill.green { background-color: var(--google-green); }
.mock-bar-fill.red { background-color: var(--google-red); }

/* Section general headers */
.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Interactive Simulator Section */
.simulador-section {
  padding: 80px 0;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.simulador-box {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.simulador-input-bar {
  display: flex;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 28px;
  padding: 6px 6px 6px 18px;
  align-items: center;
  gap: 12px;
}

.simulador-input-bar:focus-within {
  border-color: var(--google-blue);
  box-shadow: 0 0 0 2px rgba(26,115,232,0.15);
  background-color: var(--white);
}

.input-prefix {
  font-size: 18px;
}

.simulador-input-bar input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  height: 40px;
}

.quick-examples {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.example-chip {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: var(--font-family);
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

.example-chip:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-400);
}

.example-chip.active {
  background-color: var(--google-blue-light);
  border-color: var(--google-blue);
  color: var(--google-blue);
  font-weight: 500;
}

/* Spinner and Simulator Loading */
.simulador-loading {
  text-align: center;
  padding: 48px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--google-blue);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s infinite linear;
}

.loading-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-800);
}

.loading-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Simulator Dashboard Mock */
.simulador-result {
  margin-top: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.video-info-header {
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.video-thumb-mock {
  width: 110px;
  height: 62px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.video-details {
  flex: 1;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.video-channel {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-meta-tags {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}

.meta-tag {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-badge {
  background-color: var(--google-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.dashboard-nav {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  background-color: var(--white);
  overflow-x: auto;
}

.dash-nav-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 20px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.dash-nav-btn:hover {
  background-color: var(--gray-50);
  color: var(--text-primary);
}

.dash-nav-btn.active {
  border-bottom-color: var(--google-blue);
  color: var(--google-blue);
  font-weight: 600;
}

.dashboard-content {
  padding: 24px;
}

.dash-tab-pane {
  display: none;
}

.dash-tab-pane.active {
  display: block;
}

.info-card {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.card-inner-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-inner-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.recommendations-list li {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.recommendations-list li i {
  margin-top: 3px;
  font-size: 14px;
}

/* Mock Tables style */
.table-container {
  overflow-x: auto;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.mock-table th {
  background-color: var(--gray-50);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.mock-table td {
  padding: 14px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.mock-table tbody tr:hover {
  background-color: var(--gray-50);
}

/* Idea Cards inside mock tab */
.idea-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.idea-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-300);
}

.idea-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.idea-format {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.idea-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.idea-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Sentiment mock tab style */
.sentiment-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.sentiment-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 6px;
}

.sentiment-progress {
  height: 10px;
  background-color: var(--gray-100);
  border-radius: 5px;
  overflow: hidden;
}

.sentiment-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.5s ease-out;
}
.sentiment-fill.green { background-color: var(--google-green); }
.sentiment-fill.yellow { background-color: var(--google-yellow); }
.sentiment-fill.red { background-color: var(--google-red); }

/* Features Grid Section */
.features-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border-color: var(--gray-300);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.feature-icon.blue { background-color: var(--google-blue-light); color: var(--google-blue); }
.feature-icon.green { background-color: var(--google-green-light); color: var(--google-green); }
.feature-icon.red { background-color: var(--google-red-light); color: var(--google-red); }

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: 2px solid var(--google-blue);
  color: var(--google-blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

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

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.pricing-card.popular {
  border: 2px solid var(--google-blue);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--google-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.plan-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.plan-price .currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
  margin-right: 4px;
}

.plan-price .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-800);
}

.plan-price .period {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-features {
  margin-bottom: 32px;
}

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

.pricing-features li {
  font-size: 13.5px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: var(--gray-400);
}

.pricing-notice {
  font-size: 13px;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--gray-100);
}

.faq-question i {
  color: var(--google-blue);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--white);
  border-top: 1px solid transparent;
}

.faq-answer p {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  border-top-color: var(--gray-200);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA Banner Section */
.cta-banner {
  background-color: var(--google-blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-banner-desc {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 60px 0 0;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand-desc {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-link-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-link-group a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-link-group a:hover {
  color: var(--google-blue);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-light);
}

/* Benefits Section (Dor vs Solução) */
.benefits-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--gray-200);
}
.benefit-card {
  display: flex;
  gap: 20px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.benefit-icon-wrapper.blue { background-color: var(--google-blue-light); color: var(--google-blue); }
.benefit-icon-wrapper.red { background-color: var(--google-red-light); color: var(--google-red); }
.benefit-icon-wrapper.yellow { background-color: var(--google-yellow-light); color: var(--google-yellow-hover); }
.benefit-icon-wrapper.green { background-color: var(--google-green-light); color: var(--google-green); }
.benefit-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.benefit-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Delivery Section (Muito além de sentimentos) */
.delivery-section {
  padding: 100px 0;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.delivery-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.delivery-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.delivery-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Audience Section (Para quem é) */
.audience-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--gray-200);
}
.audience-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.audience-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.audience-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.audience-tag.blue { background-color: var(--google-blue-light); color: var(--google-blue); }
.audience-tag.green { background-color: var(--google-green-light); color: var(--google-green); }
.audience-tag.yellow { background-color: var(--google-yellow-light); color: var(--google-yellow-hover); }
.audience-tag.red { background-color: var(--google-red-light); color: var(--google-red); }
.audience-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.audience-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Extra UI microcopy */
.hero-ctas-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.hero-microcopy {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.cta-banner-microcopy {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 8px;
  font-weight: 500;
}

/* Simulator Footer & Extra features */
.simulador-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  margin-top: 24px;
}
.simulador-footer-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.simulador-extra-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.simulador-extra-features span {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.simulador-extra-features span i {
  color: var(--google-blue);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

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

/* Responsive Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .badge-new {
    margin: 0 auto 20px;
  }

  .hero-ctas {
    justify-content: center;
  }
  
  .hero-social-icons {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .pricing-card.popular {
    transform: scale(1);
    margin: 12px 0;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .sentiment-box {
    grid-template-columns: 1fr;
  }
}

