:root {
  --brand-blue:#323ACC;
  --brand-blue-hero:#323ACC;
  --brand-yellow:#FFFF00;
  --brand-orange:#FFAA00;
  --ink-900:#181B57;
  --ink-700:#2D2E32;
  --ink-100:#fff;
  --bg-light:#F7F8FF;
  --max:1200px;
  --radius:14px;
  --shadow:0 6px 26px rgba(0,0,0,.08);
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html {
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body {
  font-family:"DM Sans",system-ui,sans-serif;
  color:var(--ink-700);
  background:#fff;
  line-height:1.6;
  overflow-x:hidden;
  width:100%;
}

img {
  max-width:100%;
  height:auto;
  display:block;
}

.image-container {
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

.image-container img {
  object-fit:contain;
}

@media (min-width:769px) and (max-width:1024px) {
  .container {
    padding:0 30px!important;
  }
  .content-wrap {
    padding:0 30px!important;
  }
  .image-container img,
  .feature-image img,
  .hero-image img,
  .content-image img,
  .illustration img {
    max-height:none;
    width:100%;
    height:auto;
    margin:0 auto;
    object-fit:contain;
  }
  .icon-image img,
  .logo-image img,
  .trust-logo img {
    max-height:50px;
    width:auto;
  }
  .grid-2-columns,
  .grid-3-columns,
  .features-grid {
    gap:40px;
  }
  .feature-row {
    gap:30px;
  }
}

@media (min-width:769px) and (max-width:1024px) and (orientation:portrait) {
  .image-container img,
  .feature-image img,
  .hero-image img {
    max-height:50vh;
  }
}

.logos {
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  margin-top:16px;
}

.logos img {
  height:auto;
  max-width:100%;
  object-fit:contain;
}

@media (min-width:1200px) {
  .logos img {
    max-height:40px;
    width:auto;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  .logos {
    gap:30px;
  }
  .logos img {
    max-height:36px;
    width:auto;
  }
}

@media (min-width:769px) and (max-width:1023px) {
  .logos {
    gap:25px;
  }
  .logos img {
    max-height:32px;
    width:auto;
  }
}

@media (min-width:600px) and (max-width:768px) {
  .logos {
    gap:20px;
  }
  .logos img {
    max-height:28px;
    width:auto;
    flex:0 1 calc(50% - 20px);
    max-width:160px;
  }
}

@media (max-width:599px) {
  .logos {
    gap:15px;
    margin-top:12px;
  }
  .logos img {
    max-height:24px;
    width:auto;
    flex:0 1 calc(50% - 15px);
    max-width:140px;
  }
}

@media (max-width:480px) {
  .logos {
    gap:12px;
  }
  .logos img {
    max-height:22px;
    flex:0 1 calc(50% - 12px);
    max-width:120px;
  }
}

@media (max-width:360px) {
  .logos {
    gap:10px;
  }
  .logos img {
    max-height:20px;
    flex:0 1 calc(50% - 10px);
    max-width:100px;
  }
}

.container {
  width:100%;
  max-width:var(--max);
  margin-inline:auto;
  padding:0 20px;
}

h1,h2,h3,h4,h5,h6 {
  font-family:"Dosis",sans-serif;
  font-weight:600;
  line-height:1.2;
  margin-bottom:1rem;
  color:var(--ink-900);
}

h1 {
  font-size:clamp(2rem,5vw,3.5rem);
}

h2 {
  font-size:clamp(1.75rem,4vw,3rem);
}

h3 {
  font-size:clamp(1.5rem,3vw,2.5rem);
}

h4 {
  font-size:clamp(1.25rem,2.5vw,2rem);
}

p {
  margin-bottom:1rem;
  line-height:1.6;
}

a {
  color:var(--brand-blue);
  text-decoration:none;
  transition:all 0.2s ease;
}

a:hover {
  color:var(--brand-blue-hero);
  text-decoration:underline;
}

ul,ol {
  margin-bottom:1rem;
  padding-left:1.5rem;
  list-style:none;
}


li {
  margin-bottom:0.5rem;
}

input,textarea,select,button {
  font-family:inherit;
  font-size:inherit;
}

input,textarea,select {
  border:1px solid #ddd;
  border-radius:var(--radius);
  padding:0.75rem;
  width:100%;
  margin-bottom:1rem;
}

button {
  cursor:pointer;
  border:none;
}

.text-center {
  text-align:center;
}

.text-left {
  text-align:left;
}

.text-right {
  text-align:right;
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip-link {
  position:absolute;
  top:-40px;
  left:0;
  background:var(--brand-blue);
  color:white;
  padding:8px;
  z-index:1000;
  text-decoration:none;
}

.skip-link:focus {
  top:0;
}

.btn,.yt-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  padding:12px 24px;
  line-height:1.1;
  text-decoration:none;
  cursor:pointer;
  border:2px solid transparent;
  transition:all 0.2s ease;
  font-family:"DM Sans",sans-serif;
}

.btn.yellow,.yt-btn.yellow {
  background:var(--brand-yellow);
  color:var(--brand-blue-hero);
  border-color:var(--brand-yellow);
}

.btn.yellow:hover,.yt-btn.yellow:hover {
  background:#fdfd6b;
  transform:translateY(-2px);
}

.btn.ghost,.yt-btn.ghost {
  border-color:var(--brand-yellow);
  background:transparent;
  color:var(--brand-yellow);
}

.btn.ghost:hover,.yt-btn.ghost:hover {
  background:rgba(255,255,0,0.1);
  transform:translateY(-2px);
}

.section {
  padding:80px 0;
}

.section--light {
  background:var(--bg-light);
}

.section--dark {
  background:var(--brand-blue);
  color:white;
}

header.site {
  --header-h:70px;
  position:sticky;
  top:0;
  z-index:50;
  background:var(--brand-blue-hero);
  border-bottom:1px solid rgba(255,255,255,0.12);
  font-family:"Dosis",sans-serif;
  min-height:var(--header-h);
}

@media (max-width:1024px) {
  header.site {
    --header-h:70px;
  }
  header.site .container {
    min-height:var(--header-h);
    padding:15px 24px;
  }
  header.site img {
    height:40px;
    max-height:40px;
  }
  .hamburger {
    height:44px;
    width:44px;
  }
}

header.site .container {
  max-width:1180px;
  margin-inline:auto;
  padding:15px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
  min-height:var(--header-h);
}

header.site a.logo {
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}

header.site img {
  height:42px;
  width:auto;
}

header.site .btn,header.site .yt-btn {
  padding:8px 16px;
  font-size:14px;
  white-space:nowrap;
  min-width:max-content;
  height:auto;
  line-height:1.2;
}

header.site .yt-nav>a,header.site .yt-has-menu>summary,header.site .yt-submenu a {
  text-decoration:none;
}

header.site .yt-nav>a:hover,header.site .yt-has-menu>summary:hover {
  text-decoration:underline;
}

header.site .yt-submenu a:hover {
  text-decoration:none;
}

#nav-toggle {
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.hamburger {
  display:none;
  height:44px;
  width:44px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:10px;
  cursor:pointer;
  user-select:none;
  background:transparent;
}

.hamburger:focus-visible {
  outline:2px solid var(--brand-yellow);
}

.hamburger .bars {
  position:relative;
  width:22px;
  height:2px;
  background:#fff;
  transition:background 0.2s ease;
}

.hamburger .bars::before,.hamburger .bars::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#fff;
  transition:transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.hamburger .bars::before {
  top:-7px;
}

.hamburger .bars::after {
  top:7px;
}

.yt-nav {
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:16px;
}

.yt-nav>a,.yt-has-menu>summary {
  font-family:"Dosis",sans-serif;
  font-size:16px;
  color:var(--brand-yellow);
  line-height:1;
  font-weight:600;
  cursor:pointer;
  white-space: nowrap;
}

.yt-nav>a:hover,.yt-has-menu>summary:hover {
  text-decoration:underline;
}

.yt-has-menu {
  position:relative;
  list-style:none;
}

.yt-has-menu>summary {
  display:inline-flex;
  align-items:center;
  gap:6px;
  list-style:none;
}

.yt-has-menu>summary::-webkit-details-marker {
  display:none;
}

.yt-has-menu>summary::after {
  content:"";
  width:6px;
  height:6px;
  border-right:2px solid var(--brand-yellow);
  border-bottom:2px solid var(--brand-yellow);
  transform:rotate(45deg);
  display:inline-block;
  margin-top:2px;
}

.yt-has-menu[open]>summary::after {
  transform:rotate(-135deg);
}

.yt-submenu {
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:260px;
  background:#4A50CC;
  border:1px solid rgba(255,255,255,0.22);
  border-radius:12px;
  padding:10px;
  box-shadow:var(--shadow);
}

.yt-submenu.two-columns {
  min-width:500px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-height:70vh;
  overflow-y:auto;
  padding:15px;
}

.yt-has-menu[open]>.yt-submenu {
  display:block;
}

@media (min-width:1025px) {
  .yt-has-menu:hover>.yt-submenu {
    display:block;
  }
  .yt-has-menu {
    padding:10px 0;
  }
  .yt-has-menu>summary {
    padding:4px 4px;
  }
}

.yt-submenu a {
  display:block;
  padding:10px 12px;
  border-radius:8px;
  color:var(--brand-yellow);
  font-family:"DM Sans",sans-serif;
  font-weight:600;
  font-size:14px;
  line-height:1.2;
}

.yt-submenu a small {
  display:block;
  font-weight:500;
  opacity:0.85;
  font-size:12px;
  margin-top:4px;
  color:#fff;
}

.yt-submenu a:hover {
  background:rgba(255,255,0,0.12);
  text-decoration:none;
  color:var(--brand-yellow);
}

.yt-submenu hr {
  border:none;
  border-top:1px solid rgba(255,255,255,0.15);
  margin:8px 0;
}

.yt-submenu h4 {
  margin:8px 10px 6px;
  font-size:12px;
  font-weight:700;
  color:#fff;
  opacity:0.7;
  text-transform:uppercase;
  font-family:"DM Sans",sans-serif;
}

body.nav-open {
  overflow:hidden;
  position:fixed;
  width:100%;
  height:100%;
}

@media (max-width:1024px) {
  header.site img {
    height:42px;
  }
  header.site .btn,header.site .yt-btn {
    width:100%;
    text-align:center;
    justify-content:center;
    margin:5px 0;
  }
  .hamburger {
    display:flex;
    z-index:1001;
  }
  .yt-nav {
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    bottom:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:var(--brand-blue-hero);
    margin:0;
    padding:20px 20px calc(30px + env(safe-area-inset-bottom,0px));
    z-index:1000;
    border:none;
    border-top:1px solid rgba(255,255,255,0.18);
    max-height:calc(100dvh - var(--header-h));
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .yt-nav::before {
    content:"";
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.5);
    z-index:-1;
  }
  #nav-toggle:checked~.yt-nav {
    display:flex;
  }
  #nav-toggle:checked+label .bars {
    background:transparent;
  }
  #nav-toggle:checked+label .bars::before {
    top:0;
    transform:rotate(45deg);
  }
  #nav-toggle:checked+label .bars::after {
    top:0;
    transform:rotate(-45deg);
  }
  .yt-has-menu>summary,.yt-nav>a {
    text-align:left;
    width:100%;
    padding:12px 14px;
    font-size:16px;
    color:var(--brand-yellow);
  }
  .yt-has-menu>summary {
    width:100%;
    justify-content:flex-start;
    align-items:center;
    text-align:left;
  }
  .yt-nav>a {
    align-self:stretch;
    text-align:left;
  }
  .yt-nav .yt-btn {
    align-self:flex-start;
    width:auto;
  }
  .yt-submenu {
    position:static;
    display:none;
    margin:4px 0 8px 6px;
    padding:6px;
    background:rgba(255,255,255,0.05);
  }
  .yt-has-menu[open]>.yt-submenu {
    display:block;
  }
  .yt-submenu.two-columns {
    min-width:unset;
    display:block;
    max-height:none;
  }
}

