/* ==========================================================================
   layout.css — Layout / Seções / Estrutura
   ========================================================================== */

/* Top bar (fixa) */
.top-bar{
  background: var(--cor-primaria);
  color: var(--cor-branco);
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-topbar);
}

.destaque{
  color: var(--cor-secundaria);
  font-weight: 900;
  font-size: 20px;
}

/* Containers */
.page{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px;
}

.text-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 14px;
}

/* Layout principal (landing) */
.main-container{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 100px;
  gap: 40px;
}

.hero-media,
.hero-content{
  flex: 1;
}

.hero-media{
  display: flex;
  justify-content: center;
}

.image-column img{
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-1);
}

.text-column{
  max-width: 600px;
}

/* Hero */
.hero{
  padding: 56px 100px;
  gap: 40px;
}

.hero-badge{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12,63,140,.10);
  color: var(--cor-primaria);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  margin-bottom: 14px;
}

.hero-title{
  font-size: 34px;
  line-height: 1.15;
  color: var(--cor-preto);
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-highlight{
  color: var(--cor-primaria);
  position: relative;
  display: inline-block;
}

.hero-highlight::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: rgba(252,173,11,.55);
  border-radius: 999px;
  z-index: -1;
}

.hero-list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  gap: 10px;
}

.hero-list li{
  position: relative;
  padding-left: 28px;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
}

.hero-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-secundaria);
  font-weight: 900;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Faixa */
.faixa-section{
  background: var(--cor-primaria);
  color: var(--cor-branco);
  padding: 14px 20px;
  text-align: center;
}

.faixa-section p{
  font-size: 12px;
  color: rgba(255,255,255,.90);
  margin: 0;
}

/* How it works */
.how-it-works-section{
  text-align: center;
  padding: 50px 0;
}

.features{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.background-degrade{
  background: linear-gradient(180deg, #ffffff 0%, var(--cor-fundo-claro) 100%);
}

/* Layout 2 colunas (internas APP) */
.page-layout{
  display: block;
}
.page-main{
  min-width: 0;
}

.two-col{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.col-main{
  flex: 1;
  min-width: 0;
}

.col-side{
  width: 340px;
  max-width: 100%;
}

/* Footer */
.footer-section{
  background: var(--cor-fundo-escuro);
  color: rgba(255,255,255,.78);
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}

.disclaimer{
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

.disclaimer-text{
  margin: 0;
}

.container-final{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ano-marca{
  text-align: left;
  flex: 1;
}

.notice{
  text-align: left;
  flex: 2;
}

.copyright{
  margin: 0;
}

.footer-links{
  margin: 8px 0 0;
}

.footer-links a{
  color: var(--cor-branco);
  text-decoration: none;
}

.footer-links a:hover{
  color: var(--cor-secundaria);
  text-decoration: underline;
}

/* escopo pra não brigar com topbar */
.footer-section .brand{
  color: var(--cor-secundaria);
  font-weight: 900;
}

.affiliate-notice{
  font-size: 12px;
  color: rgba(255,255,255,.70);
  line-height: 1.5;
  margin: 0;
}