:root {
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-accent: #3fca52;
  --color-accent-light: rgba(63, 202, 82, 0.1);
  --color-accent-dark: #35b346;
  --color-background: #fafbfc;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-muted: #e9eaed;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
  --shadow-accent: 0 10px 24px rgba(63, 202, 82, 0.2);
  --shadow-accent-lg: 0 16px 32px rgba(63, 202, 82, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #ffffff 0%, var(--color-background) 100%);
  background-attachment: fixed;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* Animações suaves de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.section-header,
.hero-text {
  animation: fadeInUp 0.6s ease-out;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-smooth);
}

.site-header:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand-logo {
  height: 46px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-menu-toggle-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  box-shadow: var(--shadow-accent-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  background: transparent !important;
}

.hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-color: transparent;
}

.full-width {
  width: 100%;
}

.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  background-image: url('fundo.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: #ffffff;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  max-width: 36rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-weight: 400;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--color-accent-light);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-highlights li::before {
  content: "●";
  color: var(--color-accent);
  margin-right: 0.4rem;
  font-size: 0.7rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(63, 202, 82, 0.1);
  background: var(--color-surface);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(63, 202, 82, 0.15);
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-xl);
  padding: 2rem 2.2rem 2.2rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(63, 202, 82, 0.15);
  border: 1px solid rgba(63, 202, 82, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all var(--transition-smooth);
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(63, 202, 82, 0.25);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--color-text);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.hero-card li + li {
  margin-top: 0.4rem;
}

.hero-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  margin-right: 0.45rem;
}

.section {
  padding: 5.625rem 0; /* +25% de 4.5rem */
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* Seção de Screenshots - Carrossel */

.carousel-container {
  margin-top: 2.5rem;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  background: var(--color-surface);
  transition: box-shadow var(--transition-smooth);
}

.carousel-wrapper:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.carousel-slide:first-child {
  opacity: 1;
}

.carousel-slide.active {
  opacity: 1;
}

.screenshot-wrapper-large {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-image-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide-caption {
  padding: 1.5rem 2rem;
  text-align: center !important;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide-caption h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: var(--color-text);
  text-align: center !important;
  width: 100%;
}

.slide-caption p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center !important;
  width: 100%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(63, 202, 82, 0.3);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 5px;
}

.section-muted {
  background-color: var(--color-muted);
}

#para-quem {
  background-color: var(--color-muted);
}

#para-quem .section-header {
  text-align: center;
  max-width: 100%;
  margin-bottom: 3rem;
}

#para-quem .section-header h2 {
  text-align: center;
}

#para-quem .para-quem-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: left;
  max-width: 45rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.375rem); /* 54px = 3.375rem */
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.section-intro {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
}

/* Parágrafos com largura máxima para melhor legibilidade */
.section-intro p,
.section p:not(.section-intro) {
  max-width: 800px;
}

/* Seção "O que o Verde SL resolve na prática" */
.resolve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.resolve-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.resolve-item:hover {
  background: var(--color-accent-light);
}

.resolve-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.resolve-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.resolve-text strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.resolve-text span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.resolve-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Seção "Para quem é o Verde SL" */
#para-quem {
  background: var(--color-muted);
  width: 100%;
}

#para-quem .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.para-quem-table-wrapper {
  margin-top: 3rem;
  overflow-x: auto;
}

.para-quem-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.para-quem-table thead {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #ffffff;
}

.para-quem-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.para-quem-table td {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text);
}

.para-quem-table tbody tr:hover {
  background: var(--color-accent-light);
}

.para-quem-table tbody tr:last-child td {
  border-bottom: none;
}

/* Seção de Autoridade */
.autoridade-content {
  max-width: 800px;
  margin: 2rem auto 0;
}

.autoridade-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.autoridade-content p:last-child {
  margin-bottom: 0;
}

.autoridade-content strong {
  color: var(--color-accent);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem 2rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.feature-card-with-image {
  padding: 0;
  overflow: hidden;
}

.feature-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.feature-card-with-image:hover .feature-image {
  transform: scale(1.05);
}

.feature-card-with-image h3,
.feature-card-with-image p,
.feature-card-with-image ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.feature-card-with-image h3 {
  padding-top: 1.4rem;
  margin-top: 0;
}

.feature-card-with-image ul {
  padding-bottom: 1.5rem;
}

.check-list,
.dot-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.check-list li + li,
.dot-list li + li {
  margin-top: 0.35rem;
}

.check-list li::before {
  content: "✓";
  color: var(--color-accent);
  margin-right: 0.45rem;
  font-size: 0.8rem;
}

.dot-list li::before {
  content: "•";
  color: var(--color-accent);
  margin-right: 0.35rem;
}

/* Features Highlight Grid - Cards destacados para funcionalidades principais */
.features-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-highlight-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.feature-highlight-card:hover::before {
  opacity: 1;
}

.feature-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-light), rgba(63, 202, 82, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.feature-highlight-icon svg {
  width: 28px;
  height: 28px;
}

.feature-highlight-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.3;
}