@supports (padding:max(0px)) {
  @media (max-width:1024px) {
    .yt-nav {
      padding-bottom:max(16px,env(safe-area-inset-bottom));
    }
  }
}

@media (min-width:1025px) {
  header.site .container {
    padding-top:12px;
    padding-bottom:12px;
  }
  .yt-nav {
    gap:18px;
  }
}

.site-footer {
  background:#fff;
  color:var(--ink-700);
  border-top:1px solid rgba(0,0,0,0.1);
}

.site-footer a {
  color:var(--ink-700);
  text-decoration:none;
}

.site-footer a:hover,.site-footer a:focus {
  color:var(--brand-blue);
  text-decoration:underline;
}

.site-footer .inner {
  max-width:var(--max);
  margin:0 auto;
  padding:2rem 1.25rem;
}

.footer-grid {
  display:grid;
  gap:2rem 1.5rem;
  grid-template-columns:1fr;
}

@media (min-width:480px) {
  .footer-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .footer-col:nth-child(2) {
    grid-column:1/-1;
  }
}

@media (min-width:600px) and (max-width:719px) {
  .footer-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1.5rem 1rem;
  }
  .footer-col:nth-child(2) {
    grid-column:1/-1;
    order:3;
  }
  .footer-col:nth-child(3) {
    order:2;
  }
  .footer-col:nth-child(4) {
    order:4;
  }
}

