/* Lusi Digital - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --verde: #10b981;
  --verde-light: #ecfdf5;
  --verde-dark: #065f46;
  --coral: #f97316;
  --coral-light: #fff7ed;
  --foreground: #16181d;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar-logo span:first-child {
  color: #000000;
}

.navbar-logo span:last-child {
  color: var(--verde);
}

.navbar-logo svg {
  width: 32px;
  height: 32px;
}

.navbar-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

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

.navbar-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--foreground);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.navbar-mobile-menu.active {
  display: flex;
}

.navbar-mobile-menu a {
  text-decoration: none;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--verde);
  color: white;
}

.btn-primary:hover {
  background: var(--verde-dark);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--foreground);
}

.btn-coral {
  background: var(--coral);
  color: white;
}

.btn-coral:hover {
  background: #ea580c;
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--verde-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--verde);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-briefing {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--verde-light, #ecfdf5);
  border: 1.5px solid var(--verde);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-briefing-text {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.hero-briefing-highlight {
  color: var(--verde);
}

.btn-briefing {
  display: inline-block;
  background: var(--verde);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-briefing:hover {
  background: var(--verde-dark);
  color: white;
}

.hero-image {
  position: relative;
}

/* ─── Hero Visual ─────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
}

/* Orbs de fundo */
.hv-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hv-orb-1 {
  width: 280px; height: 280px;
  background: rgba(16,185,129,0.15);
  top: -40px; right: -40px;
  animation: hv-pulse 6s ease-in-out infinite;
}
.hv-orb-2 {
  width: 200px; height: 200px;
  background: rgba(249,115,22,0.1);
  bottom: 20px; left: 0;
  animation: hv-pulse 8s ease-in-out infinite reverse;
}
.hv-orb-3 {
  width: 150px; height: 150px;
  background: rgba(16,185,129,0.1);
  bottom: 60px; right: 60px;
  animation: hv-pulse 7s ease-in-out 2s infinite;
}

@keyframes hv-pulse {
  0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
  50% { transform: scale(1.1) translateY(-10px); opacity: 0.7; }
}

/* Browser mockup */
.hv-browser {
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hv-browser-bar {
  background: #f4f4f5;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.hv-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-dot-red    { background: #ff5f57; }
.hv-dot-yellow { background: #febc2e; }
.hv-dot-green  { background: #28c840; }

.hv-url-bar {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Wireframe content */
.hv-browser-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hv-wf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.hv-wf-logo-bar {
  width: 80px; height: 10px;
  background: var(--verde);
  border-radius: 4px;
  opacity: 0.7;
}
.hv-wf-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-wf-line {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
}
.hv-wf-line-title { width: 120px; height: 12px; background: #d1d5db; }
.hv-wf-line-md    { width: 80px; }
.hv-wf-line-sm    { width: 50px; }
.hv-wf-btn {
  width: 54px; height: 22px;
  background: var(--verde);
  border-radius: 5px;
  opacity: 0.8;
}

.hv-wf-hero-section {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hv-wf-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hv-wf-hero-cta {
  width: 70px; height: 20px;
  background: var(--verde);
  border-radius: 5px;
  margin-top: 4px;
  opacity: 0.85;
}
.hv-wf-hero-img {
  width: 90px; height: 60px;
  background: linear-gradient(135deg, #ecfdf5 0%, #dbeafe 100%);
  border-radius: 8px;
  flex-shrink: 0;
}

.hv-wf-cards {
  display: flex;
  gap: 8px;
}
.hv-wf-card {
  flex: 1;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}
.hv-wf-card-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #10b981, #059669);
  opacity: 0.7;
}

/* Build progress bar */
.hv-build-bar {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.hv-build-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--verde);
  font-weight: 600;
  margin-bottom: 6px;
}
.hv-build-track {
  width: 100%;
  height: 5px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.hv-build-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 10px;
  animation: hv-build 3.5s ease-in-out infinite;
}
@keyframes hv-build {
  0%   { width: 0%; }
  70%  { width: 88%; }
  85%  { width: 88%; }
  95%  { width: 100%; }
  100% { width: 0%; }
}

/* Floating stat cards */
.hv-stat {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  animation: hv-float 5s ease-in-out infinite;
}
.hv-stat-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.hv-stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}
.hv-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.2;
}

.hv-stat-1 {
  bottom: 20px; left: 0;
  animation-delay: 0s;
  animation-duration: 5s;
}
.hv-stat-2 {
  top: 10px; right: -10px;
  animation-delay: 1.5s;
  animation-duration: 6s;
}
.hv-stat-3 {
  bottom: 80px; right: -10px;
  animation-delay: 3s;
  animation-duration: 5.5s;
}

@keyframes hv-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .hero-visual { height: 320px; }
  .hv-stat-2, .hv-stat-3 { right: 0; }
  .hv-wf-cards { display: none; }
}

/* Section Common */
.section {
  padding: 80px 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--verde);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Pain Points / Para Quem É */
.pain-points {
  background: #f9fafb;
}

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

.pain-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pain-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--verde-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--verde);
}

.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.pain-cta {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

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

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--verde);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verde);
  color: white;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ─── Comparison Tables ───────────────────────────── */
