/* ===================================================
   CINVOD — Global Stylesheet
   Design DNA: Clean-white, vibrant red + orange accents
   Fonts: Raleway (headings/nav) + Roboto (body)
   =================================================== */

:root {
  --cv-bg: #F7FAFC;
  --cv-bg-white: #ffffff;
  --cv-primary: #ff1749;
  --cv-primary-hover: #e0133f;
  --cv-secondary: #ff6900;
  --cv-gradient: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%);
  --cv-text: #1A202C;
  --cv-text-secondary: #4A5568;
  --cv-text-muted: #718096;
  --cv-border: #EDF2F7;
  --cv-footer-bg: #1A202C;
  --cv-footer-text: #A0AEC0;
  --cv-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --cv-card-radius: 12px;
  --cv-btn-radius: 9999px;
  --cv-max-width: 1200px;
  --cv-transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cv-text-secondary);
  background: var(--cv-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cv-primary); text-decoration: none; transition: color var(--cv-transition); }
a:hover { color: var(--cv-primary-hover); }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--cv-text);
  line-height: 1.3;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

/* Container */
.cv-container {
  max-width: var(--cv-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section */
.cv-section {
  padding: 5rem 0;
}
.cv-section--alt {
  background: var(--cv-bg-white);
}
.cv-section--dark {
  background: var(--cv-text);
  color: #fff;
}
.cv-section--dark h2,
.cv-section--dark h3,
.cv-section--dark h4 {
  color: #fff;
}
.cv-section__title {
  text-align: center;
  margin-bottom: 1rem;
}
.cv-section__subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--cv-text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.cv-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--cv-btn-radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--cv-transition);
  text-decoration: none;
}
.cv-btn--primary {
  background: var(--cv-primary);
  color: #fff;
}
.cv-btn--primary:hover {
  background: var(--cv-primary-hover);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 23, 73, 0.3);
  transform: translateY(-2px);
}
.cv-btn--gradient {
  background: var(--cv-gradient);
  color: #fff;
}
.cv-btn--gradient:hover {
  opacity: 0.9;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 105, 0, 0.3);
  transform: translateY(-2px);
}
.cv-btn--outline {
  background: transparent;
  color: var(--cv-primary);
  border: 2px solid var(--cv-primary);
}
.cv-btn--outline:hover {
  background: var(--cv-primary);
  color: #fff;
}
.cv-btn--white {
  background: #fff;
  color: var(--cv-primary);
}
.cv-btn--white:hover {
  background: var(--cv-border);
  color: var(--cv-primary);
}
.cv-btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.cv-btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}
.cv-btn--full {
  display: block;
  width: 100%;
}

/* ===================================================
   HEADER / NAV
   =================================================== */
.cv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cv-bg-white);
  border-bottom: 1px solid var(--cv-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.cv-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cv-text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.cv-logo span {
  color: var(--cv-primary);
}
.cv-nav { display: flex; align-items: center; gap: 0.2rem; }
.cv-nav a {
  padding: 0.5rem 0.7rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--cv-text);
  border-radius: 6px;
  transition: color var(--cv-transition);
}
.cv-nav a:hover,
.cv-nav a.active {
  color: var(--cv-primary);
}
.cv-header__cta {
  display: inline-flex;
}
.cv-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.cv-hamburger svg {
  width: 28px;
  height: 28px;
  stroke: var(--cv-text);
}

/* Mobile nav */
@media (max-width: 1024px) {
  .cv-nav { display: none; }
  .cv-header__cta { display: none; }
  .cv-hamburger { display: block; }
  .cv-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cv-bg-white);
    border-bottom: 1px solid var(--cv-border);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .cv-nav.open a {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--cv-border);
  }
}

/* ===================================================
   HERO
   =================================================== */