@media (min-width:720px) and (max-width:1023px) {
  .footer-grid {
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1.5rem;
  }
  .footer-col:nth-child(2) {
    grid-column:span 2;
  }
}

@media (min-width:1024px) {
  .footer-grid {
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:2rem 1.5rem;
  }
  .footer-col:nth-child(2) {
    grid-column:auto;
  }
}

.footer-col {
  min-width:0;
}

.footer-section-title {
  margin:0 0 .75rem 0;
  font-size:1rem;
  font-weight:700;
  color:var(--brand-blue)!important;
  border-bottom:2px solid var(--brand-blue)!important;
  padding-bottom:8px;
  font-family:"Dosis",sans-serif;
}

.footer-text {
  margin:0 0 1rem 0;
  color:var(--ink-700);
  line-height:1.5;
}

.footer-list {
  list-style:none;
  margin:0;
  padding:0;
}

.footer-list li {
  margin:.4rem 0;
}

.footer-list a {
  color:var(--ink-700);
  opacity:.9;
  font-size:0.9rem;
  line-height:1.4;
}

.footer-list a:hover {
  color:var(--brand-blue);
  opacity:1;
}

.solutions-columns {
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
}

@media (min-width:480px) {
  .solutions-columns {
    grid-template-columns:1fr 1fr;
    gap:1.5rem;
  }
}

.footer-subtitle {
  font-size:0.85rem;
  font-weight:600;
  color:var(--brand-blue);
  margin:0 0 0.5rem 0;
  font-family:"DM Sans",sans-serif;
  display:block;
}

