:root {
  --bg-top: #f2f8ff;
  --bg-bottom: #effcf3;
  --text: #0b1220;
  --muted: #5a6b82;
  --line: #e6eef7;
  --card: #ffffff;

  --blue: #2563eb;
  --blue-700: #1d4ed8;
  --teal: #0ea5a4;
  --green: #22c55e;
  --green-700: #16a34a;

  --shadow-sm: 0 8px 18px rgba(11, 18, 32, 0.08);
  --shadow-md: 0 18px 38px rgba(11, 18, 32, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.14);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.25), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(37, 99, 235, 0.18), transparent 58%),
    #eaf6ff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-text {
  line-height: 1;
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.brand-name-strong {
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: #2a3a52;
  padding: 10px 8px;
  border-radius: 10px;
}

.nav-link:hover {
  background: rgba(37, 99, 235, 0.06);
  color: #1c2b44;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-price {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.header-price-label {
  font-size: 12px;
  color: var(--muted);
}

.header-price-value {
  font-size: 16px;
  color: var(--green-700);
  letter-spacing: -0.01em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 11px 16px;
  font-weight: 700;
  font-size: 14px;
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #2bd46a, #19b557);
  box-shadow: 0 14px 26px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.35);
  background: linear-gradient(180deg, #29cf66, #16a34a);
}

.btn-arrow {
  font-weight: 900;
  opacity: 0.95;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(37, 99, 235, 0.55);
  color: var(--blue);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.12);
}

/* Hero */
.hero {
  padding: 44px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  padding-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: #1f5fe0;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
}

.pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  color: #1f5fe0;
}

.hero-title {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.title-accent-blue {
  display: block;
  background: linear-gradient(90deg, #1d4ed8, #2aa7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-accent-teal {
  display: block;
  background: linear-gradient(90deg, #15a46b, #0ea5a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 18px 0 18px;
  color: #41546d;
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
}

.price-card {
  width: 330px;
  background: var(--card);
  border: 1px solid rgba(230, 238, 247, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 10px 0 22px;
}

.price-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #7b8ba1;
  text-align: center;
}

.price-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-700);
  text-align: center;
  margin-top: 6px;
}

.price-value-blue {
  color: var(--blue);
}

.price-unit {
  font-size: 13px;
  color: #7b8ba1;
  text-align: center;
  margin-top: 2px;
}

.price-divider {
  width: 1px;
  height: 64px;
  background: rgba(230, 238, 247, 0.9);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7c93;
  font-size: 13px;
}

.trust-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--green-700);
}

/* Media frame */
.hero-media {
  position: relative;
  min-height: 420px;
}

.media-frame {
  position: relative;
  border-radius: 30px;
  padding: 14px;
  background:
    radial-gradient(circle at 90% 25%, rgba(34, 197, 94, 0.22), transparent 55%),
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.20), transparent 55%),
    rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-lg);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(230, 238, 247, 0.9);
  z-index: 0;
}

.media-photo {
  position: relative;
  z-index: 1;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background-image:
    url("../assets/images/hero/familia.jpg"),
    linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(34, 197, 94, 0.18));
  background-size: cover, cover;
  background-position: center, center;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.media-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 238, 247, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-card-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.chip-green {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}

.chip-blue {
  background: rgba(37, 99, 235, 0.14);
  color: #2563eb;
}

.media-card-title {
  font-weight: 800;
  color: #1b2a42;
  letter-spacing: -0.01em;
  font-size: 14px;
}

.media-card-subtitle {
  color: #6b7c93;
  font-size: 13px;
  margin-top: 2px;
}

/* Chat FAB */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.chat-fab:hover {
  background: var(--blue-700);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.42);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
  width: 380px;
  max-width: calc(100vw - 56px);
  height: 500px;
  max-height: calc(100vh - 140px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(11, 18, 32, 0.25);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  pointer-events: none;
}

