:root {
  --bg: #f4f1ec;
  --paper: #fffdfa;
  --cream: #faf7f2;
  --charcoal: #3a3937;
  --text: #464543;
  --muted: #6c6c68;
  --olive: #7a7552;
  --olive-light: #a09a72;
  --accent: #57b637;
  --accent-soft: #a4bf9b;
  --gold: #c4a96a;
  --gold-light: #d6c18f;
  --stroke: #e5e1d8;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(70, 69, 67, 0.1);
  --shadow-lg: 0 16px 48px rgba(70, 69, 67, 0.14);
}

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

body {
  font-family: "Raleway", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--accent-soft);
}

h1,
h2,
h3,
h4 {
  line-height: 1.3;
  color: var(--charcoal);
}

ul {
  list-style: none;
}

.tv-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 2vw;
}

.tv-subheader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 0;
}

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

.tv-subheader-text {
  font-size: 14px;
  font-weight: 400;
}

.tv-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
  text-align: center;
  text-decoration: none;
}

.tv-btn:hover {
  background: var(--accent-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tv-btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

.tv-hero {
  min-height: 100svh;
  background: var(--cream) url("../images/header-template-metavendas.png")
    no-repeat right center;
  background-size: cover;
  padding: 80px 0;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tv-hero-image {
  display: none;
}

.tv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  align-items: center;
  gap: 40px;
}

.tv-hero-content {
  display: grid;
  gap: 36px;
  padding-right: 0;
  max-width: 620px;
}

.tv-hero-badge {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.tv-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0;
  line-height: 1.25;
}

.tv-hero p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 0;
}

.tv-hero .tv-small-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

.tv-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.tv-section {
  padding: 80px 0;
}

.tv-section-cream {
  background: var(--cream);
}

.tv-section-paper {
  background: var(--paper);
}

.tv-section-dark {
  background: var(--charcoal);
  color: #fff;
}

.tv-section-dark h2,
.tv-section-dark h3,
.tv-section-dark h4 {
  color: #fff;
}

.tv-section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--charcoal);
}

.tv-pain-section {
  background: var(--charcoal);
  color: var(--paper);
}

.tv-pain-section .tv-section-title {
  color: var(--paper);
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.tv-pain-flow {
  max-width: 1220px;
  margin: 0 auto 40px;
}

.tv-pain-line {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 253, 250, 0.2);
  text-align: center;
}

.tv-pain-line:last-child {
  border-bottom: 1px solid rgba(255, 253, 250, 0.2);
}

.tv-pain-line p {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--paper);
  margin: 0 auto;
  max-width: 1180px;
}

.tv-pain-bottom {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  text-decoration: underline;
}

.tv-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tv-feature-stack {
  display: grid;
  gap: 32px;
}

.tv-features-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--charcoal);
  text-align: center;
}

.tv-features-title-center {
  text-align: center;
}

.tv-features-title-left {
  text-align: left;
}

.tv-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tv-features-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.tv-features-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

.tv-features-image {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tv-features-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.tv-features-image-filled {
  background: transparent;
  min-height: auto;
}

.tv-features-grid-dark {
  display: block;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--radius);
  margin-top: 80px;
  padding: 56px 40px 40px;
}

.tv-features-grid-dark .tv-features-content h3,
.tv-features-grid-dark .tv-upsell-includes h4 {
  color: var(--paper);
}

.tv-feature-copy {
  font-size: 18px;
  line-height: 1.65;
  color: inherit;
  margin-bottom: 36px;
  text-align: left;
}

.tv-upsell-includes h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 28px;
  text-align: left;
}

.tv-upsell-inline {
  font-size: 18px;
  line-height: 1.65;
  color: var(--paper);
  margin: 0;
  text-align: left;
}

.tv-feature-action {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
}

.tv-feature-action-left {
  justify-content: flex-start;
}

.tv-features-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.tv-features-cta .tv-btn {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.tv-features-cta .tv-btn:hover {
  background: var(--accent-soft);
  color: #fff;
  border-color: var(--accent-soft);
}

.tv-feature-action .tv-btn {
  background: var(--paper);
  color: var(--charcoal);
  border: 1px solid rgba(255, 253, 250, 0.26);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}

.tv-feature-action .tv-btn:hover {
  background: #f3eee6;
  color: var(--charcoal);
}

.tv-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 8px;
  background: transparent !important;
  border: 2px solid var(--charcoal) !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
}