.cv-hero {
  background: var(--cv-bg-white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.cv-hero__title {
  font-size: 3rem;
  max-width: 850px;
  margin: 0 auto 1.5rem;
}
.cv-hero__title span {
  color: var(--cv-primary);
}
.cv-hero__desc {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--cv-text-secondary);
}
.cv-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cv-hero__image {
  margin-top: 3rem;
  border-radius: var(--cv-card-radius);
  box-shadow: var(--cv-card-shadow);
}
@media (max-width: 768px) {
  .cv-hero__title { font-size: 2rem; }
  .cv-hero { padding: 3rem 0 2rem; }
}

/* ===================================================
   STATS BAR
   =================================================== */
.cv-stats {
  background: var(--cv-gradient);
  padding: 2rem 0;
  color: #fff;
}
.cv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}
.cv-stats__item strong {
  display: block;
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
}
.cv-stats__item span {
  font-size: 0.9rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .cv-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ===================================================
   FEATURES GRID
   =================================================== */
.cv-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cv-feature-card {
  background: var(--cv-bg-white);
  border-radius: var(--cv-card-radius);
  padding: 2rem;
  box-shadow: var(--cv-card-shadow);
  text-align: center;
  transition: transform var(--cv-transition), box-shadow var(--cv-transition);
}
.cv-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.cv-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cv-feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.cv-feature-card p {
  color: var(--cv-text-muted);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .cv-features__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   CONTENT SECTIONS (alternating text+image)
   =================================================== */
.cv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cv-split--reverse { direction: rtl; }
.cv-split--reverse > * { direction: ltr; }
.cv-split__text h2 { margin-bottom: 1rem; }
.cv-split__text p { margin-bottom: 1.5rem; }
.cv-split__image {
  border-radius: var(--cv-card-radius);
  box-shadow: var(--cv-card-shadow);
}
@media (max-width: 768px) {
  .cv-split { grid-template-columns: 1fr; }
  .cv-split--reverse { direction: ltr; }
}

/* ===================================================
   PRICING CARDS
   =================================================== */
.cv-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cv-pricing-card {
  background: var(--cv-bg-white);
  border-radius: var(--cv-card-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--cv-card-shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--cv-transition);
  position: relative;
}
.cv-pricing-card:hover {
  border-color: var(--cv-primary);
  transform: translateY(-4px);
}
.cv-pricing-card--popular {
  border-color: var(--cv-primary);
  transform: scale(1.04);
}
.cv-pricing-card--popular::before {
  content: "Mais Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cv-primary);
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: var(--cv-btn-radius);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}
.cv-pricing-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cv-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.cv-pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  color: var(--cv-text);
  margin-bottom: 0.5rem;
}
.cv-pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cv-text-muted);
}
.cv-pricing-card__features {
  text-align: left;
  margin: 1.5rem 0;
}
.cv-pricing-card__features li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--cv-text-secondary);
  border-bottom: 1px solid var(--cv-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cv-pricing-card__features li::before {
  content: "\2713";
  color: var(--cv-primary);
  font-weight: 700;
}
.cv-pricing-card .cv-btn {
  margin-top: 0.5rem;
}
@media (max-width: 1024px) {
  .cv-pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cv-pricing__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.cv-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cv-testimonial-card {
  background: var(--cv-bg-white);
  border-radius: var(--cv-card-radius);
  padding: 2rem;
  box-shadow: var(--cv-card-shadow);
}
.cv-testimonial-card__stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.cv-testimonial-card p {
  font-style: italic;
  color: var(--cv-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.cv-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cv-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.cv-testimonial-card__name {
  font-weight: 700;
  color: var(--cv-text);
  font-size: 0.95rem;
}
.cv-testimonial-card__role {
  font-size: 0.8rem;
  color: var(--cv-text-muted);
}
@media (max-width: 768px) {
  .cv-testimonials__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.cv-faq { max-width: 800px; margin: 0 auto; }
.cv-faq__item {
  border-bottom: 1px solid var(--cv-border);
}
.cv-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  color: var(--cv-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--cv-transition);
}
.cv-faq__question:hover { color: var(--cv-primary); }
.cv-faq__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cv-primary);
  transition: transform var(--cv-transition);
}
.cv-faq__item.active .cv-faq__question::after {
  content: "\2212";
}
.cv-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.cv-faq__item.active .cv-faq__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.cv-faq__answer p {
  color: var(--cv-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================================
   TRIAL FORM / CONTACT FORM / ORDER FORM
   =================================================== */
.cv-form {
  max-width: 500px;
  margin: 0 auto;
}
.cv-form--wide {
  max-width: 600px;
}
.cv-form label {
  display: block;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--cv-text);
  margin-bottom: 0.35rem;
}
.cv-form input,
.cv-form select,
.cv-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--cv-border);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--cv-text);
  background: var(--cv-bg-white);
  margin-bottom: 1rem;
  transition: border-color var(--cv-transition);
  min-height: 44px;
}
.cv-form input:focus,
.cv-form select:focus,
.cv-form textarea:focus {
  outline: none;
  border-color: var(--cv-primary);
  box-shadow: 0 0 0 3px rgba(255, 23, 73, 0.1);
}
.cv-form textarea { resize: vertical; min-height: 120px; }
.cv-form .cv-btn { margin-top: 0.5rem; }
.cv-form__trust {
  text-align: center;
  font-size: 0.82rem;
  color: var(--cv-text-muted);
  margin-top: 0.75rem;
}
.cv-form__trust svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}
input[name="website"] { display: none !important; }

