
/* ===== hero-brindes-box19(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

/* ── HEADER ── */
header {
  position: relative;
  width: 100%;
  background: #121212;
  z-index: 100;
}

.header-top {
  display: flex;
  justify-content: flex-end;
  padding: 20px 60px 0;
}

.header-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 60px 16px;
}

.header-logo img { width: 83px; height: auto; display: block; }

.header-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.header-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
.header-tagline strong { font-weight: 700; color: #B24E02; }

.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.header-nav a:hover { color: #B24E02; }

/* hamburger — oculto no desktop */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
}
.header-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* menu mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1a1a1a;
  padding: 24px 32px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.mobile-menu a:hover { color: #B24E02; }

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%;
  min-height: 823px;
  background-color: #121212;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 321px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-content { width: 589px; flex-shrink: 0; }

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #B24E02;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #EDEDED;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 585px;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #00BB2D;
  border-radius: 50px;
  padding: 16px 32px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 18px rgba(0,187,45,0.5);
  filter: drop-shadow(0 0 18px rgba(0,187,45,0.7));
}
.hero-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.hero-btn span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.hero-mockup {
  position: relative;
  width: 826px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -100px;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  left: 55%; top: 55%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(182,103,40,0.67) 0%, rgba(80,45,18,0) 100%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-mockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* seta scroll */
.hero-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-arrow svg { width: 28px; height: 28px; opacity: 0.6; }

/* ── AUTORIDADE ── */
#autoridade {
  width: 100%;
  background: #121212;
  padding: 0 60px 60px;
}

.card-autoridade {
  background: #B24E02;
  border-radius: 16px;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.card-aut-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.card-aut-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-aut-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.card-aut-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-aut-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── RESPONSIVO ── */
@media (max-width: 1400px) {
  .hero-inner { padding: 60px 80px; }
  .hero-content { width: 500px; }
  .hero-mockup { width: 650px; }
  .hero-content h1 { font-size: 38px; }
}

@media (max-width: 1024px) {
  .header-top { padding: 12px 40px 0; }
  .header-bottom { padding: 12px 40px 16px; }
  .hero-inner { padding: 60px 48px; gap: 20px; }
  .hero-content { width: 420px; }
  .hero-mockup { width: 520px; margin-left: -40px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 17px; }
  #autoridade { padding: 0 40px 48px; }
  .card-autoridade { padding: 32px 40px; }
  .card-aut-num { font-size: 22px; }
}

@media (max-width: 768px) {
  /* header mobile */
  .header-top { display: none; }
  .header-bottom { padding: 16px 24px; }
  .header-hamburger { display: flex; margin-left: auto; }

  /* hero mobile */
  #hero { min-height: auto; }
  .hero-inner { flex-direction: column; padding: 48px 24px 60px; }
  .hero-content { width: 100%; }
  .hero-mockup { width: 100%; max-width: 420px; margin: 0 auto; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 17px; }

  /* autoridade mobile */
  #autoridade { padding: 0 16px 48px; }
  .card-autoridade {
    flex-direction: column;
    gap: 0;
    padding: 32px 24px;
    text-align: center;
  }
  .card-aut-item { justify-content: center !important; flex-direction: column; gap: 8px; padding: 20px 0; }
  .card-aut-bar { display: none; }
  .card-aut-sep { width: 80%; height: 1px; }
  .card-aut-text { align-items: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 15px; }
  .hero-btn span { font-size: 14px; }
  .card-aut-num { font-size: 20px; }
}


/* ===== dobra2-porquebox19(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

#porque {
  width: 100%;
  background: #121212;
  padding: 60px;
  font-family: 'Montserrat', sans-serif;
}

.porque-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.porque-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.porque-title span {
  color: #B24E02;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.porque-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 66.66%;
}

.porque-card {
  border: 1.5px solid #B24E02;
  border-radius: 12px;
  padding: 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  box-shadow: 0 0 16px rgba(178, 78, 2, 0.35);
}

.porque-card-icon {
  width: 64px;
  height: 64px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.porque-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.porque-card-label {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin-top: 28px;
}

.porque-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #00BB2D;
  border-radius: 50px;
  padding: 18px 40px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 18px rgba(0,187,45,0.5);
  filter: drop-shadow(0 0 18px rgba(0,187,45,0.7));
}
.porque-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.porque-btn span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 768px) {
  #porque { padding: 40px 20px; }
  .porque-inner { padding: 40px 20px 36px; gap: 36px; }
  .porque-title { font-size: 24px; }
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
  .porque-grid-bottom { width: 100%; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .porque-grid { grid-template-columns: 1fr; }
  .porque-grid-bottom { grid-template-columns: 1fr; width: 100%; }
  .porque-title { font-size: 22px; }
}


/* ===== dobra3-como-garantimos(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

#como {
  width: 100%;
  background: #121212;
  padding: 60px 60px 80px;
  font-family: 'Montserrat', sans-serif;
}

.como-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 64px;
}
.como-title span { color: #B24E02; }

.como-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 80px;
}

/* coluna esquerda */
.como-left {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.como-text p {
  font-size: 17px;
  font-weight: 400;
  color: #EDEDED;
  line-height: 1.7;
}
.como-text p + p { margin-top: 20px; }

.como-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #00BB2D;
  border-radius: 50px;
  padding: 18px 36px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 18px rgba(0,187,45,0.5);
  filter: drop-shadow(0 0 18px rgba(0,187,45,0.7));
}
.como-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.como-btn span {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

/* coluna direita */
.como-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.como-parceiro {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.como-parceiro-logo {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.como-parceiro-logo img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.como-parceiro-logo img.logo-colorido { filter: none; }

.como-parceiro-info { flex: 1; }
.como-parceiro-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.como-parceiro-info p {
  font-size: 15px;
  font-weight: 400;
  color: #BDBDBD;
  line-height: 1.65;
}

.como-sep {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── SANFONA MOBILE ── */
.accordion-header { display: none; }
.accordion-body { display: none; }

@media (max-width: 900px) {
  #como { padding: 40px 24px 60px; }
  .como-body { flex-direction: column; gap: 40px; }
  .como-left { flex: none; width: 100%; }
  .como-title { font-size: 22px; margin-bottom: 40px; }

  /* parceiro vira sanfona */
  .como-right { gap: 0; }
  .como-sep { display: none; }

  .como-parceiro {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .como-parceiro:last-child { border-bottom: none; }

  /* cabeçalho clicável */
  .accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
    background: #B24E02;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 0;
  }

  .accordion-header .como-parceiro-logo {
    flex: 0 0 60px;
    width: 60px;
  }
  .accordion-header .como-parceiro-logo img { max-height: 40px; }

  .accordion-title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }

  .accordion-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #fff;
    transition: transform 0.3s;
  }
  .accordion-header.open .accordion-arrow { transform: rotate(180deg); }

  /* corpo colapsável */
  .accordion-body {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
  }
  .accordion-body.open {
    max-height: 200px;
    padding: 14px 16px 18px;
  }
  .accordion-body p {
    font-size: 14px;
    color: #BDBDBD;
    line-height: 1.65;
  }

  /* oculta layout desktop no mobile */
  .como-parceiro-info { display: none; }
  .como-parceiro > .como-parceiro-logo { display: none; }
}


/* ===== dobra4-confiaram(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }

#confiaram {
  width: 100%;
  background: url('imagens/bg-confiaram.png') center center / cover no-repeat;
  padding: 64px 60px 72px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.confiaram-title {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 48px;
}
.confiaram-title strong {
  font-weight: 800;
}

.confiaram-logos {
  max-width: 900px;
  margin: 0 auto;
}
.confiaram-logos img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  #confiaram { padding: 48px 20px 56px; }
  .confiaram-title { font-size: 24px; margin-bottom: 32px; }
  .confiaram-logos { max-width: 100%; }
  .confiaram-logos img { width: 100%; }
}

@media (max-width: 480px) {
  #confiaram { padding: 40px 16px 48px; }
  .confiaram-title { font-size: 20px; }
}


/* ===== dobra5-solucoes(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

#solucoes {
  width: 100%;
  background: #121212;
  padding: 72px 60px 80px;
  font-family: 'Montserrat', sans-serif;
}

.solucoes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* imagem esquerda */
.solucoes-img {
  flex: 0 0 480px;
}
.solucoes-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* conteúdo direita */
.solucoes-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.solucoes-title {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.solucoes-title span {
  color: #B24E02;
  font-weight: 800;
}

.solucoes-sub {
  font-size: 16px;
  font-weight: 400;
  color: #BDBDBD;
  line-height: 1.65;
}

.solucoes-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.solucoes-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.solucoes-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #B24E02;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.solucoes-item-icon svg {
  width: 16px;
  height: 16px;
}

.solucoes-item-text {
  font-size: 15px;
  color: #EDEDED;
  line-height: 1.6;
}
.solucoes-item-text strong {
  font-weight: 700;
  color: #fff;
}

.solucoes-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #00BB2D;
  border-radius: 50px;
  padding: 18px 36px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 24px rgba(0,187,45,0.6), 0 0 48px rgba(0,187,45,0.25);
  filter: drop-shadow(0 0 20px rgba(0,187,45,0.8));
}
.solucoes-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.solucoes-btn span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1024px) {
  .solucoes-inner { gap: 48px; }
  .solucoes-img { flex: 0 0 360px; }
  .solucoes-title { font-size: 28px; }
}

@media (max-width: 768px) {
  #solucoes { padding: 48px 32px 60px; }
  .solucoes-inner { flex-direction: column; gap: 40px; }
  .solucoes-img { flex: none; width: 100%; max-width: 400px; margin: 0 auto; }
  .solucoes-title { font-size: 26px; }
}

@media (max-width: 480px) {
  #solucoes { padding: 40px 20px 48px; }
  .solucoes-title { font-size: 22px; }
}


/* ===== dobra6-depoimentos(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

#depoimentos {
  position: relative;
  width: 100%;
  background: #121212;
  padding: 72px 60px 80px;
  font-family: 'Montserrat', sans-serif;
}

/* glow laranja lateral direita */
#depoimentos::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(178,78,2,0.5) 0%, rgba(80,35,5,0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.dep-title {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.dep-title span {
  color: #B24E02;
  font-weight: 700;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.dep-card {
  background: #1a1a1a;
  border: 1px solid rgba(178,78,2,0.2);
  border-radius: 14px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dep-quote {
  font-size: 15px;
  font-weight: 400;
  color: #BDBDBD;
  line-height: 1.7;
  font-style: italic;
}
.dep-quote::before { content: '"'; }
.dep-quote::after  { content: '"'; }

.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #B24E02;
}
.dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dep-info { display: flex; flex-direction: column; gap: 2px; }
.dep-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.dep-role {
  font-size: 12px;
  font-weight: 400;
  color: #BDBDBD;
}
.dep-stars {
  font-size: 13px;
  color: #B24E02;
  letter-spacing: 2px;
  margin-top: 2px;
}

.dep-btn-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.dep-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #00BB2D;
  border-radius: 50px;
  padding: 18px 48px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 24px rgba(0,187,45,0.6), 0 0 48px rgba(0,187,45,0.25);
  filter: drop-shadow(0 0 20px rgba(0,187,45,0.8));
}
.dep-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.dep-btn span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 900px) {
  #depoimentos { padding: 48px 0 60px; }
  .dep-title { font-size: 26px; margin-bottom: 40px; padding: 0 32px; }
  .dep-btn-wrap { padding: 0 32px; }

  .dep-grid-wrap {
    overflow: hidden;
    width: 100%;
    margin: 0 0 40px;
  }
  .dep-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 0 32px 20px;
    max-width: 100%;
    cursor: grab;
    user-select: none;
  }
  .dep-grid.dragging { cursor: grabbing; }

  .dep-card {
    flex: 0 0 85vw;
    max-width: 360px;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  #depoimentos { padding: 40px 0 48px; }
  .dep-title { font-size: 22px; padding: 0 20px; }
  .dep-btn-wrap { padding: 0 20px; }
  .dep-grid { padding: 0 20px 20px; }
  .dep-card { flex: 0 0 88vw; }
  .dep-btn { padding: 16px 32px; }
  .dep-btn span { font-size: 14px; }
}