.btn-secondary {
  display:inline-block;
  border:1.5px solid var(--brand-blue);
  border-radius:999px;
  padding:.6rem 1rem;
  font-weight:700;
  line-height:1;
  color:var(--brand-blue);
  text-decoration:none;
  transition:all 0.2s ease;
  font-size:0.9rem;
  margin-bottom:0.5rem;
  width:100%;
  text-align:center;
}

@media (min-width:480px) {
  .btn-secondary {
    width:auto;
    display:inline-block;
  }
}

.btn-secondary:hover {
  background:rgba(50,58,204,0.08);
  text-decoration:none;
}

.icons {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.6rem .8rem;
}

.social-icons {
  margin:.25rem 0 1rem;
}

.review-icons .review-text {
  width:100%;
  margin:.5rem 0 .25rem;
  font-size:.95rem;
  opacity:.9;
  color:var(--ink-700);
}

.site-footer .social img {
  transition:transform 0.2s ease;
}

.site-footer .social:hover img {
  transform:scale(1.1);
}

.review-icons .social img {
  filter:none!important;
  opacity:1!important;
}

.review-icons .social:hover img {
  filter:none!important;
  opacity:0.9!important;
  transform:scale(1.1);
}

.site-footer .review-icons img[alt*="G2"],.site-footer .review-icons img[alt*="Capterra"] {
  filter:none!important;
  opacity:1!important;
}

.footer-legal {
  border-top:1px solid rgba(0,0,0,0.1);
  padding:.75rem 1.25rem 1.25rem;
  text-align:center;
  color:var(--ink-700);
  font-size:.9rem;
}

.footer-legal .legal {
  margin:0;
  color:var(--ink-700);
}

.lang-switch {
  margin-bottom:0.5rem;
}

.lang-switch a {
  color:var(--ink-700);
  text-decoration:none;
  font-size:0.9rem;
}

.lang-switch a:hover {
  color:var(--brand-blue);
}

@media (min-width:600px) and (max-width:719px) {
  .footer-col {
    min-height:auto;
  }
  .solutions-columns {
    grid-template-columns:1fr 1fr;
    gap:1rem;
  }
  .footer-list li {
    margin:0.3rem 0;
  }
  .footer-list a {
    font-size:0.85rem;
  }
  .footer-section-title {
    font-size:0.95rem;
    margin-bottom:0.5rem;
  }
}

@media (max-width:768px) {
  .container {
    padding:0 20px!important;
  }
  .content-wrap {
    padding:0 15px!important;
  }
  .section {
    padding:60px 0;
  }
  .btn,.yt-btn {
    padding:10px 20px;
    font-size:14px;
  }
}

@media (max-width:480px) {
  .section {
    padding:40px 0;
  }
}

.content-wrap {
  padding:0 20px;
}

@media (max-width:768px) {
  .content-wrap {
    padding:0 15px;
  }
}

@media (max-width:480px) {
  .content-wrap {
    padding:0 10px;
  }
}

.section+.section {
  margin-top:0;
}

.feature-image {
  margin-bottom:1rem;
}

.channels-section {
  padding:80px 0;
  background:var(--brand-blue);
  color:#fff;
}

.channel-cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.channel-card {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:24px;
  box-shadow:var(--shadow);
}

.channel-card h3 {
  font-family:"Dosis",sans-serif;
  font-weight:600;
  color:#fff;
  font-size:clamp(16px,2.2vw,18px);
  text-align:center;
  margin:0 0 16px;
}