.feature-highlight-card > p {
  margin: 0 0 1.25rem 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.feature-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.feature-highlight-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text);
  line-height: 1.5;
}

.feature-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
}

.feature-highlight-list li + li {
  border-top: 1px solid var(--color-border-light);
}

.persona-card .quote {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: 0.7rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
}

.pricing-card-featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent-lg);
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(63, 202, 82, 0.08) 0%, var(--color-surface) 100%);
  border-width: 2px;
}

.pricing-card-featured::before {
  opacity: 1;
}

.pricing-card .badge {
  position: absolute;
  top: -0.9rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: 999px;
  border: none;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: var(--shadow-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.2rem 0;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.7rem;
}

.pricing-custom {
  margin-top: 3rem;
  padding: 1.5rem 0 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(63, 202, 82, 0.12) 0%, rgba(63, 202, 82, 0.06) 100%);
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-accent-lg);
  position: relative;
  overflow: visible;
  transition: all var(--transition-smooth);
}

.pricing-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark), var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.pricing-custom:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent-lg), 0 0 30px rgba(63, 202, 82, 0.2);
  border-color: var(--color-accent-dark);
}

.pricing-custom-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-accent);
  margin: -1.5rem auto 1.5rem;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.pricing-custom-badge svg {
  width: 18px;
  height: 18px;
}

.pricing-custom-content {
  padding: 2rem 2.5rem 2.5rem;
  text-align: center;
}

.pricing-custom-content h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.pricing-custom-content > p {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-custom-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-custom-benefits li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-custom-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(63, 202, 82, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.pricing-custom-content .btn {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-smooth);
}

.pricing-custom-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
}

/* ============================================
   RESULTADOS MENSURÁVEIS
   ============================================ */
/* Sistema Verde SL Section */
.sistema-resumo {
  margin-top: 3rem;
}

.sistema-content {
  max-width: 900px;
  margin: 0 auto;
}

.sistema-text {
  margin-bottom: 3rem;
}

.sistema-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.sistema-text p:last-child {
  margin-bottom: 0;
}

.sistema-text strong {
  color: var(--color-accent);
  font-weight: 600;
}

.sistema-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.sistema-highlight-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.sistema-highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.sistema-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-light), rgba(63, 202, 82, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.sistema-highlight-icon svg {
  width: 24px;
  height: 24px;
}

.sistema-highlight-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.sistema-highlight-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.result-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.result-card:hover::before {
  opacity: 1;
}

.result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-light), rgba(63, 202, 82, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.result-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}

.result-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.result-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   DIFERENCIAIS COMPETITIVOS
   ============================================ */
.comparison-container {
  margin-top: 3rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.comparison-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--color-border-light);
  transition: all var(--transition-smooth);
  position: relative;
}

.comparison-bad {
  opacity: 0.85;
}

.comparison-good {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent-lg);
  transform: scale(1.02);
  background: linear-gradient(135deg, rgba(63, 202, 82, 0.05) 0%, var(--color-surface) 100%);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border-light);
}

.comparison-good .comparison-header {
  border-bottom-color: var(--color-accent);
}

.comparison-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-icon-bad {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.comparison-icon-good {
  background: linear-gradient(135deg, var(--color-accent-light), rgba(63, 202, 82, 0.15));
  color: var(--color-accent);
}

.comparison-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
}

.comparison-badge {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-border-light);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-negative {
  color: var(--color-text-muted);
}

.comparison-positive {
  color: var(--color-text);
  font-weight: 500;
}

/* ============================================
   GARANTIAS / RISCO ZERO
   ============================================ */
.guarantee-section {
  background: linear-gradient(135deg, rgba(63, 202, 82, 0.08) 0%, rgba(63, 202, 82, 0.03) 100%);
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.guarantee-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark), var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-accent);
}

