:root {
  --bg: #ffffff;
  --primary: #4c2e90;
  --accent: #ec184b;
  --muted: #f6f6f6;
  --text: #222;
  --container: 1280px;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.navbar {
  background: transparent;
  padding: 24px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  display: block;
  width: 172px;
  height: auto;
}
.nav-cta a {
  text-transform: uppercase;
}

.hero {
  padding: 80px 0;
  background: #4c2e90;
}
.hero-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
.hero-left {
  flex: 1;
}
.hero-right {
  flex: 1;
}
.hero-right img {
  width: 100%;
  height: auto;
}
.hero p {
  margin-top: 12px;
  color: #4a4a4a;
}
.hero p.strong {
  font-weight: 800;
}
.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.features {
  padding: 60px 0;
  text-align: center;
}
.tag {
  display: inline-block;
  background: rgba(236, 24, 75, 0.08);
  color: var(--accent);
}
.hero h1 {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1666;
  color: #eae2fd;
  margin: 0;
}
.hero p {
  font-size: 16px;
  line-height: 1.5;
  color: #f6f6f6;
}

.hero .btn-white {
  background: #ffffff;
  color: var(--primary);
  border: none;
}
.hero .btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.problems {
  padding: 60px 0;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.box {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.cta-form {
  padding: 60px 0;
  background: var(--muted);
}
.cta-form-inner {
  display: flex;
  gap: 40px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 320px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.contact-form input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.testimonials {
  padding: 60px 0;
}
.testimonials-grid {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
}
blockquote {
  margin: 0 0 8px 0;
  color: #444;
}
cite {
  display: block;
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}

.site-footer {
  padding: 40px 0;
  text-align: center;
  color: #666;
}

@media (max-width: 900px) {
  .hero-inner,
  .cta-form-inner {
    flex-direction: column;
  }
  .container {
    padding: 0 16px;
  }
}

/* Códigos GPT */

/* Hero */

.hero-tv-manager {
  width: 100%;
  padding: 80px 64px;
  overflow: hidden;
  background-color: #4c2e90;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-tv-manager__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
}

.hero-tv-manager__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.hero-tv-manager__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tv-manager__title {
  margin: 0;
  color: #eae2fd;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
}

.hero-tv-manager__description {
  margin: 0;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hero-tv-manager__highlight {
  margin: 0;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.hero-tv-manager__actions {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-tv-manager__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: #f6f6f6;
  border-radius: 8px;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-tv-manager__button:hover {
  opacity: 0.9;
}

.hero-tv-manager__media {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-tv-manager__image {
  width: 100%;
  max-width: 608px;
  height: auto;
  display: block;
}

/* Sobre */

.about-tv-manager {
  width: 100%;
  padding: 80px 64px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-tv-manager__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-tv-manager__media {
  flex-shrink: 0;
}

.about-tv-manager__image {
  width: 613px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 10px solid #d4c2ff;
  box-sizing: border-box;
}

.about-tv-manager__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.about-tv-manager__text-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.about-tv-manager__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(236, 24, 75, 0.12);
  border-radius: 8px;
  color: #ec184b;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.about-tv-manager__title {
  margin: 0;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.about-tv-manager__description {
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.about-tv-manager__description p {
  margin: 0 0 24px;
}

.about-tv-manager__description p:last-child {
  margin-bottom: 0;
}

.about-tv-manager__lead {
  font-weight: 700;
}

.about-tv-manager__actions {
  display: flex;
  align-items: flex-start;
}

.about-tv-manager__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ec184b;
  border-radius: 8px;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-tv-manager__button:hover {
  opacity: 0.9;
}
.tv-manager-problems {
  width: 100%;
  padding: 80px 64px;
  background: #eae2fd;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-manager-problems__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.tv-manager-problems__header {
  width: 100%;
  max-width: 588px;
  display: flex;
  justify-content: center;
}

.tv-manager-problems__title {
  margin: 0;
  text-align: center;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.tv-manager-problems__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tv-manager-problems__card {
  position: relative;
  padding-top: 28px;
}

.tv-manager-problems__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: #ec184b;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tv-manager-problems__icon span {
  width: 24px;
  height: 24px;
  display: block;
  background: #ffc1d0;
  border-radius: 4px;
}

.tv-manager-problems__card-content {
  margin-top: -28px;
  min-height: 263px;
  padding: 56px 32px 32px;
  background: #ffffff;
  border-radius: 8px;
  outline: 1px solid #f6f6f6;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.tv-manager-problems__card-title {
  margin: 0;
  text-align: center;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.tv-manager-problems__card-text {
  margin: 0;
  text-align: center;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.tv-manager-know {
  width: 100%;
  padding: 80px 64px;
  overflow: hidden;
  background-image: url("assets/bg-conheca.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-manager-know__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.tv-manager-know__top {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.tv-manager-know__intro {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tv-manager-know__title {
  margin: 0;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.tv-manager-know__description {
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-know__description p {
  margin: 0 0 16px;
}

.tv-manager-know__description p:last-child {
  margin-bottom: 0;
}

.tv-manager-know__media {
  flex: 1 1 0;
  padding: 10px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.tv-manager-know__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  outline: 8px solid #ffe9ee;
  outline-offset: -8px;
}

.tv-manager-know__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18.5px;
}

.tv-manager-know__card {
  min-height: 301px;
  padding: 24px 31px;
  background: #eae2fd;
  border-radius: 6px;
  outline: 1px solid #f6f6f6;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  box-sizing: border-box;
}

.tv-manager-know__icon {
  width: 43px;
  height: 43px;
  padding: 12px;
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.tv-manager-know__icon span {
  width: 18px;
  height: 18px;
  display: block;
  background: #4c2e90;
  border-radius: 4px;
  position: relative;
}

.tv-manager-know__icon span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ec184b;
  border-radius: 2px;
  position: absolute;
  right: -2px;
  bottom: -2px;
}

.tv-manager-know__card-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tv-manager-know__card-title {
  margin: 0;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.tv-manager-know__card-text {
  margin: 0;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 12.34px;
  font-weight: 400;
  line-height: 18.5px;
}

.tv-manager-know__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.tv-manager-know__support {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tv-manager-know__support-title {
  margin: 0;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.tv-manager-know__support-text {
  margin: 0;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-know__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.tv-manager-know__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #4c2e90;
  border-radius: 8px;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tv-manager-know__button:hover {
  opacity: 0.9;
}
.tv-manager-testimonials {
  width: 100%;
  padding: 80px 64px;
  background: #4c2e90;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tv-manager-testimonials__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.tv-manager-testimonials__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tv-manager-testimonials__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-testimonials__title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.tv-manager-testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tv-manager-testimonials__card {
  height: 100%;
  padding: 32px 40px;
  background: #ffffff;
  border-radius: 8px;
  outline: 1px solid #f6f6f6;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.tv-manager-testimonials__quote p {
  margin: 0;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-testimonials__author {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.tv-manager-testimonials__avatar {
  width: 48px;
  height: 48px;
  background: #f6f6f6;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.tv-manager-testimonials__avatar img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.tv-manager-testimonials__author-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tv-manager-testimonials__name {
  margin: 0;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.tv-manager-testimonials__role {
  margin: 0;
  color: #797979;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.tv-manager-testimonials__highlight {
  width: 100%;
  max-width: 1142px;
  text-align: center;
}

.tv-manager-testimonials__highlight-title {
  margin: 0 0 12px;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.tv-manager-testimonials__highlight-text {
  margin: 0;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-testimonials__actions {
  display: flex;
  justify-content: center;
}

.tv-manager-testimonials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f6f6f6;
  border-radius: 8px;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tv-manager-testimonials__button:hover {
  opacity: 0.9;
}

.tv-manager-form {
  width: 100%;
  padding: 80px 64px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-manager-form__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.tv-manager-form__content {
  flex: 1 1 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.tv-manager-form__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(78, 34, 81, 0.16);
  border-radius: 8px;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-form__title {
  margin: 0;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.tv-manager-form__description {
  color: #797979;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-form__description p {
  margin: 0 0 12px;
}

.tv-manager-form__description p:last-child {
  margin-bottom: 0;
}

.tv-manager-form__box {
  flex: 1 1 0;
  padding: 48px;
  border-radius: 16px;
  outline: 1px solid #4c2e90;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.tv-manager-form__box-title {
  margin: 0;
  text-align: center;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 42px;
}

.tv-manager-form__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tv-manager-form__field {
  width: 100%;
  height: 60px;
  padding: 16px;
  border-radius: 8px;
  outline: 1px solid #797979;
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
}

.tv-manager-form__icon {
  color: #797979;
  font-size: 16px;
  line-height: 16px;
  flex-shrink: 0;
}

.tv-manager-form__input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.tv-manager-form__input::placeholder {
  color: #797979;
  opacity: 1;
}

.tv-manager-form__button {
  width: 100%;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #4c2e90;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.tv-manager-form__button:hover {
  opacity: 0.9;
}

.tv-manager-faq {
  width: 100%;
  padding: 80px 64px;
  background: #4c2e90;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-manager-faq__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.tv-manager-faq__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tv-manager-faq__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-faq__title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.tv-manager-faq__content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tv-manager-faq__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tv-manager-faq__item {
  width: 100%;
  border-radius: 8px;
  background: transparent;
}

.tv-manager-faq__item summary {
  list-style: none;
}

.tv-manager-faq__item summary::-webkit-details-marker {
  display: none;
}

.tv-manager-faq__question {
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.tv-manager-faq__question span:first-child {
  flex: 1 1 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tv-manager-faq__arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-bottom: 6px;
}

.tv-manager-faq__item[open] .tv-manager-faq__arrow {
  transform: rotate(-135deg);
}

.tv-manager-faq__item[open] .tv-manager-faq__question {
  background: rgba(255, 255, 255, 0.08);
}

.tv-manager-faq__answer {
  padding: 0 24px 24px;
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.tv-manager-faq__actions {
  padding-top: 8px;
}

.tv-manager-faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f6f6f6;
  border-radius: 8px;
  color: #4c2e90;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tv-manager-faq__button:hover {
  opacity: 0.9;
}
.tv-manager-footer {
  width: 100%;
  padding: 48px 64px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-manager-footer__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-manager-footer__brand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.tv-manager-footer__logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}

/*Responsividade*/

@media (max-width: 1200px) {
  .tv-manager-know__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-tv-manager {
    padding: 64px 32px;
  }

  .hero-tv-manager__container {
    gap: 40px;
  }

  .hero-tv-manager__title {
    font-size: 40px;
    line-height: 48px;
  }
  .about-tv-manager {
    padding: 64px 32px;
  }

  .about-tv-manager__container {
    gap: 32px;
  }

  .about-tv-manager__title {
    font-size: 28px;
    line-height: 36px;
  }

  .tv-manager-problems {
    padding: 64px 32px;
  }

  .tv-manager-problems__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tv-manager-problems__card-content {
    min-height: auto;
  }
  .tv-manager-know {
    padding: 64px 32px;
  }

  .tv-manager-know__top,
  .tv-manager-know__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .tv-manager-testimonials {
    padding: 64px 32px;
  }

  .tv-manager-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .tv-manager-testimonials__card {
    padding: 32px;
  }
  .tv-manager-form {
    padding: 64px 32px;
  }

  .tv-manager-form__container {
    flex-direction: column;
    gap: 40px;
  }

  .tv-manager-form__box {
    width: 100%;
  }
  .tv-manager-faq {
    padding: 64px 32px;
  }

  .tv-manager-faq__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-tv-manager {
    padding: 48px 20px;
  }

  .hero-tv-manager__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .hero-tv-manager__title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-tv-manager__description {
    font-size: 15px;
    line-height: 22px;
  }

  .hero-tv-manager__highlight {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-tv-manager__button {
    width: 100%;
  }

  .hero-tv-manager__media {
    width: 100%;
  }

  .hero-tv-manager__image {
    max-width: 100%;
  }
  .about-tv-manager {
    padding: 48px 20px;
  }

  .about-tv-manager__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-tv-manager__content {
    gap: 32px;
  }

  .about-tv-manager__text-group {
    gap: 24px;
  }

  .about-tv-manager__title {
    font-size: 24px;
    line-height: 32px;
  }

  .about-tv-manager__button {
    width: 100%;
  }
  .tv-manager-problems {
    padding: 48px 20px;
  }

  .tv-manager-problems__title {
    font-size: 24px;
    line-height: 32px;
  }

  .tv-manager-problems__card-content {
    padding: 56px 24px 24px;
  }

  .tv-manager-problems__card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .tv-manager-problems__card-text {
    font-size: 15px;
    line-height: 22px;
  }
  .tv-manager-know {
    padding: 48px 20px;
  }

  .tv-manager-know__title {
    font-size: 24px;
    line-height: 32px;
  }

  .tv-manager-know__grid {
    grid-template-columns: 1fr;
  }

  .tv-manager-know__card {
    min-height: auto;
    padding: 24px;
  }

  .tv-manager-know__support-title {
    font-size: 18px;
    line-height: 26px;
  }

  .tv-manager-know__button {
    width: 100%;
  }
  .tv-manager-testimonials {
    padding: 48px 20px;
  }

  .tv-manager-testimonials__title {
    font-size: 24px;
    line-height: 32px;
  }

  .tv-manager-testimonials__card {
    padding: 24px;
  }

  .tv-manager-testimonials__highlight-title {
    font-size: 18px;
    line-height: 26px;
  }

  .tv-manager-testimonials__highlight-text {
    font-size: 15px;
    line-height: 22px;
  }

  .tv-manager-testimonials__button {
    width: 100%;
  }
  .tv-manager-form {
    padding: 48px 20px;
  }

  .tv-manager-form__title {
    font-size: 24px;
    line-height: 32px;
  }

  .tv-manager-form__box {
    padding: 32px 24px;
    gap: 32px;
  }

  .tv-manager-form__box-title {
    font-size: 24px;
    line-height: 34px;
  }

  .tv-manager-form__field {
    height: 56px;
  }
  .tv-manager-faq {
    padding: 48px 20px;
  }

  .tv-manager-faq__title {
    font-size: 24px;
    line-height: 32px;
  }

  .tv-manager-faq__question {
    padding: 20px;
  }

  .tv-manager-faq__answer {
    padding: 0 20px 20px;
  }

  .tv-manager-faq__button {
    width: 100%;
  }
  .tv-manager-footer {
    padding: 32px 20px;
  }

  .tv-manager-footer__logo {
    width: 220px;
  }
}

/* =============================================
   ANIMAÇÕES DE ENTRADA (scroll-driven)
   ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Elementos com animação de entrada */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.is-visible {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 0.6s;
}

.animate-fade-up.is-visible   { animation-name: fadeInUp; }
.animate-fade-left.is-visible  { animation-name: fadeInLeft; }
.animate-fade-right.is-visible { animation-name: fadeInRight; }

/* Delays em cascata para grids */
.animate-delay-1 { animation-delay: 0.08s; }
.animate-delay-2 { animation-delay: 0.16s; }
.animate-delay-3 { animation-delay: 0.24s; }
.animate-delay-4 { animation-delay: 0.32s; }

/* =============================================
   HOVER MELHORADO NOS BOTÕES
   ============================================= */

/* Botão hero — branco */
.hero-tv-manager__button {
  transition: background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.2s ease !important;
}
.hero-tv-manager__button:hover {
  opacity: 1 !important;
  background: #eae2fd !important;
  box-shadow: 0 6px 20px rgba(76, 46, 144, 0.25);
  transform: translateY(-2px);
}
.hero-tv-manager__button:active {
  transform: translateY(0);
}

/* Botão about — vermelho */
.about-tv-manager__button {
  transition: background 0.25s ease, box-shadow 0.25s ease,
              transform 0.2s ease !important;
}
.about-tv-manager__button:hover {
  opacity: 1 !important;
  background: #c8103d !important;
  box-shadow: 0 6px 20px rgba(236, 24, 75, 0.3);
  transform: translateY(-2px);
}
.about-tv-manager__button:active {
  transform: translateY(0);
}

/* Botão know — roxo escuro */
.tv-manager-know__button {
  transition: background 0.25s ease, box-shadow 0.25s ease,
              transform 0.2s ease !important;
}
.tv-manager-know__button:hover {
  opacity: 1 !important;
  background: #3a2070 !important;
  box-shadow: 0 6px 20px rgba(76, 46, 144, 0.3);
  transform: translateY(-2px);
}
.tv-manager-know__button:active {
  transform: translateY(0);
}

/* Botão testimonials — claro */
.tv-manager-testimonials__button {
  transition: background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.2s ease !important;
}
.tv-manager-testimonials__button:hover {
  opacity: 1 !important;
  background: #eae2fd !important;
  box-shadow: 0 6px 20px rgba(76, 46, 144, 0.2);
  transform: translateY(-2px);
}
.tv-manager-testimonials__button:active {
  transform: translateY(0);
}

/* Botão FAQ — claro */
.tv-manager-faq__button {
  transition: background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.2s ease !important;
}
.tv-manager-faq__button:hover {
  opacity: 1 !important;
  background: #eae2fd !important;
  box-shadow: 0 6px 20px rgba(76, 46, 144, 0.2);
  transform: translateY(-2px);
}
.tv-manager-faq__button:active {
  transform: translateY(0);
}

/* Botão form — submit */
.tv-manager-form__button {
  transition: background 0.25s ease, box-shadow 0.25s ease,
              transform 0.2s ease !important;
}
.tv-manager-form__button:hover {
  opacity: 1 !important;
  background: #3a2070 !important;
  box-shadow: 0 6px 20px rgba(76, 46, 144, 0.3);
  transform: translateY(-2px);
}
.tv-manager-form__button:active {
  transform: translateY(0);
}

/* Botão navbar */
.btn-primary {
  transition: background 0.25s ease, box-shadow 0.25s ease,
              transform 0.2s ease;
}
.btn-primary:hover {
  background: #3a2070;
  box-shadow: 0 4px 16px rgba(76, 46, 144, 0.3);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Hover sutil nos cards de problemas */
.tv-manager-problems__card-content {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tv-manager-problems__card:hover .tv-manager-problems__card-content {
  box-shadow: 0 8px 24px rgba(76, 46, 144, 0.12);
  transform: translateY(-3px);
}

/* Hover nos campos do formulário */
.tv-manager-form__field {
  transition: outline-color 0.2s ease, box-shadow 0.2s ease;
}
.tv-manager-form__field:focus-within {
  outline-color: #4c2e90;
  box-shadow: 0 0 0 3px rgba(76, 46, 144, 0.12);
}

/* ─── Validação de formulário ─── */

/* Campo com erro */
.tv-manager-form__field--error {
  outline-color: #ec184b !important;
  box-shadow: 0 0 0 3px rgba(236, 24, 75, 0.12) !important;
}
.tv-manager-form__field--error .tv-manager-form__icon {
  color: #ec184b;
}

/* Campo válido */
.tv-manager-form__field--ok {
  outline-color: #1a9e5c !important;
  box-shadow: 0 0 0 3px rgba(26, 158, 92, 0.1) !important;
}
.tv-manager-form__field--ok .tv-manager-form__icon {
  color: #1a9e5c;
}

/* Mensagem de erro inline */
.tv-manager-form__error {
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #ec184b;
  margin-top: -10px;
  padding-left: 4px;
}
.tv-manager-form__error--visible {
  display: block;
}