:root{
  --blue:#0B57FF;
  --blue-2:#1f5eff;
  --orange:#FD891A;
  --orange-soft:#fff3e6;

  --text:#23293b;
  --muted:#667085;
  --line:#e6edf7;
  --panel:#f8fbff;
  --panel-2:#eef4ff;
  --white:#ffffff;

  --shadow-sm:0 10px 30px rgba(11,87,255,.08);
  --shadow-md:0 18px 50px rgba(11,87,255,.12);

  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;

  --container:1180px;
}

/* RESET */
*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}
.center{text-align:center;}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-row{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand-word{
  font-family:"Grandstander",cursive;
  font-size:60px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:#2f3550;
}
.nav-links a{
  padding:8px 4px;
  opacity:.88;
  transition:.2s ease;
}
.nav-links a:hover{opacity:1;}
.nav-links a.active{
  color:var(--blue);
  font-weight:700;
  opacity:1;
}

/* GLOBAL */
.section-head{
  max-width:940px;
  margin:0 auto 34px;
}
.section-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(11,87,255,.10);
  box-shadow:var(--shadow-sm);
  color:var(--blue);
  font-size:13px;
  font-weight:600;
}
.section-title{
  margin:16px 0 12px;
  font-family:Poppins,sans-serif;
  font-size:46px;
  font-weight:800;
  line-height:1.08;
  color:var(--blue);
}
.section-subtitle{
  margin:0 auto;
  max-width:860px;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.85;
}

/* HERO */
.contact-hero{
  position:relative;
  overflow:hidden;
  padding:64px 0 52px;
  background:
    radial-gradient(circle at 15% 10%, rgba(11,87,255,.08) 0, transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(253,137,26,.12) 0, transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero-shell{
  max-width:960px;
  margin:0 auto;
  text-align:center;
}
.hero-title{
  margin:18px 0 16px;
  font-family:Poppins,sans-serif;
  font-size:58px;
  font-weight:800;
  line-height:1.02;
  color:var(--blue);
}
.hero-text{
  margin:0 auto;
  max-width:840px;
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:26px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(11,87,255,.10);
  color:#3b4563;
  font-size:14px;
  font-weight:500;
  box-shadow:var(--shadow-sm);
}
.hero-badge .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--orange);
}

/* CHANNELS */
.channels-section{
  padding:78px 0 24px;
}
.channels-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.channel-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-sm);
  transition:.25s ease;
}
.channel-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(11,87,255,.12);
}
.channel-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(180deg, #f3f7ff 0%, #fff4e8 100%);
  border:1px solid rgba(11,87,255,.12);
  color:var(--blue);
  font-size:20px;
  font-weight:700;
  margin-bottom:18px;
}
.channel-title{
  margin:0 0 10px;
  color:var(--blue);
  font-size:20px;
  line-height:1.3;
  font-weight:800;
  word-break:break-word;
}
.channel-text{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

/* FAQ */
.faq-section{
  padding:24px 0 86px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.faq-column{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-sm);
}

.faq-column-head{
  margin-bottom:18px;
}

.faq-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:var(--orange-soft);
  border:1px solid rgba(253,137,26,.22);
  color:var(--orange);
  font-size:13px;
  font-weight:700;
}

.faq-item{
  border-top:1px solid rgba(11,87,255,.12);
  padding:16px 0;
}

.faq-item:last-child{
  border-bottom:1px solid rgba(11,87,255,.12);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding-right:34px;
  color:var(--blue);
  font-size:16px;
  line-height:1.55;
  font-weight:700;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:-2px;
  font-size:28px;
  line-height:1;
  color:var(--blue);
  font-weight:500;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-content{
  padding-top:14px;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}

.faq-content p{
  margin:0 0 14px;
}

.faq-content p:last-child{
  margin-bottom:0;
}

/* lista com bolinha check */
.faq-check-list{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.faq-check-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--muted);
  line-height:1.7;
}

.faq-check-list li::before{
  content:"";
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid var(--blue);
  flex-shrink:0;
  margin-top:1px;
  background:
    linear-gradient(transparent, transparent),
    linear-gradient(transparent, transparent);
  position:relative;
  box-sizing:border-box;
}

.faq-check-list li{
  position:relative;
  padding-left:0;
}