/* Form messages */
.form-message {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-message--success {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #c6f6d5;
}
.form-message--error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}

/* ===================================================
   CHANNELS TABLE
   =================================================== */
.cv-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.cv-channel-cat {
  background: var(--cv-bg-white);
  border-radius: var(--cv-card-radius);
  padding: 1.25rem;
  box-shadow: var(--cv-card-shadow);
  text-align: center;
  transition: transform var(--cv-transition);
}
.cv-channel-cat:hover { transform: translateY(-2px); }
.cv-channel-cat__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cv-channel-cat h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.cv-channel-cat span { font-size: 0.82rem; color: var(--cv-text-muted); }

/* Country flags grid */
.cv-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.cv-flags img {
  width: 40px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ===================================================
   LEGAL / CONTENT PAGES
   =================================================== */
.cv-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.cv-content h1 { margin-bottom: 1.5rem; font-size: 2.2rem; }
.cv-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; }
.cv-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.cv-content p { margin-bottom: 1rem; }
.cv-content ul, .cv-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.cv-content ul { list-style: disc; }
.cv-content ol { list-style: decimal; }
.cv-content li { margin-bottom: 0.5rem; }
.cv-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.cv-content th, .cv-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cv-border);
  text-align: left;
}
.cv-content th {
  background: var(--cv-bg);
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}
.cv-content blockquote {
  border-left: 4px solid var(--cv-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cv-bg);
  border-radius: 0 8px 8px 0;
  color: var(--cv-text-secondary);
  font-style: italic;
}

/* Setup guide images */
.cv-content img {
  border-radius: var(--cv-card-radius);
  margin: 1.5rem 0;
  box-shadow: var(--cv-card-shadow);
}

/* ===================================================
   FOOTER
   =================================================== */
.cv-footer {
  background: var(--cv-footer-bg);
  color: var(--cv-footer-text);
  padding: 4rem 0 2rem;
}
.cv-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.cv-footer__brand .cv-logo { color: #fff; }
.cv-footer__brand p {
  color: var(--cv-footer-text);
  font-size: 0.92rem;
  margin-top: 1rem;
}
.cv-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'Raleway', sans-serif;
}
.cv-footer__links li { margin-bottom: 0.5rem; }
.cv-footer__links a {
  color: var(--cv-footer-text);
  font-size: 0.9rem;
  transition: color var(--cv-transition);
}
.cv-footer__links a:hover { color: var(--cv-primary); }
.cv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.cv-footer__address {
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .cv-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cv-footer__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   BREADCRUMB
   =================================================== */
.cv-breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--cv-text-muted);
}
.cv-breadcrumb a { color: var(--cv-primary); }
.cv-breadcrumb span { margin: 0 0.5rem; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.cv-page-hero {
  background: var(--cv-gradient);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cv-page-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cv-page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cv-page-hero h1 { font-size: 1.8rem; }
  .cv-page-hero { padding: 3rem 0; }
}

/* ===================================================
   RESELLER TIERS
   =================================================== */
.cv-reseller__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .cv-reseller__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   WHY CHOOSE US GRID
   =================================================== */
.cv-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cv-why-card {
  text-align: center;
  padding: 2rem 1rem;
}
.cv-why-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cv-why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.cv-why-card p {
  font-size: 0.9rem;
  color: var(--cv-text-muted);
}
@media (max-width: 768px) {
  .cv-why__grid { grid-template-columns: 1fr; }
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cv-cta-banner {
  background: var(--cv-gradient);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--cv-card-radius);
  margin: 3rem 0;
}
.cv-cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cv-cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===================================================
   UTILITIES
   =================================================== */
.cv-text-center { text-align: center; }
.cv-mt-2 { margin-top: 2rem; }
.cv-mb-2 { margin-bottom: 2rem; }
.cv-hidden { display: none !important; }
.cv-accent { color: var(--cv-primary); }
.cv-highlight { background: linear-gradient(120deg, rgba(255,23,73,0.1) 0%, rgba(255,105,0,0.1) 100%); padding: 0.15em 0.3em; border-radius: 4px; }

/* FAQ inline script */
@media print {
  .cv-header, .cv-footer, .cv-hamburger { display: none; }
}