.channel-card .channel-icons {
  display:flex;
  gap:26px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.channel-card .channel-icons img.white {
  filter:brightness(0) invert(1);
}

.pricing-section {
  padding:80px 0;
  background:var(--brand-blue);
  color:#fff;
}

.pricing-header {
  text-align:center;
  margin-bottom:40px;
}

.pricing-header h2 {
  font-family:"Dosis",sans-serif;
  font-size:clamp(29px,4vw,36px);
  font-weight:500;
  color:var(--brand-yellow);
  margin:0 0 16px;
}

.pricing-header p {
  font-family:"DM Sans",sans-serif;
  font-size:clamp(16px,1.8vw,18px);
  margin:0;
  line-height:1.5;
}

.pricing-iframe {
  width:100%;
  height:600px;
  border:none;
  border-radius:10px;
  box-shadow:var(--shadow);
  background:#fff;
  margin-bottom:30px;
}

.pricing-actions {
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

@media (max-width:1024px) {
  .channel-cards {
    grid-template-columns:1fr;
  }
}

@media (max-width:768px) {
  .channels-section,.pricing-section {
    padding:60px 0;
  }
  .pricing-iframe {
    height:640px;
  }
  .pricing-actions {
    flex-direction:column;
    align-items:center;
  }
}

@media (max-width:480px) {
  .pricing-iframe {
    height:600px;
  }
  .channel-card {
    padding:20px;
  }
  .channel-card .channel-icons {
    gap:20px;
  }
}

.trust {
  background:var(--brand-blue);
  color:#fff;
  padding:40px 0 60px;
  border-bottom:1px solid rgba(255,255,255,0.14);
  margin-top:0;
}

.trust .inner {
  display:grid;
  gap:24px;
}

.trust .line {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
}

.trust .icon-wrapper {
  display:flex;
  align-items:center;
  justify-content:center;
}

.trust p {
  margin:0;
  font-family:"Dosis",sans-serif;
  font-size:clamp(20px,2.3vw,36px);
  font-weight:400;
  text-align:center;
}

.trust p strong {
  color:var(--brand-yellow);
  font-weight:700;
}

.trust .logos {
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:16px;
  justify-content:center;
}

@media (max-width:768px) {
  .trust {
    padding:30px 0 40px;
  }
  .trust .logos {
    gap:20px;
  }
}

@media (max-width:480px) {
  .trust .logos {
    gap:15px;
  }
  .trust .logos img {
    max-width:120px;
    height:auto;
  }
}

.hero,.trust,.channels-section,.pricing-section,.cta-section {
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

.hero .container,.trust .container,.channels-section .container,.pricing-section .container,.cta-section .container {
  position:relative;
  z-index:1;
}

@media (max-width:768px) {
  .hero .wrap,.feature-row,.aeo-grid,.diff-grid,.keyword-grid,.industries-grid,.projects-grid,.channel-cards {
    grid-template-columns:1fr!important;
  }
  .faq-grid,.howto-steps {
    grid-template-columns:1fr!important;
  }
  .hero-cta,.button-group,.pricing-actions {
    flex-direction:column;
    align-items:center;
  }
  .hero-cta .btn,.button-group .btn,.pricing-actions .btn {
    width:100%;
    max-width:300px;
    margin-bottom:10px;
  }
}

main,#main {
  width:100%;
  overflow-x:hidden;
}

.yt-nav,.yt-submenu {
  max-width:100vw;
}

@media (max-width:480px) {
  .container {
    padding:0 15px!important;
  }
}

/* RESILIÊNCIA SEMÂNTICA ADICIONADA */
.aeo-card,.diff-card,.feature-row,.industry-card,.channel-card {
  display:block;
}

.section-title,.card-title {
  font-family:"Dosis",sans-serif;
  font-weight:600;
  color:var(--ink-900);
}

.section-title {
  font-size:clamp(1.75rem,4vw,3rem);
}

.card-title {
  font-size:clamp(1.5rem,3vw,2.5rem);
}

.hero-content,.feature-content,.aeo-content {
  display:block;
}

.hero-ill,.feature-image,.aeo-image {
  display:block;
}

.grid-2-columns,.grid-3-columns,.aeo-grid,.diff-grid,.keyword-grid,.industries-grid {
  display:grid;
  gap:24px;
}

@media (max-width:768px) {
  .grid-2-columns,.grid-3-columns,.aeo-grid,.diff-grid,.keyword-grid,.industries-grid {
    grid-template-columns:1fr;
  }
}


.aeo-blocks {background: var(--bg-light);padding: 60px 0;}
.aeo-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));gap: 20px;margin-bottom: 40px;}
.aeo-card {background: #fff;padding: 25px;border-radius: 12px;border-left: 4px solid var(--brand-yellow);box-shadow: var(--shadow);}
.aeo-card h2 {margin: 0 0 12px;font-family: "Dosis", sans-serif;color: var(--brand-blue);font-size: 18px;}
.aeo-card h3 {margin: 0 0 12px;font-family: "Dosis", sans-serif;color: var(--brand-blue);font-size: 18px;}
.aeo-card p {margin: 0;font-size: 16px;line-height: 1.4;}
.aeo-list {background: #fff;padding: 30px;border-radius: 12px;box-shadow: var(--shadow);}
.aeo-list h4 {color: var(--brand-blue);margin-bottom: 20px;font-family: "Dosis", sans-serif;font-size: 20px;}
.aeo-list h3 {color: var(--brand-blue);margin-bottom: 20px;font-family: "Dosis", sans-serif;font-size: 20px;}
.aeo-list ul {list-style: none;padding: 0;}
.aeo-list li {padding: 10px 0;border-bottom: 1px solid #f0f0f0;}
.aeo-list li:last-child {border-bottom: none;}
.aeo-list strong {color: var(--brand-blue);}


.features-grid {display: grid;gap: 80px;}
.feature-row {display: grid;grid-template-columns: 1fr 1fr;gap: 60px;align-items: center;}
@media (min-width:1025px) {.feature-2 .feature-content {order: 2;}.feature-2 .feature-image {order: 1;}}
.feature-content {padding: 20px;}
.feature-content h3 {font-family: "Dosis", sans-serif;color: var(--brand-blue);font-weight: 600;font-size: clamp(18px, 2.5vw, 22px);margin: 0 0 16px;}
.feature-content h2 {font-family: "Dosis", sans-serif;color: var(--brand-blue);font-weight: 600;font-size: clamp(18px, 2.5vw, 22px);margin: 0 0 16px;}
.feature-content p {font-family: "DM Sans", sans-serif;color: var(--ink-900);font-size: clamp(16px, 1.8vw, 18px);line-height: 1.5;margin: 0;}
.feature-image img {width: 100%;height: auto;border-radius: 12px;box-shadow: var(--shadow)}


.industries-section {padding: 80px 0;background: var(--bg-light)}
.industries-header {text-align: center;margin-bottom: 60px}
.industries-header h2 {font-family: "Dosis", sans-serif;font-size: clamp(29px, 4vw, 36px);font-weight: 500;color: var(--brand-blue);margin: 0 0 16px;}
.industries-header p {font-family: "DM Sans", sans-serif;font-size: clamp(16px, 1.8vw, 18px);color: var(--ink-700);margin: 0;max-width: 600px;margin-inline: auto;}
.industries-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));gap: 30px;}
.industry-card {background: #fff;border: 1px solid #EEF0FF;border-radius: var(--radius);box-shadow: var(--shadow);padding: 30px;text-align: center;transition: transform .3s ease, box-shadow .3s ease;}
.industry-card:hover {transform: translateY(-5px);box-shadow: 0 12px 40px rgba(0, 0, 0, .15);}
.industry-icon {width: 53px;height: 53px;margin: 0 auto 20px;display: flex;align-items: center;justify-content: center;}
.industry-icon svg {width: 100%;height: 100%;}
.industry-card h4 {font-family: "Dosis", sans-serif;color: var(--brand-blue);font-weight: 700;font-size: clamp(18px, 2vw, 20px);margin: 0 0 15px;}
.industry-card h3 {font-family: "Dosis", sans-serif;color: var(--brand-blue);font-weight: 700;font-size: clamp(18px, 2vw, 20px);margin: 0 0 15px;}
.industry-card p {font-family: "DM Sans", sans-serif;color: var(--ink-900);font-size: clamp(14px, 1.6vw, 16px);line-height: 1.5;margin: 0 0 20px;}



.howto-section {background: linear-gradient(180deg, rgba(50, 58, 204, .06) 0%, rgba(50, 58, 204, .10) 100%);padding: 80px 0;}
.howto-wrap {display: grid;grid-template-columns: 1fr;gap: 28px;}
.howto-header {text-align: center;max-width: 820px;margin: 0 auto 12px;}
.howto-steps {counter-reset: step-counter;display: grid;grid-template-columns: repeat(2, minmax(260px, 1fr));gap: 18px;}
@media (max-width: 900px) {.howto-steps {grid-template-columns: 1fr;}}
.howto-step {background: #fff;border: 1px solid #EEF0FF;border-radius: var(--radius);box-shadow: var(--shadow);padding: 18px 18px 18px 62px;position: relative;}
.howto-step::before {counter-increment: step-counter;content: counter(step-counter);position: absolute;top: 16px;left: 16px;width: 32px;height: 32px;border-radius: 50%;display: flex;align-items: center;justify-content: center;font-family: "Dosis", sans-serif;font-weight: 700;background: var(--brand-yellow);color: var(--brand-blue);box-shadow: 0 2px 8px rgba(0, 0, 0, .08);}
.howto-step strong {display: block;font-family: "Dosis", sans-serif;color: var(--brand-blue);font-size: 18px;margin: 2px 0 8px;}
.howto-step a.btn {margin-top: 10px;}


/* REGRAS DE PADRONIZAÇÃO - ADICIONE AO CSS EXTERNO */

/* Garantir que TODOS os parágrafos e textos usem DM Sans */
p, 
.lead, 
.section-lead, 
.text-content, 
.answer-box, 
.answer-card p, 
.aeo-card p, 
.aeo-list li, 
.diff-card p, 
.industry-card p,
.faq-body,
.project-description,
.project-details span {
    font-family: "DM Sans", system-ui, sans-serif !important;
}

/* Garantir que TODOS os títulos usem Dosis */
h1, h2, h3, h4, h5, h6,
.section-title,
.card-title,
.feature-content h2,
.feature-content h3,
.industry-card h3,
.industry-card h4,
.diff-card h3,
.answer-card h3,
.aeo-card h2,
.aeo-card h3,
.aeo-list h3,
.aeo-list h4,
.keyword-group h3 {
    font-family: "Dosis", sans-serif !important;
}

/* Especificamente para a classe .lead que estava errada */
.lead {
    font-family: "DM Sans", system-ui, sans-serif !important;
}


.yt-strategic-questions {
  background: var(--brand-yellow);
  border-radius: 40px;
  padding: 50px 30px;
  max-width: var(--max);       /* mesmo max-width do .container */
  margin: 60px auto;           /* centraliza e cria espaço em cima/baixo */
  box-shadow: var(--shadow);   /* opcional, se quiser dar profundidade */
}

.yt-strategic-questions-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.yt-question-group {
  position: relative;
  flex: 1;
}

/* Ícones de interrogação */
.yt-question-icon {
  position: absolute;
  top: -40px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 6px solid var(--brand-blue);
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue-hero);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

.yt-question-group-left .yt-question-icon {
  left: 0;
  transform: translateX(-25%);
}

.yt-question-group-right .yt-question-icon {
  right: 0;
  transform: translateX(25%);
}

/* Cabeçalhos roxos (pill) */
.yt-question-heading {
  margin: 0 0 20px;
  padding: 12px 32px;
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-radius: 999px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

/* Cards brancos */
.yt-question-card {
  background: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  margin-bottom: 12px;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.45;
  box-shadow: 0 0 0 2px #E6E6E6;
}

/* Responsivo */
@media (max-width: 900px) {
  .yt-strategic-questions {
    padding: 40px 20px;
  }

  .yt-strategic-questions-inner {
    flex-direction: column;
    gap: 32px;
  }

  .yt-question-group-left .yt-question-icon,
  .yt-question-group-right .yt-question-icon {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }
}


/* ===== Case Studies ===== */

.yt-case-studies {
  padding: 4rem 1rem;
}

.yt-case-studies-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--brand-yellow); /* amarelo Yellow Tokens */
  border-radius: 80px;
  padding: 3.5rem 2rem 4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Cabeçalho */

.yt-case-studies-header {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 640px;
}

.yt-case-studies-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #2c2ccf; /* azul principal */
}

.yt-case-studies-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #272854;
}