.compare-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.compare-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 24px;
  text-align: center;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: white;
}

.compare-table thead tr {
  background: #f9fafb;
}

.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
  line-height: 1.4;
}

.compare-table th.compare-feature-col {
  text-align: left;
  width: 38%;
}

.compare-table td {
  padding: 11px 20px;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
  color: var(--muted);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--foreground);
  font-weight: 400;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: #fafafa;
}

.compare-table th.compare-popular,
.compare-table td.compare-popular {
  background: #ecfdf5;
  border-left: 1px solid #a7f3d0;
  border-right: 1px solid #a7f3d0;
}

.compare-table thead th.compare-popular {
  background: #d1fae5;
  color: var(--foreground);
}

.compare-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 4px;
}

.compare-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
}

.compare-badge {
  display: inline-block;
  background: var(--verde);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 6px;
}

.compare-group td {
  background: #f9fafb !important;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted) !important;
  padding: 8px 20px;
}

.compare-group td.compare-popular {
  background: #ecfdf5 !important;
}

.compare-cta td {
  padding: 16px 20px;
  background: #f9fafb;
  border-top: 1px solid var(--border) !important;
}

.compare-cta td.compare-popular {
  background: #ecfdf5;
}

.ci { font-size: 1rem; }
.ci-yes { color: var(--verde); font-weight: 700; }
.ci-no  { color: #d1d5db; }

.btn-block {
  display: block;
  text-align: center;
  margin-top: auto;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.pricing-toggle {
  background: none;
  border: none;
  color: var(--verde);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  text-align: left;
  font-family: inherit;
}

.pricing-toggle:hover {
  text-decoration: underline;
}

.pricing-extra {
  display: contents;
}

.pricing-compare {
  text-align: center;
  margin-top: 32px;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.step {
  text-align: center;
}

.step-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--verde-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  background: #f9fafb;
}

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

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--verde-light);
  color: var(--verde-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-tag {
  display: inline-block;
  margin-top: 12px;
  background: #f3f4f6;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--muted);
}

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

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.portfolio-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--verde-light), #dbeafe);
}

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

.portfolio-card-tag {
  display: inline-block;
  background: var(--verde-light);
  color: var(--verde-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.portfolio-note {
  font-size: 0.75rem;
  color: #9ca3af;
  font-style: italic;
}

.portfolio-cta {
  text-align: center;
  margin-top: 32px;
}

/* Checklist CTA */
.checklist-section {
  padding: 60px 0;
}

.checklist-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--coral-light);
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.checklist-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.checklist-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.checklist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.checklist-form input[type="email"]:focus {
  border-color: var(--coral);
}

.checklist-form label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: left;
}

.checklist-form label a {
  color: var(--coral);
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  color: var(--foreground);
  text-align: left;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-cta {
  text-align: center;
  margin-top: 32px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--verde);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Inner Page Hero */
.page-hero {
  padding: 110px 0 44px;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,95,70,0.82) 0%, rgba(16,185,129,0.65) 100%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-card:nth-child(even) {
  direction: rtl;
}

.service-card:nth-child(even) > * {
  direction: ltr;
}

.service-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card-content .subtitle {
  font-size: 1rem;
  color: var(--verde);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card-content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card-visual {
  background: linear-gradient(135deg, var(--verde-light), #dbeafe);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--verde);
}

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

.contact-info-card {
  background: #f9fafb;
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--verde-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* About Page */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.about-story {
  max-width: 700px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-story p:last-child {
  color: var(--foreground);
  font-weight: 500;
}

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

.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--verde-light);
  border-radius: var(--radius);
}

.stat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.diff-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.diff-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.diff-list li svg {
  color: var(--verde);
  flex-shrink: 0;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .pricing-grid,
  .pain-grid,
  .testimonials-grid,
  .portfolio-grid,
  .steps-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .navbar-links {
    display: none;
  }

  .navbar-mobile-toggle {
    display: block;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) {
    direction: ltr;
  }

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

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

  .diff-list {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }
}