.guarantee-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.guarantee-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.guarantee-item {
  text-align: center;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-light), rgba(63, 202, 82, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.guarantee-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.guarantee-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.guarantee-cta {
  margin-top: 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.guarantee-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* FAQ Container - Layout com categorias */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.faq-category {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item - Acordeão */
.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all var(--transition-fast);
  position: relative;
}

.faq-question:hover {
  background: rgba(63, 202, 82, 0.03);
}

.faq-question[aria-expanded="true"] {
  background: rgba(63, 202, 82, 0.05);
  color: var(--color-accent-dark);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent-light), rgba(63, 202, 82, 0.15));
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
}

.faq-question span:not(.faq-icon) {
  flex: 1;
  line-height: 1.5;
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition-smooth), color var(--transition-fast);
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  padding-top: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-cta-final {
  background: linear-gradient(135deg, rgba(63, 202, 82, 0.06) 0%, rgba(63, 202, 82, 0.02) 100%);
  border-top: 1px solid rgba(63, 202, 82, 0.15);
  border-bottom: 1px solid rgba(63, 202, 82, 0.15);
}

.cta-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.95rem;
}

.contact-list li + li {
  margin-top: 0.4rem;
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 2rem 2.2rem 2.2rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition-smooth);
}

.contact-form:hover {
  box-shadow: var(--shadow-xl);
}

/* Seção WhatsApp CTA */
.whatsapp-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.whatsapp-cta-content {
  text-align: center;
  padding: 3rem 2rem;
}

.whatsapp-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-cta-content .section-header {
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.whatsapp-cta-content .section-header h2 {
  margin-bottom: 1rem;
}

.whatsapp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  text-align: left;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 211, 102, 0.2);
}

.benefit-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-item h4 {
  margin: 0 0 0.4rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}

.benefit-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.whatsapp-cta-button {
  margin: 2.5rem 0;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

.contact-alternatives {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
}

.contact-note {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-list-minimal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.contact-list-minimal li {
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-list-minimal a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-list-minimal a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: var(--color-muted);
  color: var(--color-text);
  transition: all var(--transition-smooth);
}

.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background-color: var(--color-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.24a.75.75 0 01-1.06 0L5.25 8.29a.75.75 0 01-.02-1.08z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-light);
  background: var(--color-surface);
  transform: translateY(-1px);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.form-success {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #065f46;
  background: #ecfdf5;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-success[hidden] {
  display: none !important;
}

.form-success::before {
  content: "✓";
  font-weight: 700;
  color: #059669;
  margin-top: 0.05rem;
}

.form-error {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #b91c1c;
}

.whatsapp-secondary {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.whatsapp-secondary-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.whatsapp-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.whatsapp-secondary-text {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.4rem 1.5rem 1.6rem;
}

.footer-logo {
  height: 36px;
  margin-bottom: 0.4rem;
}

.footer-small {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-columns {
  display: flex;
  gap: 2.5rem;
}

.footer-columns h3 {
  margin-top: 0;
  font-size: 0.9rem;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.footer-columns li + li {
  margin-top: 0.25rem;
}

.footer-columns a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 0.7rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    order: 2;
    justify-content: center;
    margin-top: 2rem;
  }
  .hero-text {
    order: 1;
  }
  
  .hero-image-wrapper {
    max-width: 100%;
  }
  
  .screenshot-wrapper-large {
    height: 400px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-final-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .header-content {
    flex-wrap: wrap;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-nav.mobile-nav-open {
    transform: translateX(0);
  }
  .main-nav a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border-light);
  }
  .main-nav a::after {
    display: none;
  }
  .main-nav a:hover {
    color: var(--color-accent);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 2.6rem 0;
  }
  .pricing-grid,
  .grid-3,
  .grid-2,
  .features-highlight-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-container {
    gap: 2rem;
  }
  
  .faq-category-title {
    font-size: 1.2rem;
  }
  
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .faq-icon {
    width: 36px;
    height: 36px;
  }
  
  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
  
  .results-grid,
  .comparison-grid,
  .guarantee-grid,
  .sistema-highlights,
  .resolve-grid {
    grid-template-columns: 1fr;
  }
  
  .resolve-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }
  
  .resolve-icon {
    font-size: 2.5rem;
  }
  
  #para-quem {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .sistema-text p {
    font-size: 1rem;
  }
  
  .sistema-highlight-item {
    padding: 1.5rem;
  }
  
  .para-quem-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .para-quem-table {
    font-size: 0.9rem;
  }
  
  .para-quem-table th,
  .para-quem-table td {
    padding: 1rem;
  }
  
  .autoridade-content p {
    font-size: 1rem;
  }
  
  .result-number {
    font-size: 2.5rem;
  }
  
  .result-card {
    padding: 2rem 1.5rem;
  }
  
  .guarantee-card {
    padding: 2rem 1.5rem;
  }
  
  .guarantee-card h2 {
    font-size: 1.5rem;
  }
  
  .comparison-good {
    transform: scale(1);
  }
  
  .comparison-item {
    padding: 1.5rem;
  }
  
  .pricing-custom-content {
    padding: 1.5rem 1.5rem 2rem;
  }
  
  .pricing-custom-content h3 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem;
  }
  
  .pricing-custom-content > p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .pricing-custom-benefits {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  
  .pricing-custom-content .btn {
    width: 100%;
    padding: 0.85rem 2rem;
  }
  
  .feature-highlight-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }
  
  .feature-highlight-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .feature-highlight-card h3 {
    font-size: 1.2rem;
  }
  
  .screenshot-wrapper-large {
    height: 300px;
  }
  
  .slide-caption {
    padding: 1.2rem 1.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .whatsapp-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
  
  .whatsapp-cta-content {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-icon-large {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }
  
  .whatsapp-icon-large svg {
    width: 36px;
    height: 36px;
  }
  
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  
  .footer-grid {
    flex-direction: column;
    padding-inline: 1.5rem;
  }
  .footer-columns {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .header-cta {
    display: none;
  }
  .hero {
    padding-top: 3.3rem;
  }
  .form-row {
    flex-direction: column;
  }

  .whatsapp-secondary {
    margin-top: 3rem;
  }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  color: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Tooltip do WhatsApp */
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(63, 202, 82, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-accent);
}

.whatsapp-float.show-tooltip .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 720px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    right: calc(100% + 10px);
    font-size: 0.8rem;
    padding: 0.6rem 0.85rem;
    max-width: 140px;
    white-space: normal;
    text-align: center;
  }
}

/* Equipe técnica — arquitetos de software */
.architect-photo {
  margin: 0 0 1.25rem;
  text-align: center;
}

.architect-photo-ring {
  width: 176px;
  height: 176px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-muted);
  flex-shrink: 0;
}

