/* ==========================================================================
   PAUSAÍ — MINIMERCADOS CORPORATIVOS
   Design System & Professional Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --heading-section-size: clamp(1.75rem, 3.2vw, 2.75rem);
  --heading-card-size: 1.25rem;
  /* Brand Palette */
  --primary-deep: #08261D;
  --primary: #0F3F31;
  --primary-light: #1A5745;
  --primary-subtle: #EAF3EE;
  
  --accent: #F26227;
  --accent-hover: #DC5017;
  --accent-light: #FFF2EB;
  --accent-glow: rgba(242, 98, 39, 0.25);

  --emerald-success: #10B981;
  --emerald-subtle: #ECFDF5;

  /* Neutrals */
  --bg-page: #F6F8F5;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F0F4F1;
  
  --text-main: #112820;
  --text-muted: #4B6358;
  --text-light: #7E978C;
  --text-inverse: #FFFFFF;

  --border-light: #DCE5E0;
  --border-focus: #0F3F31;

  /* Elevation */
  --shadow-sm: 0 2px 6px rgba(15, 63, 49, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 63, 49, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 63, 49, 0.12);
  --shadow-accent: 0 10px 25px rgba(242, 98, 39, 0.3);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
@media (hover: hover) and (pointer: fine) {
  html body,
  html body a[href],
  html body button[class],
  html body button,
  html body select,
  html body label {
    cursor: url('../assets/cursor-pausa.svg') 16 16, auto;
  }

  html body input,
  html body textarea {
    cursor: text;
  }
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--primary-deep);
  color: #D2E4DA;
  font-size: 0.84rem;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-bar strong {
  color: #FFFFFF;
}

.top-bar-badge {
  background: var(--accent);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

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

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(242, 98, 39, 0.28);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 98, 39, 0.38);
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg-card);
  color: var(--primary);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
}

/* ==========================================================================
   Hero Section & Main Banner Layout
   ========================================================================== */
.hero {
  padding: 36px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-top-badge-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-subtle);
  border: 1px solid rgba(15, 63, 49, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-main-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  margin-bottom: 24px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-main-banner:hover {
  box-shadow: 0 24px 48px -10px rgba(15, 63, 49, 0.16);
}

.hero-banner-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #08261D;
  display: block;
}

.hero-cta-banner-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.hero-tagline-title {
  margin: 0 0 16px;
  max-width: 30ch;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--primary-deep);
}

.hero-cta-banner-bar .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-cta-banner-bar .hero-actions .btn {
  width: 100%;
}

.hero-tagline-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 620px;
}

.hero-tagline-text strong {
  color: var(--primary-deep);
  font-weight: 700;
}

.hero-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.hero-feature-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-feature-pill:hover {
  border-color: rgba(15, 63, 49, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-pill-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.feature-pill-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.25;
}

.feature-pill-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.hero-stats-banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.float-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.float-text span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Trust Highlight Strip (4 Pillars)
   ========================================================================== */
.trust-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 38px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.trust-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-card);
}

.section-dark {
  background: var(--primary-deep);
  color: #FFFFFF;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: end;
  gap: 64px;
  text-align: left;
  margin: 0 0 36px;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-dark .section-tag {
  color: #FF9B70;
}

.section-title {
  font-size: var(--heading-section-size);
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 43ch;
  margin: 0;
}

.section-dark .section-desc {
  color: #C3D8CE;
}

/* ==========================================================================
   Interactive Space & Viability Simulator
   ========================================================================== */
.simulator-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.sim-controls {
  min-width: 0;
  padding: 44px;
}

.sim-result-card {
  min-width: 0;
}

.sim-result-card .btn {
  white-space: normal;
}

.sim-group {
  margin-bottom: 30px;
}

.sim-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.sim-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.sim-pill {
  border: 1.5px solid var(--border-light);
  background: var(--bg-page);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sim-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sim-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.sim-result-card {
  background: linear-gradient(145deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: #FFFFFF;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.sim-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.sim-model-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.sim-model-desc {
  font-size: 0.9rem;
  color: #CFE3D7;
  line-height: 1.45;
}

.sim-features-list {
  list-style: none;
  margin-bottom: 30px;
}

.sim-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #E2EFE7;
  margin-bottom: 10px;
}

.sim-features-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.sim-cost-tag {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-cost-tag span {
  font-size: 0.84rem;
  color: #B5D2C2;
}

.sim-cost-tag strong {
  font-size: 1.25rem;
  color: #FFFFFF;
}

/* ==========================================================================
   Decision Makers: RH vs Facilities
   ========================================================================== */
.dual-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.benefit-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 63, 49, 0.25);
}

.benefit-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.benefit-role-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--primary-subtle);
  color: var(--primary);
  flex-shrink: 0;
}

