/* ===== MaiisPay - Banco Digital Inteligente ===== */
:root {
  --color-bg: #0a0f1a;
  --color-surface: #111827;
  --color-surface-2: #1a2332;
  --color-primary: #0ea5e9;
  --color-primary-dark: #0284c7;
  --color-accent: #10b981;
  --color-accent-hover: #059669;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-border: rgba(148, 163, 184, 0.15);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo .logo-text { display: inline-block; }
.logo:has(.logo-img:not([style*="display: none"])) .logo-text { display: none; }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.logo-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-list a:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-primary.active {
  background: var(--color-primary-dark);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.5);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ----- Hero ----- */
.hero {
  padding: 8rem 0 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('img-fundo/secao1.png') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.82);
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.badge-stars {
  color: #fbbf24;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: transparent;
  animation: hero-float 4s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 280px;
  }
}

.hero-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.hero-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.hero-stats-mini {
  display: flex;
  gap: 1rem;
}

.stat-mini {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.stat-mini strong {
  display: block;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* ----- Section titles ----- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ----- Stats ----- */
.stats {
  padding: 4rem 0;
  position: relative;
  background: var(--color-surface) url('img-fundo/secao2.png') center/cover no-repeat;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.88);
  z-index: 0;
}

.stats .container { position: relative; z-index: 1; }

.stats .section-title {
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ----- Services ----- */
.services {
  padding: 5rem 0;
  position: relative;
  background: url('img-fundo/secao3.png') center/cover no-repeat;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.85);
  z-index: 0;
}

.services .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.privacy-block {
  background: linear-gradient(135deg, var(--color-surface-2) 0%, rgba(14, 165, 233, 0.08) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.privacy-block h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.privacy-block p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Platform / Screens ----- */
.platform {
  padding: 5rem 0;
  position: relative;
  background: var(--color-surface) url('img-fundo/secao4.png') center/cover no-repeat;
}

.platform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.88);
  z-index: 0;
}

.platform .container { position: relative; z-index: 1; }

.screens-wrap {
  overflow: hidden;
  padding: 1rem 0;
}

.screen-slots-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: screen-scroll-infinite 35s linear infinite;
}

.screen-slots-track:hover {
  animation-play-state: paused;
}

@keyframes screen-scroll-infinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.screen-slots {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
  padding: 0 1rem;
}

.screen-slot {
  flex: 0 0 220px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--color-border);
  background: var(--color-surface-2);
  box-shadow: var(--shadow);
}

.screen-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.screen-placeholder.placeholder {
  display: none;
}

.screen-slot .screen-placeholder:only-child,
.screen-slot img[style*="display: none"] + .screen-placeholder {
  display: flex;
}

/* ----- Automate ----- */
.automate {
  padding: 5rem 0;
  position: relative;
  background: url('img-fundo/secao5.png') center/cover no-repeat;
}

.automate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.85);
  z-index: 0;
}

.automate .container { position: relative; z-index: 1; }

.automate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.automate-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.automate-card:hover {
  border-color: rgba(14, 165, 233, 0.25);
}

.automate-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.automate-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.automate-card-featured {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, var(--color-surface-2) 100%);
  border-color: rgba(16, 185, 129, 0.25);
}

.security-badge {
  display: inline-block;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ----- Intelligence ----- */
.intelligence {
  padding: 5rem 0;
  position: relative;
  background: var(--color-surface) url('img-fundo/secao6.png') center/cover no-repeat;
}

.intelligence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.88);
  z-index: 0;
}

.intelligence .container { position: relative; z-index: 1; }

.intel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.intel-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}

.intel-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.intel-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.intel-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ----- Open account / Steps ----- */
.open-account {
  padding: 5rem 0;
  position: relative;
  background: url('img-fundo/secao7.png') center/cover no-repeat;
}

.open-account::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.85);
  z-index: 0;
}

.open-account .container { position: relative; z-index: 1; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.app-downloads {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ----- Support ----- */
.support {
  padding: 5rem 0;
  position: relative;
  background: var(--color-surface) url('img-fundo/secao8.png') center/cover no-repeat;
  border-top: 1px solid var(--color-border);
}

.support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.88);
  z-index: 0;
}

.support .container { position: relative; z-index: 1; }

.support-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.support-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.support-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.support-btn-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.support .btn-lg {
  display: inline-flex;
}