.architect-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Enquadramento centralizado (retratos com composição diferente) */
.architect-photo-img--center {
  object-position: center center;
}

.architects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.architect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem 2rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.architect-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(63, 202, 82, 0.25);
}

.architect-name {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
  width: 100%;
}

.architect-role {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  width: 100%;
}

.architect-bio {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  text-align: left;
  width: 100%;
}

/* Logos de clientes — 2 por vez no mobile, 3 por vez no desktop */
.client-carousel-container {
  margin-top: 0.5rem;
  position: relative;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.client-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  position: relative;
}

.client-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.client-carousel-slide {
  flex: 0 0 50%;
  min-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.client-carousel-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .client-carousel-slide {
    flex: 0 0 33.333333%;
    min-width: 33.333333%;
  }
}

.client-logo-card--carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 158px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.client-logo-card--carousel:hover {
  transform: none;
  box-shadow: none;
}

.client-logo-card--carousel img {
  height: 158px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(0.06);
  opacity: 0.95;
}

.client-logo-card--carousel:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.client-carousel-controls {
  margin-top: 1.75rem;
}

@media (max-width: 768px) {
  .architects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .architect-photo-ring {
    width: 152px;
    height: 152px;
  }

  .client-carousel-container {
    max-width: 100%;
  }

  .client-logo-card--carousel {
    height: 106px;
  }

  .client-logo-card--carousel img {
    height: 106px;
  }
}

@media (min-width: 960px) {
  .client-logo-card--carousel {
    height: 182px;
  }

  .client-logo-card--carousel img {
    height: 182px;
  }
}

/* ---------- Blog / conteúdos (layout editorial) ---------- */
.blog-page {
  background: linear-gradient(180deg, #f8fafc 0%, var(--color-background) 55%, #eef2f7 100%);
  background-attachment: fixed;
}

.blog-page .site-header {
  border-bottom: 1px solid rgba(63, 202, 82, 0.14);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.blog-index-main {
  padding-bottom: 0;
}

.blog-index-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 7vw, 4.25rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 42%, #166534 112%);
  color: #f8fafc;
}

.blog-index-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 100% -25%, rgba(63, 202, 82, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 45% at -10% 110%, rgba(63, 202, 82, 0.12), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 41px
    );
}

.blog-index-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.blog-index-hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