/* ===== dobra7-faq(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

#faq {
  width: 100%;
  background: #121212;
  padding: 72px 60px 80px;
  font-family: 'Montserrat', sans-serif;
}

.faq-title {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}
.faq-title span {
  color: #B24E02;
  font-weight: 700;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #EDEDED;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #B24E02;
  transition: transform 0.3s ease;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: #B24E02;
  line-height: 1.4;
}

.faq-answer {
  padding: 0 24px 20px 56px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
}

@media (max-width: 768px) {
  #faq { padding: 48px 32px 60px; }
  .faq-title { font-size: 26px; margin-bottom: 36px; }
}

@media (max-width: 480px) {
  #faq { padding: 40px 20px 48px; }
  .faq-title { font-size: 22px; }
  .faq-question-text { font-size: 14px; }
}


/* ===== dobra8-formulario-footer(1).html ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; background: #121212; }

/* ── FORMULÁRIO ── */
#formulario {
  width: 100%;
  background: #121212;
  padding: 72px 60px 80px;
  font-family: 'Montserrat', sans-serif;
}

.form-title {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.25;
}
.form-title span {
  color: #B24E02;
  font-weight: 700;
}

.form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.form-img {
  flex: 0 0 460px;
  position: relative;
}
.form-img::before {
  content: '';
  position: absolute;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(178,78,2,0.55) 0%, rgba(80,35,5,0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.form-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.form-box {
  flex: 1;
  background: #2a2a2a;
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.form-field input,
.form-field textarea {
  background: #EDEDED;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  width: 100%;
}
.form-field textarea {
  resize: none;
  height: 110px;
}

.form-submit {
  background: #B24E02;
  border: none;
  border-radius: 50px;
  padding: 16px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.88; }

/* ── FOOTER ── */
#footer {
  width: 100%;
  background: #0e0e0e;
  padding: 40px 60px;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* logo + tagline */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.footer-logo img {
  width: 72px;
  height: auto;
  display: block;
}
.footer-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}
.footer-tagline {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
.footer-tagline strong { font-weight: 700; color: #B24E02; }

/* endereço */
.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.footer-address strong { font-weight: 600; color: #fff; }

/* redes sociais */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #B24E02;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.8; }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

/* ── RODAPÉ LEGAL ── */
#rodape-legal {
  width: 100%;
  background: #0a0a0a;
  padding: 14px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1024px) {
  .form-inner { gap: 40px; }
  .form-img { flex: 0 0 360px; }
}

@media (max-width: 768px) {
  #formulario { padding: 40px 20px 52px; }
  .form-title { font-size: 22px; margin-bottom: 28px; }

  .form-inner { flex-direction: column; gap: 0; align-items: stretch; }
  .form-img { flex: none; width: 240px; margin: 0 auto 20px; }
  .form-img::before { width: 240px; height: 240px; }
  .form-box { padding: 28px 20px; border-radius: 14px; }

  #footer { padding: 36px 20px; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .footer-brand { flex-direction: column; align-items: center; gap: 10px; }
  .footer-divider { display: none; }
  .footer-address { text-align: center; }
  .footer-social { flex-wrap: wrap; justify-content: center; }

  #rodape-legal {
    padding: 14px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    font-size: 11px;
  }
}


/* ===== Ajustes gerais para publicação ===== */
html { scroll-behavior: smooth; }
a, button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