.chat-widget-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-widget-header {
  background: var(--blue);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-widget-header-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.chat-widget-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.chat-widget-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.chat-widget-close {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.chat-widget-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.chat-widget-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f9fafb;
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 14px;
  word-wrap: break-word;
}

.chat-message p {
  margin: 0;
  color: var(--text);
}

.chat-message-bot {
  background: #e0f2fe;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message-user {
  background: var(--blue);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message-user p {
  color: #ffffff;
}

.chat-widget-input {
  padding: 16px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-input-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input-field:focus {
  border-color: var(--blue);
}

.chat-input-field::placeholder {
  color: var(--muted);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.1s ease;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: var(--blue-700);
}

.chat-send-btn:active {
  transform: scale(0.95);
}

/* Responsive Chat Widget */
@media (max-width: 480px) {
  .chat-widget {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
    height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
  }
  
  .chat-fab {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

.anchor-space {
  height: 1px;
}

/* Trust strip (LGPD / Pagamento / Cancelamento) */
.trust-strip {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(230, 238, 247, 0.9);
  border-bottom: 1px solid rgba(230, 238, 247, 0.9);
}

.trust-strip-inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.trust-badge-green {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}

.trust-badge-blue {
  background: rgba(37, 99, 235, 0.14);
  color: #2563eb;
}

.trust-badge-purple {
  background: rgba(139, 92, 246, 0.14);
  color: #7c3aed;
}

.trust-meta {
  display: grid;
  gap: 2px;
}

.trust-title {
  font-weight: 800;
  color: #1b2a42;
  letter-spacing: -0.01em;
  font-size: 14px;
  line-height: 1.1;
}

.trust-desc {
  color: #6b7c93;
  font-size: 12px;
  line-height: 1.2;
}

/* Benefits intro */
.benefits-intro {
  background: rgba(255, 255, 255, 0.92);
  padding: 74px 0 70px;
}

.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-accent-blue {
  background: linear-gradient(90deg, #1d4ed8, #2aa7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-accent-teal {
  background: linear-gradient(90deg, #15a46b, #0ea5a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  margin: 18px auto 0;
  color: #41546d;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
}

.benefit-cards {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.benefit-card {
  border-radius: 18px;
  padding: 30px 28px;
  border: 1px solid rgba(230, 238, 247, 0.9);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
  text-align: center;
  min-height: 172px;
}

.benefit-card-blue {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.07), rgba(255, 255, 255, 0.92));
}

.benefit-card-green {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.07), rgba(255, 255, 255, 0.92));
}

.benefit-card-purple {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.07), rgba(255, 255, 255, 0.92));
}

.benefit-card-pink {
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.06), rgba(255, 255, 255, 0.92));
}

.benefit-card-amber {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), rgba(255, 255, 255, 0.92));
}

.benefit-card-slate {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06), rgba(255, 255, 255, 0.92));
}

.benefit-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 16px 26px rgba(11, 18, 32, 0.06);
}

.benefit-icon-blue {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.12));
  color: #1d4ed8;
}

.benefit-icon-green {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.12));
  color: #16a34a;
}

.benefit-icon-purple {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.12));
  color: #7c3aed;
}

.benefit-icon-pink {
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.20), rgba(244, 63, 94, 0.12));
  color: #e11d48;
}

.benefit-icon-amber {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.20), rgba(245, 158, 11, 0.12));
  color: #d97706;
}

.benefit-icon-slate {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.12));
  color: #3b82f6;
}

.benefit-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f1a2b;
}

.benefit-text {
  margin: 0;
  color: #51647c;
  font-size: 14px;
  line-height: 1.75;
}

.benefit-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.btn-cta {
  min-width: 340px;
  padding-left: 26px;
  padding-right: 26px;
}

/* Testimonials */
.testimonials {
  background: rgba(242, 248, 255, 0.9);
  padding: 74px 0 78px;
}

.testimonial-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 238, 247, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
  padding: 26px 26px 22px;
  text-align: center;
}

.quote-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.10));
  color: #0ea5a4;
  box-shadow: 0 16px 26px rgba(11, 18, 32, 0.06);
}

.quote-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  bottom: 10px;
}

.quote-dot-blue {
  left: 16px;
  background: #2563eb;
}

.quote-dot-green {
  right: 16px;
  background: #22c55e;
}

.stars {
  color: #f5b301;
  letter-spacing: 0.18em;
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  margin: 0;
  color: #2b3a52;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  min-height: 118px;
  display: grid;
  place-items: center;
}

.testimonial-footer {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(11, 18, 32, 0.14);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.avatar::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  border: 2px solid #ffffff;
}