.newsletter {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.newsletter p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--color-text-muted);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ----- Footer ----- */
.footer {
  padding: 2.5rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav a,
.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-location,
.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.nav-list a.active {
  color: var(--color-primary);
}

/* ----- Páginas internas (Serviços, Sobre, Contato) ----- */
.page-hero {
  padding: 7rem 0 3rem;
  position: relative;
  background: var(--color-surface) url('img-fundo/secao9.png') center/cover no-repeat;
  border-bottom: 1px solid var(--color-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.88);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-with-image .page-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.page-hero-with-image .page-hero-content {
  min-width: 0;
}

.page-hero-with-image .page-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-hero-with-image .hero-image {
  animation: hero-float 4s ease-in-out infinite;
  max-width: 100%;
}

@media (max-width: 768px) {
  .page-hero-with-image .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .page-hero-with-image .page-hero-visual {
    order: -1;
    justify-content: center;
  }
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.page-hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.section-block {
  padding: 4rem 0;
  position: relative;
}

.section-block.alt-bg {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

/* Fundos opcionais para seções (classes nas páginas internas) */
.section-block.bg-secao10 {
  background: url('img-fundo/secao10.png') center/cover no-repeat;
}
.section-block.bg-secao10::before {
  content: ''; position: absolute; inset: 0; background: rgba(10, 15, 26, 0.88); z-index: 0;
}
.section-block.bg-secao10 .container { position: relative; z-index: 1; }

.section-block.bg-secao11,
.section-block.alt-bg.bg-secao11 {
  background: url('img-fundo/secao11.png') center/cover no-repeat;
}
.section-block.bg-secao11::before,
.section-block.alt-bg.bg-secao11::before {
  content: ''; position: absolute; inset: 0; background: rgba(17, 24, 39, 0.88); z-index: 0;
}
.section-block.bg-secao11 .container { position: relative; z-index: 1; }

.section-block.bg-secao12,
.cta-section.bg-secao12 {
  background: url('img-fundo/secao12.png') center/cover no-repeat !important;
}
.section-block.bg-secao12::before,
.cta-section.bg-secao12::before {
  content: ''; position: absolute; inset: 0; background: rgba(10, 15, 26, 0.82); z-index: 0;
}
.section-block.bg-secao12 .container,
.cta-section.bg-secao12 .container { position: relative; z-index: 1; }

.section-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-flex.reverse {
  direction: rtl;
}

.section-flex.reverse > * {
  direction: ltr;
}

.section-content {
  max-width: 560px;
}

.section-content .section-title.text-left,
.section-subtitle.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.feature-list {
  margin: 1.5rem 0;
}

.feature-item {
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.feature-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.bullet-list {
  list-style: none;
  margin: 1rem 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.bullet-list.centered {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.mt { margin-top: 2rem; }

.h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
  color: var(--color-text);
}

/* Solutions grid (Serviços) */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.solution-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.solution-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  object-fit: cover;
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.solution-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.mini-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.mini-list li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.mini-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(14, 165, 233, 0.25);
}

.pricing-card.popular {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.badge-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.pricing-price .currency { font-size: 1.25rem; }
.pricing-price .period { font-size: 1rem; font-weight: 400; color: var(--color-text-muted); }

.pricing-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* CTA section com background */
.cta-section {
  background-size: cover;
  background-position: center;
  background-color: var(--color-surface-2);
}

.cta-section .section-title,
.cta-section .section-subtitle,
.cta-section .bullet-list li {
  color: var(--color-text);
}

.cta-section .section-subtitle { color: var(--color-text-muted); }

/* About - stats */
.about-stats .stat-card { text-align: left; }
.stat-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* About - values e team */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.value-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  object-fit: cover;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 1rem 0 0.25rem;
  color: var(--color-text);
}

.team-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-bottom: 1rem;
}

/* Testimonial */
.testimonial-section { padding: 4rem 0; }
.testimonial {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  border: none;
  padding: 0;
}

.testimonial p { margin-bottom: 1.5rem; }
.testimonial footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial footer span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Grid de depoimentos - Empreendedores que confiam */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 2.5rem;
  text-align: left;
}

.testimonial-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 0;
  font-style: normal;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.testimonial-card footer span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Conteúdo legal (Política de Privacidade, etc.) */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-block p {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-block ul {
  margin: 0.5rem 0 1rem;
}

.legal-block a {
  color: var(--color-primary);
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

/* Contact */
.hero-list { margin-top: 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: block;
}

.contact-card:hover {
  border-color: var(--color-primary);
}

.contact-card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-card a { color: var(--color-primary); text-decoration: none; }

.contact-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-images img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  object-fit: cover;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto;
}

.contact-cta-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.contact-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.contact-cta-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ----- Responsive (páginas internas) ----- */
@media (max-width: 1024px) {
  .section-flex {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .section-flex.reverse { direction: ltr; }
  .section-media { order: -1; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-images { grid-template-columns: 1fr; }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .automate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intel-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.open .nav-list {
    display: flex;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .automate-grid {
    grid-template-columns: 1fr;
  }

  .automate-card-featured {
    grid-column: 1;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .screen-slot {
    flex: 0 0 180px;
    height: 340px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }

  .nav-list li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: block;
    padding: 1rem;
  }

  .nav.open .nav-list {
    display: flex;
  }
}