/* Lista de cards */

.yt-case-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card individual */

.yt-case {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.9rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(30, 35, 140, 0.16);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.yt-case-content {
  flex: 1 1 auto;
}

.yt-case-title {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 0.4rem;
  color: #2c2ccf;
  font-weight: 700;
}

.yt-case-summary {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444767;
}

.yt-case-link {
  color: #2c2ccf;
  font-weight: 600;
  text-decoration: none;
}

.yt-case-link:hover,
.yt-case-link:focus {
  text-decoration: underline;
}

/* Botão com ícone */

.yt-case-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #2c2ccf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.yt-case-toggle:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.yt-icon-chevron {
  position: relative;
  width: 14px;
  height: 14px;
}

.yt-icon-chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #f8cc00;
  transform: rotate(45deg);
  margin-top: -2px;
}

/* Responsivo */

@media (max-width: 640px) {
  .yt-case-studies-inner {
    border-radius: 40px;
    padding: 2.5rem 1.25rem 3rem;
  }

  .yt-case {
    flex-direction: row;
    align-items: flex-start;
  }

  .yt-case-toggle {
    width: 40px;
    height: 40px;
  }
}

/* CORREÇÃO PARA OS H3 NA SEÇÃO HOWTO */
.howto-step h3 {
    display: block;
    font-family: "Dosis", sans-serif;
    color: var(--brand-blue);
    font-size: 18px;
    margin: 2px 0 8px;
    font-weight: 700; /* Para manter o peso do strong */
}