.faq-check-list li::after{
  content:"";
  position:absolute;
  left:6px;
  top:8px;
  width:8px;
  height:4px;
  border-left:3px solid var(--blue);
  border-bottom:3px solid var(--blue);
  transform:rotate(-45deg);
}

/* RESPONSIVO FAQ */
@media (max-width:1100px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .faq-column{
    border-radius:24px;
  }

  .faq-item summary{
    font-size:15px;
  }

  .faq-content{
    font-size:14.5px;
  }
}

/* FOOTER */
.site-footer{
  background:var(--orange);
  color:#fff;
  padding:40px 0 8px;
  margin-top:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
  padding-bottom:16px;
}
.footer-logo{
  font-family:"Grandstander",cursive;
  font-size:40px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
  margin-bottom:8px;
}
.footer-text{
  margin:0 0 12px;
  color:#fff;
  line-height:1.6;
  max-width:420px;
  font-size:14px;
}
.footer-social{
  display:flex;
  gap:10px;
}
.footer-social a{
  width:34px;
  height:34px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.4);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.footer-links{
  display:grid;
  gap:6px;
  justify-items:end;
  text-align:right;
}
.footer-links a{
  color:#fff;
  font-weight:500;
  font-size:14px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.35);
  padding:10px 0;
  color:#fff;
  font-size:12px;
  text-align:left;
}

/* RESPONSIVO */
@media (max-width:1100px){
  .channels-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .faq-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-links{
    justify-items:start;
    text-align:left;
  }
}

@media (max-width:980px){
  .header-row{
    min-height:auto;
    padding:16px 0;
    flex-direction:column;
    align-items:center;
    gap:14px;
  }

  .nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:12px 16px;
    width:100%;
  }

  .brand-word{
    font-size:40px;
  }

  .contact-hero{
    padding:44px 0 34px;
  }

  .hero-title{
    font-size:42px;
  }

  .section-title{
    font-size:38px;
  }

  .channels-section{
    padding:58px 0 20px;
  }

  .faq-section{
    padding:16px 0 64px;
  }
}

@media (max-width:720px){
  .container{
    width:min(var(--container), calc(100% - 32px));
  }

  .hero-title{
    font-size:34px;
  }

  .hero-text{
    font-size:15px;
    line-height:1.8;
  }

  .section-title{
    font-size:32px;
  }

  .section-subtitle{
    font-size:14.5px;
    line-height:1.8;
  }

  .channels-grid{
    grid-template-columns:1fr;
  }

  .channel-card,
  .faq-column{
    border-radius:24px;
  }

  .channel-title{
    font-size:18px;
  }

  .faq-item summary{
    font-size:15px;
  }
}

.faq-content {
  color: #55627a;
  font-size: 16px;
  line-height: 1.65;
}

.faq-step {
  margin-top: 24px;
}

.faq-step-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #465673;
}

.faq-step-title .emoji {
  flex-shrink: 0;
}

.faq-step-text {
  margin: 0 0 14px;
  color: #5e6b84;
}

/* LISTA PADRÃO */
.faq-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: #5e6b84;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
}

.faq-check-list li:last-child {
  margin-bottom: 0;
}

.faq-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 2px solid #0B57FF;
  border-radius: 50%;
  color: #0B57FF;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-sizing: border-box;
}

/* BLOCO 2 COLUNAS */
.faq-two-col {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: start;
  margin-top: 12px;
}

.faq-two-col + .faq-two-col {
  margin-top: 18px;
}

/* TÍTULO DA COLUNA ESQUERDA */
.faq-two-col-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.faq-two-col-label-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #465673;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* COLUNA DIREITA */
.faq-two-col-content {
  min-width: 0;
}

.faq-two-col-content .faq-check-list li {
  margin-bottom: 10px;
}

/* SE QUISER DAR UM FUNDO LEVE */
.faq-two-col-card {
  padding: 14px 16px;
  border: 1px solid #E8EEF8;
  border-radius: 16px;
  background: #F8FBFF;
}

/* DESTAQUE DE TEXTO */
.faq-highlight {
  font-weight: 700;
  color: #3F4D67;
}

/* RESPONSIVO */
@media (max-width: 640px) {
  .faq-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .faq-two-col-label-text {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .faq-two-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-two-col-label {
    margin-bottom: 2px;
  }
}

.faq-content > * {
  margin-bottom: 16px;
}

.faq-check-list {
  margin-bottom: 20px;
}