.blog-index-eyebrow.blog-index-eyebrow {
  color: rgba(248, 250, 252, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.blog-index-lead {
  margin: 1.15rem 0 0;
  font-size: 1.06rem;
  line-height: 1.62;
  color: rgba(248, 250, 252, 0.82);
  max-width: 36rem;
}

.blog-index-meta {
  margin: 1.35rem 0 0;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.6);
  letter-spacing: 0.02em;
}

.blog-index-count {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(63, 202, 82, 0.2);
  color: rgba(209, 250, 229, 0.95);
  font-weight: 600;
}

.blog-list-outer {
  padding: clamp(2rem, 5vw, 3rem) 1.5rem clamp(3rem, 6vw, 4rem);
}

.blog-list-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 680px) {
  .blog-list-cards {
    gap: 1.15rem;
  }
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(2.75rem, 3.25rem) 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.4rem 1.4rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth),
    border-color var(--transition-smooth);
}

.blog-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(63, 202, 82, 0.12);
  border-color: rgba(63, 202, 82, 0.22);
  transform: translateY(-3px);
}

.blog-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.blog-card-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  opacity: 0.28;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  padding-top: 0.15rem;
}

.blog-card-body h2 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.blog-card-body h2 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card-body h2 a:hover {
  color: var(--color-accent-dark);
}

.blog-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.blog-card-cta {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-dark);
  transition: gap var(--transition-fast), color var(--transition-fast);
  gap: 0.35rem;
  align-items: center;
}

.blog-card:hover .blog-card-cta {
  color: var(--color-accent);
  gap: 0.5rem;
}

.blog-article-main {
  padding-bottom: 0;
}

.blog-article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 2.75rem) 0 2rem;
  background: linear-gradient(165deg, #ecfdf5 0%, #f0fdf4 38%, #ffffff 100%);
  border-bottom: 1px solid rgba(63, 202, 82, 0.12);
}

.blog-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(63, 202, 82, 0.2), transparent 58%);
  opacity: 0.95;
}

.blog-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.blog-article-header {
  padding: 0;
  max-width: none;
}

.blog-page .blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.blog-page .blog-back-link:hover {
  color: var(--color-accent-dark);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(63, 202, 82, 0.25);
  text-decoration: none;
}

.blog-article-header .eyebrow {
  margin-bottom: 0.65rem;
}

.blog-article-header h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
  color: var(--color-text);
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.1rem 0 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border-light);
}

.blog-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.blog-article-sheet {
  padding: 0 1.5rem clamp(2.5rem, 5vw, 3.5rem);
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
}

.blog-article-body.container {
  max-width: 44rem;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.65rem, 4vw, 2.35rem) clamp(1.35rem, 3.5vw, 2.25rem)
    clamp(2rem, 4vw, 2.65rem);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--color-border-light);
}

.blog-article-body > p:first-of-type {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--color-text);
  margin-bottom: 1.35rem;
}

.blog-article-body h2 {
  font-size: 1.22rem;
  margin: 2.15rem 0 0.65rem;
  padding: 0.35rem 0 0.35rem 0.95rem;
  border-left: 3px solid var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #111827;
  background: linear-gradient(90deg, var(--color-accent-light), transparent 70%);
}

.blog-article-body h3 {
  font-size: 1.05rem;
  margin: 1.45rem 0 0.5rem;
  color: var(--color-text);
  font-weight: 600;
}

.blog-article-body p {
  line-height: 1.72;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 1.15rem;
  padding: 0.25rem 0;
  line-height: 1.62;
}

.blog-article-body ol {
  padding-left: 1.35rem;
}

.blog-article-body ul {
  list-style: none;
  padding-left: 0;
}

.blog-article-body ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

.blog-article-body ol li {
  margin-bottom: 0.45rem;
  padding-left: 0.15rem;
}

.blog-article-cta {
  margin: 2.35rem 0 0;
  padding: clamp(1.35rem, 3vw, 1.75rem) 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  background: linear-gradient(135deg, #14532d 0%, #166534 45%, #15803d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-accent);
}

.blog-article-cta p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
}

.blog-article-cta .btn-primary {
  background: #fff;
  color: #14532d;
  border-color: transparent;
  font-weight: 600;
}

.blog-article-cta .btn-primary:hover {
  background: #ecfdf5;
  color: #14532d;
}

@media (max-width: 480px) {
  .blog-card {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .blog-card-num {
    font-size: 1.1rem;
    opacity: 0.35;
  }
}