.tv-btn-outline-dark:hover {
  background: rgba(70, 69, 67, 0.06) !important;
  color: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
}

.tv-btn-outline-green {
  background: transparent !important;
  border: 2px solid var(--accent) !important;
  color: var(--accent) !important;
  box-shadow: none !important;
}

.tv-btn-outline-green:hover {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

.tv-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tv-for-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px;
}

.tv-for-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--charcoal);
  text-align: center;
}

.tv-for-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tv-for-card li {
  font-size: 15px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}

.tv-for-card li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 16px;
}

.tv-for-yes li::before {
  content: "✓";
  color: var(--accent);
}

.tv-for-no li::before {
  content: "✗";
  color: #b5655a;
}

.tv-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.tv-price-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tv-price-card-highlight {
  box-shadow: var(--shadow-lg);
}

.tv-price-tier {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
  align-self: center;
}

.tv-price-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 24px;
}

.tv-price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
  text-align: left;
}

.tv-price-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.tv-price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.tv-price-feature-star {
  font-weight: 700;
  color: var(--charcoal);
}

.tv-price-features li.tv-price-feature-star::before {
  content: "auto_awesome" !important;
  font-family: "Material Symbols Outlined";
  color: var(--gold);
  font-size: 18px;
  font-weight: normal;
  font-variation-settings: "FILL" 1;
}

.tv-price-card .tv-btn {
  width: 100%;
}

.tv-mentor-grid {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 40px;
  align-items: start;
}

.tv-mentor-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tv-mentor-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.tv-mentor-text .tv-mentor-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.tv-mentor-text p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
}

.tv-mentor-divider {
  border: none;
  border-top: 1px solid var(--stroke);
  margin: 32px 0;
}

.tv-mentor-contact {
  font-size: 15px;
  color: var(--text);
}

.tv-faq-list details {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.tv-faq-list summary {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.tv-faq-list summary::-webkit-details-marker {
  display: none;
}

.tv-faq-list details[open] summary {
  color: var(--accent);
}

.tv-faq-list p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--text);
}

.tv-faq-list a {
  color: var(--accent);
  text-decoration: underline;
}

.tv-faq-cta {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tv-faq-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
}

.tv-footer {
  text-align: center;
  padding: 32px 20px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
}

.tv-footer a {
  color: var(--muted);
  text-decoration: underline;
}

.tv-footer a:hover {
  color: var(--accent);
}

#lead-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.tv-popup-inner {
  background: #fff;
  max-width: 420px;
  width: min(92vw, 420px);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.tv-popup-inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--charcoal);
  text-align: center;
}

.tv-popup-inner input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.tv-popup-inner input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(87, 182, 55, 0.18);
}

.tv-popup-inner .tv-btn {
  width: 100%;
  margin-top: 6px;
}

.tv-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
}

.tv-close-btn:hover {
  color: var(--charcoal);
}

.tv-privacy-text {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

.tv-privacy-text a {
  color: var(--muted);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tv-container {
    padding-inline: 7vw;
  }

  .tv-subheader {
    display: none;
  }

  .tv-hero {
    min-height: 100svh;
    background: url("../images/hero_template_mobile.webp") center top / cover no-repeat;
    align-items: flex-start;
    padding: 32px 0 48px;
    padding-top: 32px;
  }

  .tv-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tv-hero-content {
    padding-right: 0;
    order: 1;
    margin-top: 0;
    max-width: 420px;
  }

  .tv-hero-image {
    display: none;
  }

  .tv-hero h1 {
    font-size: 28px;
  }

  .tv-section {
    padding: 48px 0;
  }

  .tv-section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .tv-pain-section .tv-section-title {
    font-size: 24px;
  }

  .tv-pain-line {
    padding: 22px 0;
  }

  .tv-pain-line p {
    font-size: 18px;
  }

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

  .tv-features-grid-dark {
    padding: 28px;
  }

  .tv-for-grid {
    grid-template-columns: 1fr;
  }

  .tv-pricing-grid {
    grid-template-columns: 1fr;
  }

  .tv-mentor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tv-mentor-img {
    max-width: 200px;
    margin: 0 auto;
  }

  .tv-btn {
    width: 100%;
    padding: 16px 24px;
  }

  .tv-price-card {
    padding: 28px;
  }
}