.breadcrumb {background: var(--brand-blue-hero);padding: 15px 0;font-size: 14px;}
.breadcrumb ol {display: flex;list-style: none;padding: 0;margin: 0;}
.breadcrumb li:not(:last-child):after {content: ">";margin: 0 10px;opacity: 0.6;color: var(--brand-yellow);}
.breadcrumb a {color: var(--brand-yellow);font-weight: 500;transition: opacity 0.2s ease;}
.breadcrumb a:hover {opacity: 0.8;}
.breadcrumb [aria-current="page"] {color: var(--brand-yellow);opacity: 0.8;}

/* ===== TABELA RESPONSIVA - CSS PURO ===== */

/* Container principal */
.table-container {
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg-light);
}

/* DESKTOP: Tabela normal (visível em telas grandes) */
.table-container .desktop-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-family: "DM Sans", system-ui, sans-serif;
  display: table;
}

/* Estilos da tabela desktop */
.desktop-table thead {
  background: var(--brand-blue);
}

.desktop-table thead th {
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  color: var(--brand-yellow);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  border-bottom: 3px solid var(--brand-yellow);
}

.desktop-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.desktop-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.desktop-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.desktop-table tbody tr:hover {
  background-color: rgba(50, 58, 204, 0.04);
}

.desktop-table tbody th {
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  padding: 1.25rem 1rem;
  background: rgba(247, 248, 255, 0.5);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.desktop-table tbody td {
  padding: 1.25rem 1rem;
  text-align: center;
  color: var(--ink-700);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

/* Estilo para células com "Yes" e "No" */
.desktop-table td.yes {
  color: #10b981;
  font-weight: 600;
}

.desktop-table td.no {
  color: #ef4444;
  font-weight: 600;
}

.desktop-table td.yes::before {
  content: "✓ ";
}

.desktop-table td.no::before {
  content: "✗ ";
}

/* Destaque para células importantes */
.desktop-table td.all-projects {
  color: var(--brand-blue);
  font-weight: 600;
}

.desktop-table td.only-projects {
  color: var(--ink-700);
  font-weight: 500;
}

/* MOBILE: Sistema de abas com CSS puro */
.mobile-tabs-wrapper {
  display: none;
}

/* Switch de tabelas usando radio buttons */
.mobile-tab-input {
  display: none;
}

.mobile-tab-label {
  display: inline-block;
  padding: 12px 20px;
  margin: 0 5px 15px 0;
  background: white;
  border: 2px solid var(--brand-blue);
  border-radius: var(--radius);
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  color: var(--brand-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-tab-label:hover {
  background: rgba(50, 58, 204, 0.1);
}

.mobile-tab-input:checked + .mobile-tab-label {
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-color: var(--brand-blue);
}

/* Esconde todas as tabelas mobile inicialmente */
.mobile-table {
  display: none;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
}

/* Mostra a tabela correspondente ao radio selecionado */
#tab-master:checked ~ #table-master,
#tab-manager:checked ~ #table-manager,
#tab-standard:checked ~ #table-standard {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Estilos das tabelas mobile */
.mobile-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: "DM Sans", system-ui, sans-serif;
}

.mobile-table thead {
  background: var(--brand-blue);
}

.mobile-table thead th {
  color: var(--brand-yellow);
  padding: 1rem;
  text-align: center;
  border-bottom: 3px solid var(--brand-yellow);
  font-family: "Dosis", sans-serif;
  font-weight: 600;
}

.mobile-table tbody th {
  padding: 1rem;
  text-align: left;
  color: var(--ink-900);
  background: rgba(247, 248, 255, 0.5);
  border-right: 2px solid var(--bg-light);
  font-family: "Dosis", sans-serif;
  font-weight: 600;
}

.mobile-table td {
  padding: 1rem;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Estilos para Yes/No nas tabelas mobile */
.mobile-table td.yes {
  color: #10b981;
  font-weight: 600;
}

.mobile-table td.no {
  color: #ef4444;
  font-weight: 600;
}

.mobile-table td.yes::before {
  content: "✓ ";
}

.mobile-table td.no::before {
  content: "✗ ";
}

/* Estilos para outras células nas tabelas mobile */
.mobile-table td.all-projects {
  color: var(--brand-blue);
  font-weight: 600;
}

.mobile-table td.only-projects {
  color: var(--ink-700);
  font-weight: 500;
}

/* Media Queries */
@media (max-width: 768px) {
  .table-container {
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow-x: visible;
  }
  
  /* Esconde tabela desktop no mobile */
  .table-container .desktop-table {
    display: none;
  }
  
  /* Mostra sistema mobile */
  .mobile-tabs-wrapper {
    display: block;
  }
  
  .mobile-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .mobile-tab-label {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .mobile-table th,
  .mobile-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  .mobile-tabs-wrapper {
    display: none;
  }
  
  .table-container .desktop-table {
    display: table;
  }
}


.faq-section {background: #fff;padding: 70px 0;}
.faq-wrap {max-width: 960px;margin: 0 auto;}
.faq-grid {display: grid;grid-template-columns: 1fr 1fr;gap: 18px;}
@media (max-width: 900px) {.faq-grid {grid-template-columns: 1fr;}}
.faq-item {border: 1px solid #EEF0FF;border-radius: var(--radius);background: #fff;box-shadow: var(--shadow);overflow: hidden;}
.faq-item summary {cursor: pointer;list-style: none;padding: 16px 48px 16px 16px;font-family: "Dosis", sans-serif;font-weight: 600;color: var(--brand-blue);font-size: 18px;position: relative;}
.faq-item summary::-webkit-details-marker {display: none;}
.faq-item summary::after {content: "+";position: absolute;right: 16px;top: 50%;transform: translateY(-50%);font-weight: 700;color: var(--brand-blue);}
.faq-item[open] summary::after {content: "–";}
.faq-body {padding: 0 16px 16px 16px;color: var(--ink-900);font-size: 16px;line-height: 1.55;border-top: 1px dashed #E6E8FF;}
.faq-item:focus-within,.faq-item summary:focus-visible {outline: 2px solid #AEB2FF;outline-offset: 2px;border-radius: 12px;}


/* ========================= */
/* ESTILOS DO FAQ - NOVOS */
/* ========================= */

.feature-faq {
    background: white;
    padding: 80px 0;
}

.feature-faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-faq h2 {
    color: var(--brand-blue);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.feature-faq h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FFAA00;
    border-radius: 2px;
}

.feature-faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-faq details {
    border: 1px solid #EEF0FF;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 26px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-faq details:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border-color: #D0D4FF;
}

.feature-faq details[open] {
    border-color: var(--brand-blue);
}

.feature-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 60px 20px 20px;
    font-family: "Dosis", sans-serif;
    font-weight: 600;
    color: var(--brand-blue);
    font-size: 18px;
    position: relative;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.feature-faq summary:hover {
    background-color: rgba(247, 248, 255, 0.5);
}

.feature-faq summary::-webkit-details-marker {
    display: none;
}

.feature-faq summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Dosis", sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 24px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 248, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-faq details[open] summary::after {
    content: "–";
    background: var(--brand-blue);
    color: white;
}

.feature-faq details p {
    padding: 0 20px 20px 20px;
    color: var(--ink-700);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.feature-faq details a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.feature-faq details a:hover {
    color: var(--brand-blue-hero);
    border-bottom-color: #FFAA00;
}