/* Placeholders (troque por imagens depois) */
.avatar-1 {
  background-image: radial-gradient(circle at 30% 35%, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(34, 197, 94, 0.30), transparent 55%),
    linear-gradient(180deg, #dbeafe, #ecfeff);
}
.avatar-2 {
  background-image: radial-gradient(circle at 30% 35%, rgba(34, 197, 94, 0.30), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(37, 99, 235, 0.28), transparent 55%),
    linear-gradient(180deg, #dcfce7, #e0f2fe);
}
.avatar-3 {
  background-image: radial-gradient(circle at 30% 35%, rgba(139, 92, 246, 0.28), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(34, 197, 94, 0.25), transparent 55%),
    linear-gradient(180deg, #ede9fe, #e0f2fe);
}

.person {
  text-align: left;
  line-height: 1.2;
}

.person-name {
  font-weight: 900;
  color: #0f1a2b;
  font-size: 14px;
}

.person-role {
  color: #6b7c93;
  font-size: 12px;
  margin-top: 2px;
}

.testimonial-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-cta-blue {
  background: linear-gradient(180deg, #2f72ff, #2460eb);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.28);
}

.btn-cta-blue:hover {
  background: linear-gradient(180deg, #2a6cff, #1d4ed8);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.35);
}

/* Comparison Section */
.comparison {
  padding: 80px 0 80px;
  background: #ffffff;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.title-accent-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table-wrapper {
  margin: 0 auto 40px;
  max-width: 900px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.comparison-table thead {
  background: transparent;
}

.comparison-table th {
  padding: 24px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  vertical-align: middle;
}

.comparison-col-feature {
  width: 35%;
  text-align: left;
  padding-left: 28px;
  background: transparent;
  color: var(--text);
}

.comparison-col-mutuo {
  width: 32.5%;
  background: linear-gradient(180deg, #1e40af, #1e3a8a);
  color: #ffffff;
}

.comparison-col-traditional {
  width: 32.5%;
  background: #f3f4f6;
  color: var(--text);
}

.comparison-header-mutuo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.comparison-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.comparison-badge-recommended {
  background: rgba(59, 130, 246, 0.35);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.comparison-badge-limited {
  background: #fbbf24;
  color: #ffffff;
}

.comparison-table tbody tr {
  border-top: 1px solid #e5e7eb;
}

.comparison-table tbody tr:first-child {
  border-top: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) .comparison-cell-mutuo {
  background: #eff6ff;
}

.comparison-table tbody tr:nth-child(even) .comparison-cell-traditional {
  background: #f3f4f6;
}

.comparison-feature {
  padding: 20px 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: transparent;
}

.comparison-cell-mutuo {
  padding: 20px;
  text-align: center;
  background: #eff6ff;
  vertical-align: middle;
}

.comparison-cell-traditional {
  padding: 20px;
  text-align: center;
  background: #ffffff;
  vertical-align: middle;
}

.comparison-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
}

.comparison-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ef4444;
}

.comparison-waiting {
  color: #ef4444;
  font-weight: 600;
  font-size: 14px;
}

.comparison-table tfoot {
  border-top: 2px solid #e5e7eb;
}

.comparison-table tfoot tr {
  background: transparent;
}

.comparison-table tfoot .comparison-feature {
  font-weight: 700;
  font-size: 15px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.comparison-table tfoot .comparison-cell-mutuo {
  padding: 24px 20px;
  background: #eff6ff;
}

.comparison-table tfoot .comparison-cell-traditional {
  padding: 24px 20px;
  background: #ffffff;
}

.comparison-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  min-height: 80px;
  gap: 6px;
}

.comparison-price-mutuo {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.comparison-price-traditional {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
}

.comparison-price-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.comparison-price-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

.comparison-footer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.5;
}

.comparison-cta {
  display: flex;
  justify-content: center;
}

/* Guarantee Section */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f9ff, #f0fdf4);
}

.guarantee-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.guarantee-icon-wrapper {
  flex-shrink: 0;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.guarantee-intro {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.guarantee-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* Offer Section */
.offer {
  padding: 80px 0;
  background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.offer .container {
  position: relative;
  z-index: 1;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fbbf24;
  color: #0b1220;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.offer-badge-icon {
  display: grid;
  place-items: center;
}

.offer-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 48px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.offer-title-accent {
  color: #fbbf24;
  display: block;
}

.offer-card {
  max-width: 700px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-price-col {
  text-align: center;
}

.offer-price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 600;
}

.offer-price-value {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.offer-price-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.offer-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.offer-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}

.offer-benefit-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fbbf24;
}

.offer-cta {
  display: flex;
  justify-content: center;
}

.btn-offer {
  background: #ffffff;
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
  padding: 18px 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.btn-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.btn-arrow-left {
  margin-right: 8px;
}

/* Footer */
.site-footer {
  background: #101828;
  color: #ffffff;
}

.footer-cta-banner {
  background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
  padding: 48px 0;
}

.footer-cta-wrapper {
  text-align: center;
}

.btn-footer-cta {
  background: #ffffff;
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
  padding: 18px 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.footer-tagline {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 48px;
}

.footer-logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-text {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.footer-col-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.footer-security {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-security-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-security-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--green);
  color: var(--green);
}

.footer-separator {
  height: 1px;
  background: #374151;
  margin: 40px 0 32px;
}

.footer-disclaimer {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    gap: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-media {
    min-height: unset;
  }
  .media-photo {
    height: 360px;
  }
  .trust-strip-inner {
    gap: 26px;
  }
  .benefits-intro {
    padding: 56px 0 56px;
  }
  .benefit-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials {
    padding: 56px 0 60px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-text {
    min-height: unset;
  }
  .guarantee {
    padding: 64px 0;
  }
  .guarantee-card {
    padding: 40px;
  }
  .offer {
    padding: 64px 0;
  }
  .offer-title {
    font-size: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }
  .brand {
    min-width: unset;
  }
  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .header-cta {
    width: 100%;
    justify-content: space-between;
  }
  .price-card {
    width: 100%;
    max-width: 420px;
  }
  .media-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .trust-strip-inner {
    justify-content: flex-start;
  }
  .trust-item {
    width: 100%;
  }
  .benefit-cards {
    grid-template-columns: 1fr;
  }
  .btn-cta {
    min-width: unset;
    width: 100%;
    max-width: 420px;
  }
  .comparison {
    padding: 56px 0 56px;
  }
  .comparison-title {
    font-size: 28px;
  }
  .comparison-subtitle {
    font-size: 16px;
  }
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -28px;
    margin-right: -28px;
    padding: 0 28px;
  }
  .comparison-table {
    min-width: 600px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 16px 12px;
    font-size: 14px;
  }
  .comparison-feature {
    padding-left: 16px;
    padding-right: 16px;
  }
  .comparison-price {
    padding: 14px 16px;
    min-height: 70px;
  }
  .comparison-price-value {
    font-size: 24px;
  }
  .comparison-price-label {
    font-size: 11px;
  }
  .guarantee {
    padding: 56px 0;
  }
  .guarantee-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }
  .guarantee-icon {
    width: 64px;
    height: 64px;
  }
  .guarantee-title {
    font-size: 24px;
  }
  .offer {
    padding: 56px 0;
  }
  .offer-title {
    font-size: 32px;
  }
  .offer-card {
    padding: 32px 24px;
  }
  .offer-prices {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .offer-benefits {
    grid-template-columns: 1fr;
  }
  .btn-offer {
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
    max-width: 420px;
  }
  .footer-cta-banner {
    padding: 40px 0;
  }
  .btn-footer-cta {
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
    max-width: 420px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-social {
    justify-content: flex-start;
  }
}

/* Planos Page */
.planos-hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
  text-align: center;
}

.planos-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: var(--blue);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}

.planos-badge-icon {
  display: grid;
  place-items: center;
}

.planos-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.planos-hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.planos-hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.planos-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.planos-feature-icon {
  display: grid;
  place-items: center;
  color: var(--green);
}

.planos-feature-sep {
  color: var(--muted);
  opacity: 0.5;
}

.planos-cards-section {
  padding: 80px 0;
  background: #ffffff;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.plano-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plano-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.plano-card-individual {
  border-color: rgba(37, 99, 235, 0.2);
}

.plano-card-familiar {
  border-color: rgba(34, 197, 94, 0.2);
}

.plano-card-empresarial {
  border-color: rgba(139, 92, 246, 0.2);
  background: linear-gradient(180deg, #faf5ff, #ffffff);
}

.plano-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.plano-badge-blue {
  background: var(--blue);
  color: #ffffff;
}

.plano-badge-green {
  background: var(--green);
  color: #ffffff;
}

.plano-badge-purple {
  background: #8b5cf6;
  color: #ffffff;
}

.plano-icon-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 16px;
}

.plano-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: #ffffff;
}

.plano-icon-blue {
  background: var(--blue);
}

.plano-icon-green {
  background: var(--green);
}

.plano-icon-purple {
  background: #8b5cf6;
}

.plano-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
  color: var(--text);
}

.plano-price {
  text-align: center;
  margin-bottom: 12px;
}

.plano-price-value {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plano-price-blue {
  color: var(--blue);
}

.plano-price-green {
  color: var(--green);
}

.plano-price-purple {
  color: #8b5cf6;
  font-size: 24px;
}

.plano-price-unit {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.plano-tagline {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
}

.plano-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plano-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.plano-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--green);
  margin-top: 2px;
}

.plano-check-purple {
  background: #f3e8ff;
  color: #8b5cf6;
}

.btn-plano {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.btn-plano-purple {
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  box-shadow: 0 14px 26px rgba(139, 92, 246, 0.28);
}

.btn-plano-purple:hover {
  background: linear-gradient(180deg, #7c3aed, #6d28d9);
  box-shadow: 0 18px 34px rgba(139, 92, 246, 0.35);
}

/* Opções de Planos Familiares */
.plano-opcoes {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.plano-opcoes-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.plano-opcoes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.plano-opcao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.plano-opcao-info {
  flex: 1;
}

.plano-opcao-vidas {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.plano-opcao-desc {
  font-size: 12px;
  color: var(--muted);
}

.plano-opcao-price {
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
  min-width: 80px;
  text-align: right;
}

.btn-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-select:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  color: #ffffff;
}

.plano-opcoes-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.plano-opcoes-more {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
}

.btn-chat {
  border-color: var(--green);
  color: var(--green);
}

/* Vantagens Exclusivas (Plano Empresarial) */
.plano-vantagens {
  margin-top: 32px;
  padding: 24px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.plano-vantagens-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #8b5cf6;
  margin-bottom: 16px;
}

.plano-vantagens-icon {
  display: grid;
  place-items: center;
  color: #8b5cf6;
}

.plano-vantagens-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plano-vantagens-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.plano-vantagens-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: 900;
  font-size: 18px;
}

/* Seção Por que escolher */
.planos-why {
  padding: 80px 0;
  background: #f0f9ff;
}

.planos-why-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
}

.planos-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.planos-why-card {
  text-align: center;
  padding: 32px 24px;
}

.planos-why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: #ffffff;
}

.planos-why-icon-blue {
  background: var(--blue);
}

.planos-why-icon-green {
  background: var(--green);
}

.planos-why-icon-purple {
  background: #8b5cf6;
}

.planos-why-card-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.planos-why-card-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Final */
.planos-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.planos-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.planos-cta .container {
  position: relative;
  z-index: 1;
}

.planos-cta-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.planos-cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.btn-cta-planos {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  padding: 18px 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-planos:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

/* Responsive Planos */
@media (max-width: 1024px) {
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .planos-why-grid {
    grid-template-columns: 1fr;
  }
  .planos-hero {
    padding: 80px 0 60px;
  }
  .planos-cards-section {
    padding: 60px 0;
  }
  .planos-why {
    padding: 60px 0;
  }
  .planos-cta {
    padding: 80px 0;
  }
}

@media (max-width: 720px) {
  .planos-hero-title {
    font-size: 36px;
  }
  .planos-hero-subtitle {
    font-size: 18px;
  }
  .planos-hero-features {
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
  }
  .planos-feature-sep {
    display: none;
  }
  .plano-card {
    padding: 24px 20px;
  }
  .plano-opcao {
    flex-wrap: wrap;
  }
  .plano-opcao-price {
    width: 100%;
    text-align: left;
    margin-top: 8px;
  }
  .planos-why-title {
    font-size: 32px;
  }
  .planos-cta-title {
    font-size: 32px;
  }
  .planos-cta-subtitle {
    font-size: 18px;
  }
}