.benefit-role-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.benefit-card-header h3 {
  font-size: var(--heading-card-size);
  line-height: 1.35;
  font-weight: 800;
  color: var(--primary-deep);
}

.benefit-card-header span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.benefit-points {
  list-style: none;
}

.benefit-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.benefit-points li:last-child {
  margin-bottom: 0;
}

.point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald-subtle);
  color: var(--emerald-success);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-points p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefit-points strong {
  color: var(--primary-deep);
}

/* ==========================================================================
   Environments Showcase
   ========================================================================== */
@media (max-width: 768px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
}

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

.env-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.env-thumb-wrapper {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.env-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.env-card:hover .env-thumb-wrapper img {
  transform: scale(1.04);
}

.env-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(8, 38, 29, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.env-content {
  padding: 28px;
}

.env-content h3 {
  font-size: var(--heading-card-size);
  line-height: 1.35;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.env-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.env-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.env-pill {
  background: var(--bg-page);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   Mix de Produtos & Bandeiras de Pagamento
   ========================================================================== */
.mix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.mix-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.mix-card:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.mix-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.mix-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.mix-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.mix-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Payments Bar */
.payments-banner {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.payments-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.payments-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.payments-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pay-badge {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pay-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Process (3 Steps to Launch)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.9;
}

.step-card h3 {
  font-size: var(--heading-card-size);
  line-height: 1.35;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.92rem;
  color: #C7DDD2;
  line-height: 1.55;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(15, 63, 49, 0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-page);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 26px 24px;
}

/* ==========================================================================
   Contact / Lead Generation Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: var(--heading-section-size);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.contact-grid > *,
.form-row > * {
  min-width: 0;
}

.contact-info p {
  font-size: 1.0625rem;
  color: #C7DFD3;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-commitments {
  list-style: none;
  margin-bottom: 40px;
}

.contact-commitments li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.94rem;
  color: #E2EFE7;
  margin-bottom: 14px;
}

.contact-commitments svg {
  color: var(--emerald-success);
  flex-shrink: 0;
}

.contact-logo {
  height: 52px;
  width: auto;
  opacity: 0.9;
}

/* Contact Form Card */
.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h3 {
  font-size: var(--heading-card-size);
  line-height: 1.35;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-main);
  font-size: 0.94rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 63, 49, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-feedback.success {
  display: block;
  background: var(--emerald-subtle);
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #051A14;
  color: #8CA89C;
  padding: 64px 0 32px;
  font-size: 0.9rem;
  border-top: 3px solid var(--accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.55;
  font-size: 0.88rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-tooltip {
  background: #FFFFFF;
  color: var(--primary-deep);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  white-space: nowrap;
  animation: pulse-tooltip 3s infinite;
}

@keyframes pulse-tooltip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.whatsapp-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-circle svg {
  width: 32px;
  height: 32px;
}

.whatsapp-circle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.7;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-image-card img {
    height: 440px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simulator-box {
    grid-template-columns: 1fr;
  }

  .mix-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cta-banner-bar {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .hero-features-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .header-cta-group .btn {
    display: none;
  }

  .hero {
    padding: 24px 0 44px;
  }

  .hero-cta-banner-bar {
    padding: 20px;
    gap: 18px;
  }

  .hero-cta-banner-bar .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-cta-banner-bar .hero-actions .btn {
    width: 100%;
  }

  .hero-stats-banner {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 14px;
  }

  .dual-benefits-grid,
  .environments-grid {
    grid-template-columns: 1fr;
  }

  .payments-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sim-controls,
  .sim-result-card,
  .contact-form-card {
    padding: 28px 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mix-grid {
    grid-template-columns: 1fr;
  }
}
