/* ================================
   LOGIN / AUTH
================================ */

.auth-page{
  min-height:100vh;
}

.auth-screen{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:24px;
}

.auth-card{
  width:min(460px,100%);
  background:rgba(255,253,246,.86);
  backdrop-filter:blur(18px);
  border:1px solid var(--line);
  box-shadow:0 30px 80px rgba(56,45,36,.12);
  padding:42px 34px;
  text-align:center;
}

.auth-logo{
  justify-content:center;
  margin-bottom:34px;
}

.auth-card h1{
  font-family:"Playfair Display",serif;
  font-size:52px;
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:600;
  margin-bottom:18px;
}

.auth-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
  max-width:360px;
  margin:0 auto 28px;
}

.auth-form{
  display:grid;
  gap:12px;
}

.auth-form input{
  width:100%;
  border:1px solid var(--line);
  background:#fffdf6;
  padding:16px 18px;
  font-size:14px;
  color:var(--ink);
  outline:none;
}

.auth-form input:focus{
  border-color:var(--gold);
}

.auth-form button{
  border:none;
  background:var(--ink);
  color:var(--paper);
  padding:16px 18px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.auth-form button:hover{
  background:var(--brown);
  transform:translateY(-2px);
}

.form-error{
  display:block;
  margin-top:16px;
  color:#9b3b2f;
  font-size:12px;
  font-weight:600;
}

.auth-link{
  display:inline-block;
  margin-top:22px;
  color:var(--muted);
  font-size:12px;
}



/* ================================
   DASHBOARD
================================ */

.dashboard-hero{
  padding:90px 0 50px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  align-items:end;
}

.dashboard-hero h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(52px,8vw,96px);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:600;
}

.dashboard-hero h1 em{
  display:block;
  color:var(--brown);
  font-style:italic;
  font-weight:500;
}

.dashboard-hero p{
  margin-top:24px;
  max-width:540px;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
  font-weight:300;
}

.dashboard-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:28px;
}

.main-coupon-card small{
  display:block;
  color:var(--brown);
  font-size:10px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.coupon-display{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  border:1px dashed var(--gold);
  background:rgba(203,178,121,.12);
  padding:16px;
}

.coupon-display strong{
  font-size:22px;
  letter-spacing:.12em;
  color:var(--brown);
}

.coupon-display button{
  border:none;
  background:var(--ink);
  color:var(--paper);
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
}

.main-coupon-card p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.7;
  font-size:13px;
}

.logout-button{
  position:absolute;
  right:18px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--muted);
  padding:9px 14px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.3s ease;
}

.logout-button:hover{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
  gap:16px;
}

.stat-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
  min-height:135px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.stat-card span{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.stat-card strong{
  font-family:"Playfair Display",serif;
  font-size:36px;
  letter-spacing:-.05em;
  color:var(--brown);
}

.orders-table{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.orders-header,
.order-row{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr 1fr;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  font-size:13px;
}

.orders-header{
  background:rgba(203,178,121,.12);
  color:var(--brown);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:10px;
}

.order-row{
  color:var(--muted);
}

.empty-state{
  padding:28px;
  color:var(--muted);
  font-size:14px;
}

/* RESPONSIVO DO DASHBOARD */

@media(max-width:900px){
  .dashboard-hero,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .orders-header,
  .order-row{
    grid-template-columns:1fr;
  }
}

/* ================================
   LANDING PAGE — LUVENNE CLUB
================================ */

.landing-header{
  justify-content:center;
}

.header-login{
  position:absolute;
  right:18px;
  border:1px solid var(--line);
  padding:9px 14px;
  border-radius:999px;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.3s ease;
}

.header-login:hover{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}

.landing-hero{
  padding:95px 0 80px;
  min-height:88vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.landing-hero h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(52px,8vw,106px);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:600;
  max-width:700px;
}

.landing-hero h1 em{
  display:block;
  color:var(--brown);
  font-style:italic;
  font-weight:500;
}

.landing-hero p{
  margin-top:24px;
  max-width:540px;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
  font-weight:300;
}

.landing-visual{
  position:relative;
  min-height:620px;
}

.landing-card{
  position:absolute;
  background:var(--paper);
  border:1px solid var(--line);
  padding:14px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.landing-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.88);
}

.landing-card.large{
  width:68%;
  height:600px;
  right:0;
  top:0;
  border-radius:2px 90px 2px 2px;
}

.landing-card.small{
  width:48%;
  height:360px;
  left:0;
  bottom:30px;
}

.brand-story-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.story-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:28px;
  min-height:230px;
}

.story-card span{
  display:block;
  color:var(--brown);
  font-size:11px;
  font-weight:700;
  letter-spacing:.2em;
  margin-bottom:30px;
}

.story-card h3{
  font-family:"Playfair Display",serif;
  font-size:34px;
  letter-spacing:-.05em;
  margin-bottom:12px;
}

.story-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}

.manifesto-box{
  background:var(--ink);
  color:var(--paper);
  padding:56px;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:40px;
  align-items:end;
}

.manifesto-box h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(42px,6vw,86px);
  line-height:.9;
  letter-spacing:-.06em;
  font-weight:600;
}

.manifesto-box h2 em{
  display:block;
  color:var(--gold);
  font-style:italic;
  font-weight:500;
}

.manifesto-box p{
  color:rgba(255,253,246,.68);
  line-height:1.85;
  font-size:15px;
  font-weight:300;
}

.how-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.how-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:26px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.how-card strong{
  font-family:"Playfair Display",serif;
  color:var(--brown);
  font-size:44px;
  line-height:1;
}

.how-card h3{
  font-family:"Playfair Display",serif;
  font-size:30px;
  letter-spacing:-.05em;
}

.how-card p{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.preview-products{
  display:grid;
  grid-template-columns:1fr 1.25fr 1fr;
  gap:18px;
  align-items:end;
}

.preview-card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:12px;
  box-shadow:var(--shadow);
}

.preview-card img{
  width:100%;
  height:330px;
  object-fit:cover;
}

.preview-card.big img{
  height:460px;
}

.preview-card small{
  display:block;
  margin-top:16px;
  color:var(--brown);
  font-size:10px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.fit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.fit-item{
  background:rgba(255,253,246,.72);
  border:1px solid var(--line);
  padding:22px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  box-shadow:0 10px 28px rgba(56,45,36,.045);
}

.application-section{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:48px;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:42px;
  align-items:start;
}

.application-section h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(42px,6vw,78px);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:600;
}

.application-section p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.85;
  font-size:15px;
  font-weight:300;
}

.application-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-group{
  display:grid;
  gap:8px;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group label{
  font-size:11px;
  color:var(--brown);
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fbf6e9;
  padding:15px 16px;
  font-size:14px;
  color:var(--ink);
  outline:none;
  font-family:Inter,sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:var(--gold);
}

.application-form button{
  grid-column:1 / -1;
  border:none;
  background:var(--ink);
  color:var(--paper);
  padding:17px 20px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.application-form button:hover{
  background:var(--brown);
  transform:translateY(-2px);
}

.application-form button:disabled{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
}

#application-message{
  grid-column:1 / -1;
  font-size:13px;
  font-weight:600;
  margin-top:4px;
}

#application-message.success{
  color:#3f7a4d;
}

#application-message.error{
  color:#9b3b2f;
}

/* RESPONSIVO DA LANDING */

@media(max-width:1000px){

  .landing-hero,
  .manifesto-box,
  .application-section{
    grid-template-columns:1fr;
  }

  .landing-visual{
    min-height:560px;
  }

  .brand-story-grid,
  .fit-grid{
    grid-template-columns:1fr;
  }

  .how-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .preview-products{
    grid-template-columns:1fr;
  }

  .preview-card.big img,
  .preview-card img{
    height:360px;
  }
}

@media(max-width:680px){

  .header-login{
    position:static;
    margin-left:18px;
  }

  .landing-hero{
    padding-top:70px;
  }

  .landing-visual{
    min-height:auto;
    display:grid;
    gap:14px;
  }

  .landing-card,
  .landing-card.large,
  .landing-card.small{
    position:relative;
    width:100%;
    height:380px;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
  }

  .how-grid{
    grid-template-columns:1fr;
  }

  .manifesto-box,
  .application-section{
    padding:32px 24px;
  }

  .application-form{
    grid-template-columns:1fr;
  }
}

/* ================================
   ADMIN — LUVENNE CLUB
================================ */

.admin-list{
  display:grid;
  gap:18px;
}

.admin-list.compact{
  gap:14px;
}

.admin-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.admin-card-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:20px;
}

.admin-card-top small{
  display:block;
  color:var(--brown);
  font-size:10px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.admin-card-top h3{
  font-family:"Playfair Display",serif;
  font-size:34px;
  letter-spacing:-.05em;
  line-height:1;
}

.admin-card-top p{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}

.status-pill{
  padding:8px 12px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  border:1px solid var(--line);
  color:var(--muted);
}

.status-pill.pendente{
  background:rgba(203,178,121,.14);
  color:var(--brown);
}

.status-pill.aprovado{
  background:rgba(63,122,77,.12);
  color:#3f7a4d;
}

.status-pill.recusado{
  background:rgba(155,59,47,.10);
  color:#9b3b2f;
}

.admin-card-details{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 20px;
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.admin-card-details p{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.admin-card-details strong{
  color:var(--ink);
}

.admin-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.admin-actions a,
.admin-actions button,
.mini-actions button{
  border:1px solid var(--line);
  background:transparent;
  color:var(--muted);
  padding:10px 13px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s ease;
}

.admin-actions a:hover,
.admin-actions button:hover,
.mini-actions button:hover{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}

.admin-panel-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:22px;
  align-items:start;
}

.admin-form{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.admin-form h3{
  grid-column:1/-1;
  font-family:"Playfair Display",serif;
  font-size:36px;
  letter-spacing:-.05em;
  margin-bottom:4px;
}

.admin-form button{
  grid-column:1/-1;
  border:none;
  background:var(--ink);
  color:var(--paper);
  padding:16px 18px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.admin-form button:hover{
  background:var(--brown);
  transform:translateY(-2px);
}

.admin-form small{
  grid-column:1/-1;
  font-size:12px;
  font-weight:700;
}

.admin-form small.success{
  color:#3f7a4d;
}

.admin-form small.error{
  color:#9b3b2f;
}

.admin-block-title{
  font-family:"Playfair Display",serif;
  font-size:36px;
  letter-spacing:-.05em;
  margin-bottom:18px;
}

.admin-mini-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:18px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
}

.admin-mini-card h4{
  font-family:"Playfair Display",serif;
  font-size:28px;
  letter-spacing:-.04em;
  line-height:1;
}

.admin-mini-card p{
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  margin-top:6px;
}

.mini-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}

.product-admin-card{
  grid-template-columns:86px 1fr auto;
}

.product-admin-card img{
  width:86px;
  height:86px;
  object-fit:cover;
  border:1px solid var(--line);
}

.admin-checks{
  grid-column:1/-1;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

.admin-checks label{
  display:flex;
  align-items:center;
  gap:8px;
}

/* RESPONSIVO ADMIN */

@media(max-width:950px){
  .admin-panel-grid,
  .admin-card-details{
    grid-template-columns:1fr;
  }

  .admin-mini-card,
  .product-admin-card{
    grid-template-columns:1fr;
  }

  .mini-actions{
    justify-content:flex-start;
  }

  .admin-form{
    grid-template-columns:1fr;
  }
}

/* BOTÃO PARA ABRIR FORMULÁRIO MANUAL */
.admin-toggle-button{
  width:100%;
  border:1px solid var(--line);
  background:rgba(255,253,246,.75);
  color:var(--brown);
  padding:16px 18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  margin-bottom:16px;
  transition:.25s ease;
}

.admin-toggle-button:hover{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}

.hidden-form{
  display:none;
}

/* ================================
   SOLICITAÇÃO DE PAGAMENTO PIX
================================ */

.payout-grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:22px;
  align-items:start;
}

.payout-summary small{
  display:block;
  color:var(--brown);
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.payout-summary strong{
  display:block;
  font-family:"Playfair Display",serif;
  font-size:72px;
  line-height:1;
  letter-spacing:-.06em;
  color:var(--brown);
}

.payout-summary p{
  margin-top:20px;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

.payout-form{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.payout-form .full{
  grid-column:1/-1;
}

.payout-form select,
.payout-form input,
.payout-form textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fbf6e9;
  padding:15px 16px;
  font-size:14px;
  color:var(--ink);
  outline:none;
  font-family:Inter,sans-serif;
}

.payout-form select:focus,
.payout-form input:focus,
.payout-form textarea:focus{
  border-color:var(--gold);
}

.payout-form button{
  grid-column:1/-1;
  border:none;
  background:var(--ink);
  color:var(--paper);
  padding:17px 20px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.payout-form button:hover{
  background:var(--brown);
  transform:translateY(-2px);
}

.payout-form button:disabled{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
}

#payout-message{
  grid-column:1/-1;
  font-size:13px;
  font-weight:700;
}

#payout-message.success{
  color:#3f7a4d;
}

#payout-message.error{
  color:#9b3b2f;
}

@media(max-width:850px){
  .payout-grid,
  .payout-form{
    grid-template-columns:1fr;
  }
}

/* ================================
   RANKING DE INFLUENCIADORAS
================================ */

.ranking-table{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.ranking-header,
.ranking-row{
  display:grid;
  grid-template-columns:.4fr 1.5fr .9fr .7fr 1fr 1fr .8fr;
  gap:14px;
  align-items:center;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
}

.ranking-header{
  background:rgba(203,178,121,.12);
  color:var(--brown);
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ranking-row{
  color:var(--muted);
  font-size:13px;
}

.ranking-row strong{
  display:block;
  color:var(--ink);
  font-size:14px;
  margin-bottom:4px;
}

.ranking-row small{
  color:var(--muted);
  font-size:11px;
}

.ranking-position{
  font-family:"Playfair Display",serif;
  color:var(--brown);
  font-size:28px;
  line-height:1;
  letter-spacing:-.05em;
}

/* MÉTRICAS NA LISTA DE INFLUENCERS */

.influencer-metric-card{
  grid-template-columns:1fr auto;
}

.influencer-metrics{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
  gap:10px;
  margin-top:14px;
}

.influencer-metrics span{
  border:1px solid var(--line);
  background:rgba(248,244,227,.55);
  padding:12px;
}

.influencer-metrics small{
  display:block;
  color:var(--muted);
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.influencer-metrics strong{
  display:block;
  font-family:"Playfair Display",serif;
  font-size:24px;
  color:var(--brown);
  letter-spacing:-.04em;
}

/* RESPONSIVO RANKING */

@media(max-width:950px){
  .ranking-header{
    display:none;
  }

  .ranking-row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .ranking-row span{
    display:flex;
    justify-content:space-between;
    gap:12px;
  }

  .ranking-position{
    font-size:34px;
  }

  .influencer-metric-card{
    grid-template-columns:1fr;
  }

  .influencer-metrics{
    grid-template-columns:1fr;
  }
}

/* ================================
   SOLICITAÇÕES PIX — ADMIN
================================ */

.payout-request-card{
  position:relative;
}

.status-pill.pago{
  background:rgba(63,122,77,.12);
  color:#3f7a4d;
}

.status-pill.recusado{
  background:rgba(155,59,47,.10);
  color:#9b3b2f;
}

.status-pill.pendente{
  background:rgba(203,178,121,.14);
  color:var(--brown);
}

/* ======================================================
   DASHBOARD MOBILE PREMIUM — LUVENNE CLUB
====================================================== */

body.dashboard-app{
  margin:0;
  min-height:100vh;
  background:#f8f4e3;
  color:#221c18;
  font-family:"Inter", sans-serif;
}

.dashboard-phone{
  width:100%;
  max-width:480px;
  min-height:100vh;
  margin:0 auto;
  padding:22px 16px 42px;
  background:
    radial-gradient(circle at top left, rgba(203,178,121,0.20), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f8f4e3 100%);
}

/* TOPO */
.dashboard-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.dashboard-logo-wrap{
  display:flex;
  align-items:center;
}

.dashboard-logo{
  width:136px;
  height:auto;
  display:block;
}

.dashboard-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.icon-button{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(107,94,85,0.16);
  background:rgba(255,255,255,0.45);
  color:#3a2f29;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

.logout-icon{
  font-size:20px;
}

/* CARD PRINCIPAL */
.wallet-card{
  position:relative;
  padding:26px 24px 24px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(203,178,121,0.26), transparent 30%),
    linear-gradient(135deg, #1d1916 0%, #2b241f 48%, #151311 100%);
  color:#f8f4e3;
  box-shadow:0 24px 60px rgba(47,38,34,0.24);
  overflow:hidden;
}

.wallet-card::after{
  content:"";
  position:absolute;
  inset:auto -80px -110px auto;
  width:220px;
  height:220px;
  background:rgba(203,178,121,0.10);
  border-radius:50%;
  filter:blur(8px);
}

.wallet-head{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:28px;
}

.wallet-head h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:28px;
  font-weight:500;
  line-height:1.05;
  color:#f8f4e3;
}

.wallet-head p{
  margin:6px 0 0;
  font-size:14px;
  color:rgba(248,244,227,0.64);
}

.wallet-monogram{
  font-family:"Playfair Display", serif;
  font-size:86px;
  line-height:.8;
  color:#cbb279;
  opacity:.9;
}

.wallet-balance{
  position:relative;
  z-index:2;
  margin-bottom:14px;
}

.wallet-balance span{
  display:block;
  margin-bottom:8px;
  font-size:13px;
  color:rgba(248,244,227,0.72);
}

.wallet-balance strong{
  display:block;
  font-family:"Playfair Display", serif;
  font-size:50px;
  line-height:.95;
  font-weight:500;
  letter-spacing:-0.05em;
  color:#fffaf0;
}

.wallet-growth{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:8px;
  margin:16px 0 22px;
}

.wallet-growth span,
.wallet-growth small{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

.wallet-growth span{
  background:#cbb279;
  color:#211a17;
}

.wallet-growth small{
  background:rgba(248,244,227,0.08);
  color:#f8f4e3;
  border:1px solid rgba(248,244,227,0.10);
}

.wallet-buttons{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}

.wallet-action{
  min-height:82px;
  border-radius:18px;
  background:#fffaf0;
  color:#3a2f29;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:500;
  box-shadow:inset 0 0 0 1px rgba(107,94,85,0.08);
}

.wallet-action span{
  font-size:24px;
  line-height:1;
  color:#6b5e55;
}

/* CARDS */
.dashboard-card-soft{
  margin-top:16px;
  padding:20px;
  border-radius:24px;
  background:rgba(255,250,240,0.72);
  border:1px solid rgba(107,94,85,0.08);
  box-shadow:0 16px 42px rgba(107,94,85,0.08);
  backdrop-filter:blur(12px);
}

.mini-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.mini-section-head.vertical{
  display:block;
}

.mini-section-head h2,
.commission-card h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:24px;
  font-weight:500;
  color:#211a17;
}

.mini-section-head p,
.commission-card p{
  margin:5px 0 0;
  font-size:14px;
  line-height:1.6;
  color:#756b63;
}

.mini-section-head a{
  color:#6b5e55;
  font-size:13px;
  text-decoration:none;
}

/* AVATARES */
.avatar-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar-item,
.avatar-more{
  width:48px;
  height:48px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d8c7a5;
  border:3px solid #fffaf0;
  box-shadow:0 8px 18px rgba(107,94,85,0.14);
}

.avatar-item:nth-child(1){
  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
    url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=200&q=80") center/cover;
}

.avatar-item:nth-child(2){
  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
    url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=200&q=80") center/cover;
}

.avatar-item:nth-child(3){
  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
    url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=200&q=80") center/cover;
}

.avatar-item:nth-child(4){
  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=200&q=80") center/cover;
}

.avatar-more{
  background:#efe6d2;
  color:#6b5e55;
  font-weight:600;
}

/* COMISSÃO */
.commission-card{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  align-items:end;
  gap:16px;
}

.commission-card strong{
  display:block;
  margin-top:12px;
  font-family:"Playfair Display", serif;
  font-size:34px;
  font-weight:500;
  letter-spacing:-0.04em;
  color:#211a17;
}

.fake-chart{
  color:#a88a4d;
}

.fake-chart svg{
  width:100%;
  height:88px;
  display:block;
}

/* ATIVIDADE / PEDIDOS */
.activity-card{
  padding-bottom:12px;
}

.dashboard-orders-mobile{
  overflow:hidden;
}

.dashboard-orders-mobile .orders-header{
  display:none;
}

.dashboard-orders-mobile #orders-list{
  display:flex;
  flex-direction:column;
  gap:0;
}

.dashboard-orders-mobile .order-row{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:10px;
  padding:14px 0;
  border-bottom:1px solid rgba(107,94,85,0.10);
}

.dashboard-orders-mobile .order-row:last-child{
  border-bottom:none;
}

.dashboard-orders-mobile .order-row span{
  font-size:13px;
  color:#6b5e55;
}

.dashboard-orders-mobile .order-row span:first-child{
  font-size:15px;
  font-weight:600;
  color:#211a17;
}

.dashboard-orders-mobile .order-row span:nth-child(2){
  display:none;
}

.dashboard-orders-mobile .order-row span:nth-child(3){
  justify-self:end;
  font-size:16px;
  font-weight:600;
  color:#a88a4d;
}

.dashboard-orders-mobile .order-row span:nth-child(4),
.dashboard-orders-mobile .order-row span:nth-child(5){
  font-size:12px;
}

/* RESUMO */
.summary-strip{
  margin-top:16px;
  padding:18px 14px;
  border-radius:24px;
  background:#fffaf0;
  border:1px solid rgba(107,94,85,0.08);
  box-shadow:0 16px 42px rgba(107,94,85,0.08);
  display:grid;
  grid-template-columns:.8fr 1.3fr 1fr;
  gap:10px;
  text-align:center;
}

.summary-strip div{
  min-width:0;
}

.summary-strip div + div{
  border-left:1px solid rgba(107,94,85,0.12);
}

.summary-strip span{
  display:block;
  margin-bottom:8px;
  font-size:11px;
  color:#756b63;
}

.summary-strip strong{
  display:block;
  font-family:"Playfair Display", serif;
  font-size:24px;
  font-weight:500;
  line-height:1.1;
  color:#211a17;
  word-break:break-word;
}

.summary-strip div:nth-child(3) strong{
  color:#a88a4d;
  font-size:18px;
  font-family:"Inter", sans-serif;
  font-weight:600;
}

.copy-mini-button{
  margin-top:8px;
  border:none;
  border-radius:999px;
  padding:7px 10px;
  background:#2f2622;
  color:#f8f4e3;
  font-size:11px;
  cursor:pointer;
}

/* MINI STATS */
.mini-stats-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.mini-stat-card{
  padding:16px;
  border-radius:22px;
  background:#fffaf0;
  border:1px solid rgba(107,94,85,0.08);
}

.mini-stat-card span{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  color:#756b63;
}

.mini-stat-card strong{
  display:block;
  font-size:18px;
  color:#211a17;
}

/* FORM PIX */
.payout-section{
  margin-top:18px;
}

.premium-form{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.premium-form .form-group{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.premium-form .form-group.full{
  grid-column:1 / -1;
}

.premium-form label{
  font-size:12px;
  color:#6b5e55;
  font-weight:600;
}

.premium-form input,
.premium-form select,
.premium-form textarea{
  width:100%;
  border:none;
  outline:none;
  border-radius:16px;
  padding:14px 14px;
  background:#f8f4e3;
  border:1px solid rgba(107,94,85,0.12);
  color:#211a17;
  font-size:14px;
  font-family:"Inter", sans-serif;
}

.premium-form textarea{
  resize:none;
}

.premium-form button{
  grid-column:1 / -1;
  min-height:54px;
  border:none;
  border-radius:16px;
  background:#2f2622;
  color:#f8f4e3;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

#payout-message{
  grid-column:1 / -1;
  display:block;
  min-height:20px;
  font-size:13px;
}

#payout-message.error{
  color:#b84a3f;
}

#payout-message.success{
  color:#4b7d45;
}

/* CATÁLOGO E MATERIAIS */
body.dashboard-app .catalog-grid,
body.dashboard-app .creative-kit{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:16px;
}

body.dashboard-app .product-card,
body.dashboard-app .kit-card{
  overflow:hidden;
  border-radius:20px;
  background:#fffaf0;
  border:1px solid rgba(107,94,85,0.08);
}

body.dashboard-app .product-card img,
body.dashboard-app .kit-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

body.dashboard-app .product-card > *,
body.dashboard-app .kit-card > *:not(img){
  margin-left:16px;
  margin-right:16px;
}

body.dashboard-app .kit-card small{
  display:block;
  margin-top:16px;
  color:#a88a4d;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}

body.dashboard-app .kit-card p{
  margin-top:8px;
  margin-bottom:18px;
  font-size:14px;
  line-height:1.6;
  color:#3a2f29;
}

/* EMPTY STATE */
body.dashboard-app .empty-state{
  padding:20px;
  border-radius:18px;
  background:#fffaf0;
  color:#756b63;
  font-size:14px;
  text-align:center;
}

/* DESKTOP */
@media (min-width: 768px){
  body.dashboard-app{
    background:
      radial-gradient(circle at center, rgba(203,178,121,0.18), transparent 38%),
      #f8f4e3;
  }

  .dashboard-phone{
    margin:36px auto;
    border-radius:34px;
    box-shadow:0 28px 80px rgba(47,38,34,0.16);
    min-height:auto;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 380px){
  .dashboard-phone{
    padding-left:12px;
    padding-right:12px;
  }

  .wallet-card{
    padding:22px 18px;
  }

  .wallet-balance strong{
    font-size:42px;
  }

  .wallet-buttons{
    gap:8px;
  }

  .wallet-action{
    min-height:76px;
    font-size:12px;
  }

  .premium-form{
    grid-template-columns:1fr;
  }

  .premium-form .form-group.full,
  .premium-form button,
  #payout-message{
    grid-column:auto;
  }
}
/* ======================================================
   MODAL PIX — MOBILE GLASS CORRIGIDO
====================================================== */

.modal-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,0.58);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  overflow:hidden;
}

.modal-overlay.active{
  display:flex;
}

.pix-modal-box{
  width:100%;
  max-width:480px;
  max-height:90vh;
  overflow-y:auto;
  overflow-x:hidden;

  border-radius:28px;
  padding:26px 24px;

  background:rgba(18,18,18,0.78);
  border:1px solid rgba(248,244,227,0.12);
  box-shadow:0 30px 90px rgba(0,0,0,0.48);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);

  color:#f8f4e3;
  box-sizing:border-box;
}

.pix-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.pix-modal-eyebrow{
  display:block;
  margin-bottom:8px;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#cbb279;
  font-weight:700;
}

.pix-modal-head h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:34px;
  line-height:1;
  font-weight:600;
  color:#f8f4e3;
}

.pix-modal-head p{
  margin:10px 0 0;
  max-width:340px;
  font-size:14px;
  line-height:1.6;
  color:rgba(248,244,227,0.68);
}

.pix-modal-close{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:50%;
  border:1px solid rgba(248,244,227,0.12);
  background:rgba(255,255,255,0.06);
  color:#f8f4e3;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

/* FORM */
.pix-form{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.pix-form-row,
.pix-form-row.two-columns{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.pix-field{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.pix-field label{
  font-size:13px;
  font-weight:600;
  color:rgba(248,244,227,0.9);
}

.pix-field input,
.pix-field select,
.pix-field textarea{
  width:100%;
  max-width:100%;
  min-height:54px;
  box-sizing:border-box;

  border-radius:16px;
  border:1px solid rgba(248,244,227,0.12);
  outline:none;

  background:rgba(255,255,255,0.055);
  color:#f8f4e3;

  padding:0 16px;
  font-size:15px;
  font-family:"Inter", sans-serif;

  transition:.25s ease;
}

.pix-field textarea{
  min-height:108px;
  padding:16px;
  resize:none;
}

.pix-field input::placeholder,
.pix-field textarea::placeholder{
  color:rgba(248,244,227,0.34);
}

.pix-field input:focus,
.pix-field select:focus,
.pix-field textarea:focus{
  border-color:rgba(203,178,121,0.65);
  background:rgba(255,255,255,0.075);
  box-shadow:0 0 0 3px rgba(203,178,121,0.10);
}

/* SELECT LEGÍVEL */
.pix-field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  cursor:pointer;
  padding-right:44px;

  background-image:
    linear-gradient(45deg, transparent 50%, #cbb279 50%),
    linear-gradient(135deg, #cbb279 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.pix-field select option{
  background:#161616;
  color:#f8f4e3;
}

.pix-submit-button{
  width:100%;
  min-height:56px;
  margin-top:4px;
  border:none;
  border-radius:18px;
  background:#f8f4e3;
  color:#211a17;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.pix-submit-button:disabled{
  opacity:.65;
  cursor:not-allowed;
}

.pix-message,
#payout-message{
  display:block;
  min-height:20px;
  font-size:13px;
  line-height:1.5;
}

.pix-message.error,
#payout-message.error{
  color:#ffb4a8;
}

.pix-message.success,
#payout-message.success{
  color:#c9f7c2;
}

/* REMOVE BARRA HORIZONTAL GERAL */
html,
body{
  overflow-x:hidden;
}

@media (max-width: 520px){
  .modal-overlay{
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: rgba(0,0,0,0.72);
  }

  .pix-modal-box{
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 88px 20px 28px;
    background: rgba(10,10,10,0.92);
  }

  .pix-modal-head{
    margin-bottom: 24px;
    padding-right: 0;
  }

  .pix-modal-close{
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10001;
    width: 46px;
    height: 46px;
    font-size: 28px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .pix-modal-head h2{
    font-size: 30px;
    line-height: 1;
  }

  .pix-modal-head p{
    max-width: 100%;
    font-size: 13px;
  }

  .pix-field input,
  .pix-field select,
  .pix-field textarea{
    font-size: 14px;
  }

  .pix-submit-button{
    min-height: 54px;
  }
}

/* ======================================================
   AJUSTE TOPO / CARD PRINCIPAL
====================================================== */

.dashboard-phone{
  padding-top:34px;
}

.wallet-card{
  margin-top:10px;
  min-height:320px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.wallet-head.clean{
  align-items:flex-start;
}

.wallet-eyebrow{
  display:block;
  margin-bottom:10px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#cbb279;
  font-weight:700;
}

.wallet-head.clean h1{
  font-family:"Playfair Display", serif;
  font-size:30px;
  line-height:1;
  font-weight:600;
  color:#f8f4e3;
  margin:0;
}

.wallet-head.clean p{
  max-width:280px;
  font-size:14px;
  line-height:1.5;
  color:rgba(248,244,227,0.68);
}

.wallet-buttons.single-action{
  grid-template-columns:1fr;
  max-width:180px;
}

.wallet-buttons.single-action .wallet-action{
  min-height:64px;
  flex-direction:row;
  gap:10px;
}

/* MOBILE */
@media (max-width:520px){
  .dashboard-phone{
    padding-top:28px;
  }

  .wallet-card{
    min-height:300px;
  }

  .wallet-head.clean h1{
    font-size:27px;
  }

  .wallet-monogram{
    font-size:76px;
  }
}


/* ======================================================
   MODAL BANNER INICIAL / CARROSSEL
====================================================== */

.welcome-banner-overlay{
  position:fixed;
  inset:0;
  z-index:9998;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,0.62);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.welcome-banner-overlay.active{
  display:flex;
}

.welcome-banner-box{
  position:relative;
  width:100%;
  max-width:460px;
  min-height:300px;
  border-radius:30px;
  padding:34px 28px 28px;
  background:
    radial-gradient(circle at top right, rgba(203,178,121,0.16), transparent 34%),
    rgba(18,18,18,0.88);
  border:1px solid rgba(248,244,227,0.12);
  box-shadow:0 30px 90px rgba(0,0,0,0.55);
  color:#f8f4e3;
  overflow:hidden;
}

.welcome-banner-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(248,244,227,0.12);
  background:rgba(255,255,255,0.06);
  color:#f8f4e3;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.welcome-carousel{
  position:relative;
  min-height:210px;
}

.welcome-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateX(16px);
  pointer-events:none;
  transition:.45s ease;
}

.welcome-slide.active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.welcome-slide span{
  display:block;
  margin-bottom:14px;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#cbb279;
  font-weight:700;
}

.welcome-slide h2{
  max-width:340px;
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:40px;
  line-height:1;
  font-weight:600;
  letter-spacing:-0.04em;
  color:#f8f4e3;
}

.welcome-slide p{
  max-width:360px;
  margin:18px 0 0;
  font-size:15px;
  line-height:1.7;
  color:rgba(248,244,227,0.70);
}

.welcome-dots{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:22px;
}

.welcome-dot{
  width:8px;
  height:8px;
  border:none;
  border-radius:999px;
  background:rgba(248,244,227,0.22);
  cursor:pointer;
  transition:.25s ease;
}

.welcome-dot.active{
  width:26px;
  background:#cbb279;
}

/* MOBILE */
@media (max-width:520px){
  .welcome-banner-overlay{
    align-items:flex-end;
    padding:0;
  }

  .welcome-banner-box{
    max-width:100%;
    border-radius:30px 30px 0 0;
    padding:34px 22px 30px;
  }

  .welcome-slide h2{
    font-size:34px;
  }

  .welcome-slide p{
    font-size:14px;
  }
}

/* ======================================================
   HERO PRINCIPAL DO DASHBOARD
====================================================== */

.wallet-hero{
  position:relative;
  width:100%;
  min-height:400px;
  overflow:hidden;
  border-radius:34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(203,178,121,0.16), transparent 18%),
    radial-gradient(circle at 86% 86%, rgba(203,178,121,0.10), transparent 16%),
    linear-gradient(135deg, #241f1b 0%, #171412 55%, #231c17 100%);
  box-shadow:0 18px 50px rgba(47,38,34,0.16);
}

.wallet-hero-track{
  display:flex;
  width:100%;
  transition:transform .6s ease;
}

.wallet-slide{
  min-width:100%;
  min-height:400px;
  padding:26px 24px 74px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#f8f4e3;
}

.wallet-head.clean{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}

.wallet-eyebrow{
  display:block;
  margin-bottom:10px;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#cbb279;
  font-weight:700;
}

.wallet-head.clean h1{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:28px;
  line-height:1;
  font-weight:600;
  color:#f8f4e3;
}

.wallet-head.clean p{
  max-width:280px;
  margin-top:10px;
  font-size:14px;
  line-height:1.5;
  color:rgba(248,244,227,0.78);
}

.wallet-monogram{
  font-family:"Playfair Display", serif;
  font-size:82px;
  line-height:1;
  color:#cbb279;
  flex-shrink:0;
}

.wallet-balance{
  margin-top:10px;
}

.wallet-balance span{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  color:rgba(248,244,227,0.82);
}

.wallet-balance strong{
  display:block;
  font-family:"Playfair Display", serif;
  font-size:40px;
  line-height:1;
  font-weight:600;
  color:#f8f4e3;
}

.wallet-growth{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
}

.wallet-growth span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 16px;
  border-radius:999px;
  background:#cbb279;
  color:#241f1b;
  font-size:14px;
  font-weight:700;
}

.wallet-growth small{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(248,244,227,0.12);
  background:rgba(255,255,255,0.06);
  color:#f8f4e3;
  font-size:14px;
  font-weight:700;
}

.wallet-buttons.single-action{
  margin-top:22px;
}

.wallet-action{
  min-width:180px;
  min-height:64px;
  padding:0 22px;
  border:none;
  border-radius:18px;
  background:#f3eee4;
  color:#2e2723;
  font-size:15px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  box-shadow:0 6px 0 rgba(0,0,0,0.18);
}

.wallet-hero-dots{
  position:absolute;
  left:24px;
  bottom:20px;
  display:flex;
  align-items:center;
  gap:8px;
}

.wallet-hero-dot{
  width:8px;
  height:8px;
  border:none;
  border-radius:999px;
  background:rgba(248,244,227,0.24);
  cursor:pointer;
  transition:.25s ease;
}

.wallet-hero-dot.active{
  width:24px;
  background:#cbb279;
}

/* MOBILE */
@media (max-width:520px){
  .wallet-hero{
    min-height:420px;
    border-radius:28px;
  }

  .wallet-slide{
    min-height:420px;
    padding:22px 20px 72px;
  }

  .wallet-head.clean h1{
    font-size:24px;
  }

  .wallet-head.clean p{
    max-width:210px;
    font-size:13px;
  }

  .wallet-monogram{
    font-size:72px;
  }

  .wallet-balance strong{
    font-size:32px;
  }

  .wallet-action{
    min-width:170px;
    min-height:60px;
    font-size:14px;
  }

  .wallet-hero-dots{
    left:20px;
    bottom:18px;
  }
}

/* =====================================================
   FIX VISIBILIDADE ADMIN
===================================================== */

body {
  opacity: 1 !important;
  visibility: visible !important;
  overflow-x: hidden;
}

main,
.section,
.container,
.admin-list,
.ranking-table,
.stats-grid,
.admin-panel-grid {
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.stats-grid {
  display: grid !important;
}

.admin-panel-grid {
  display: grid !important;
}

.admin-list {
  min-height: 80px;
}

.admin-list.compact {
  min-height: 80px;
}

.ranking-table {
  width: 100%;
}

#applications-list,
#payout-requests-list,
#ranking-list,
#influencers-list,
#products-admin-list {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
}

/* =====================================================
   INDEX — LUVENNE CLUB PREMIUM
   Colar no final do css/style.css
===================================================== */

.index-page {
  background: #f8f4e3;
  color: #11100e;
  overflow-x: hidden;
}

.index-page * {
  box-sizing: border-box;
}

.index-page a {
  text-decoration: none;
}

.club-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;

  width: min(1120px, calc(100% - 32px));
  min-height: 66px;

  transform: translateX(-50%);

  padding: 0 18px;

  border-radius: 999px;
  border: 1px solid rgba(248, 244, 227, 0.18);

  background: rgba(17, 16, 14, 0.46);
  backdrop-filter: blur(18px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.club-brand img {
  width: 150px;
  height: auto;
  display: block;
}

.club-nav {
  display: flex;
  align-items: center;
  gap: 26px;

  color: rgba(248, 244, 227, 0.82);

  font-size: 13px;
  font-weight: 700;
}

.club-nav a,
.club-login-link {
  color: inherit;
}

.club-login-link {
  min-height: 42px;
  padding: 0 18px;

  border-radius: 999px;

  background: #f8f4e3;
  color: #11100e;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 900;
}


/* HERO */

.club-hero {
  position: relative;
  min-height: 100svh;

  padding: 150px 24px 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #120f0d;
}

.club-hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.24)),
    linear-gradient(180deg, rgba(17, 16, 14, 0.14), rgba(17, 16, 14, 0.76)),
    url("../assets/images/00.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.02);
}

.club-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 74% 42%, rgba(203, 178, 121, 0.18), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(0, 0, 0, 0.48), transparent 34%);

  pointer-events: none;
}

.club-hero-inner {
  position: relative;
  z-index: 2;

  width: min(1120px, 100%);

  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 32px;
  align-items: end;
}

.club-eyebrow,
.club-section-head span,
.club-form-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 28px;
  padding: 0 12px;

  border-radius: 999px;

  background: rgba(203, 178, 121, 0.14);
  color: #cbb279;

  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.club-hero-content h1 {
  max-width: 780px;

  margin: 22px 0 20px;

  color: #f8f4e3;

  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.club-hero-content p {
  max-width: 590px;

  color: rgba(248, 244, 227, 0.76);

  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.club-hero-actions {
  margin-top: 34px;

  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.club-primary-button,
.club-secondary-button {
  min-height: 54px;
  padding: 0 22px;

  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 900;
}

.club-primary-button {
  background: #f8f4e3;
  color: #11100e;
}

.club-secondary-button {
  border: 1px solid rgba(248, 244, 227, 0.24);
  color: #f8f4e3;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.club-hero-card {
  padding: 24px;

  border-radius: 28px;
  border: 1px solid rgba(248, 244, 227, 0.18);

  background: rgba(17, 16, 14, 0.54);
  backdrop-filter: blur(18px);

  color: #f8f4e3;
}

.club-hero-card small {
  display: block;
  margin-bottom: 10px;

  color: #cbb279;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.club-hero-card strong {
  display: block;
  margin-bottom: 10px;

  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.club-hero-card p {
  color: rgba(248, 244, 227, 0.68);
  font-size: 13px;
  line-height: 1.65;
}


/* SECTIONS */

.club-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.club-section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.club-section-head h2,
.club-form-copy h2 {
  margin: 18px 0 14px;

  color: #11100e;

  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.club-section-head p,
.club-form-copy p {
  max-width: 620px;

  color: #7c746b;

  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}


/* BENEFITS */

.club-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.club-benefit-card {
  min-height: 280px;

  padding: 24px;

  border-radius: 28px;
  border: 1px solid rgba(17, 16, 14, 0.10);

  background: rgba(255, 255, 255, 0.38);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.club-benefit-card span {
  color: #cbb279;
  font-size: 12px;
  font-weight: 900;
}

.club-benefit-card h3 {
  margin-top: auto;

  color: #11100e;

  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.club-benefit-card p {
  margin-top: 14px;

  color: #7c746b;

  font-size: 13px;
  line-height: 1.65;
}


/* PROCESS */

.club-process-section {
  padding-top: 60px;
}

.club-process-list {
  display: grid;
  gap: 16px;
}

.club-process-item {
  min-height: 132px;

  padding: 24px;

  border-radius: 28px;
  border: 1px solid rgba(17, 16, 14, 0.10);

  background: #efe7cf;

  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
}

.club-process-item > span {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: #11100e;
  color: #f8f4e3;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 900;
}

.club-process-item h3 {
  color: #11100e;

  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.club-process-item p {
  margin-top: 6px;

  color: #7c746b;

  font-size: 14px;
  line-height: 1.65;
}


/* FORM */

.club-form-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 90px;

  padding: 42px;

  border-radius: 36px;

  background:
    linear-gradient(135deg, rgba(17, 16, 14, 0.96), rgba(42, 35, 29, 0.96));

  color: #f8f4e3;

  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
}

.club-form-copy h2 {
  color: #f8f4e3;
}

.club-form-copy p {
  color: rgba(248, 244, 227, 0.66);
}

.club-form-note {
  margin-top: 26px;

  padding: 18px;

  border-radius: 20px;
  border: 1px solid rgba(248, 244, 227, 0.12);

  background: rgba(248, 244, 227, 0.055);

  color: rgba(248, 244, 227, 0.72);

  font-size: 13px;
  line-height: 1.6;
}

.club-application-form {
  padding: 26px;

  border-radius: 28px;

  background: rgba(248, 244, 227, 0.075);
  border: 1px solid rgba(248, 244, 227, 0.13);
}

.club-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.club-field {
  display: grid;
  gap: 8px;
}

.club-field.full {
  grid-column: 1 / -1;
}

.club-field label {
  color: rgba(248, 244, 227, 0.78);

  font-size: 12px;
  font-weight: 800;
}

.club-field input,
.club-field textarea {
  width: 100%;

  border: 1px solid rgba(248, 244, 227, 0.14);
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.16);
  color: #f8f4e3;

  padding: 0 15px;

  outline: none;

  font-size: 14px;
  font-weight: 600;
}

.club-field input {
  height: 52px;
}

.club-field textarea {
  min-height: 122px;
  padding-top: 15px;
  resize: vertical;
}

.club-field input::placeholder,
.club-field textarea::placeholder {
  color: rgba(248, 244, 227, 0.34);
}

.club-field input:focus,
.club-field textarea:focus {
  border-color: rgba(203, 178, 121, 0.55);
  box-shadow: 0 0 0 4px rgba(203, 178, 121, 0.08);
}

.club-application-form button {
  width: 100%;
  min-height: 56px;

  margin-top: 16px;

  border: none;
  border-radius: 16px;

  background: #f8f4e3;
  color: #11100e;

  font-size: 14px;
  font-weight: 900;

  cursor: pointer;
}

.club-application-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.application-message {
  display: block;
  min-height: 22px;
  margin-top: 14px;

  color: rgba(248, 244, 227, 0.7);

  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.application-message.success {
  color: #bde8b7;
}

.application-message.error {
  color: #ffb4a8;
}


/* FOOTER */

.club-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 30px;

  padding: 26px 0;

  border-top: 1px solid rgba(17, 16, 14, 0.10);

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #7c746b;

  font-size: 13px;
  font-weight: 700;
}

.club-footer a {
  color: #11100e;
  font-weight: 900;
}


/* RESPONSIVO */

@media (max-width: 980px) {
  .club-header {
    height: 60px;
  }

  .club-nav {
    display: none;
  }

  .club-hero {
    padding-top: 130px;
    align-items: flex-start;
  }

  .club-hero-inner {
    grid-template-columns: 1fr;
  }

  .club-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .club-form-section {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .club-header {
    top: 12px;
    width: calc(100% - 24px);
    padding: 0 12px;
  }

  .club-brand img {
    width: 128px;
  }

  .club-login-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .club-hero {
    min-height: auto;
    padding: 120px 20px 54px;
  }

  .club-hero-content h1 {
    font-size: 56px;
  }

  .club-hero-content p {
    font-size: 15px;
  }

  .club-hero-actions {
    align-items: stretch;
  }

  .club-primary-button,
  .club-secondary-button {
    width: 100%;
  }

  .club-section {
    width: calc(100% - 32px);
    padding: 72px 0;
  }

  .club-section-head h2,
  .club-form-copy h2 {
    font-size: 42px;
  }

  .club-benefits-grid {
    grid-template-columns: 1fr;
  }

  .club-benefit-card {
    min-height: 220px;
  }

  .club-process-item {
    grid-template-columns: 1fr;
  }

  .club-form-section {
    width: calc(100% - 24px);
    padding: 22px;
    border-radius: 28px;
    margin-bottom: 50px;
  }

  .club-application-form {
    padding: 18px;
  }

  .club-form-grid {
    grid-template-columns: 1fr;
  }

  .club-footer {
    width: calc(100% - 32px);
    flex-direction: column;
    gap: 10px;
  }
}








/* =========================================================
   01. FONTE PERSONALIZADA
   Aqui importamos a fonte Centauro, que está salva na pasta /fonts.
   Ela será usada nos títulos e elementos mais elegantes da marca.
========================================================= */


@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

@font-face {
	font-family: 'LuvenneTitle';
	src: url('https://luvenne.netlify.app/fonts/Centaur-Font.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* =========================================================
   02. VARIÁVEIS GLOBAIS
   Aqui ficam as cores, fontes e padrões principais do site.
   Quando quiser mudar a identidade visual, altere primeiro aqui.
========================================================= */

:root {
  /* Fundo principal do site */
  --bg: #f8f4e3;

  /* Fundo secundário usado em cards, áreas suaves e formulários */
  --bg-soft: #d8c7a5;

  /* Cor principal dos textos */
  --text: #11100e;

  /* Cor para textos secundários, descrições e detalhes */
  --muted: #7c746b;

  /* Cor de linhas e bordas delicadas */
  --line: rgba(17, 16, 14, 0.14);

  /* Preto premium usado em botões, footer e seções de contraste */
  --dark: #6b5e55;

  /* Branco quente usado sobre fundos escuros */
  --white: #fffaf2;

  /* Cor de destaque premium */
  --accent: #c7a45b;

  /* Cor de apoio mais clara */
  --accent-soft: #eadfc5;

  /* Fonte usada em títulos */
  --font-title: "LuvenneTitle";

  /* Fonte usada em textos */
  --font-body: "Raleway", sans-serif;
}


/* =========================================================
   03. RESET E CONFIGURAÇÕES GERAIS
   Remove padrões do navegador e cria uma base limpa.
========================================================= */

/* Remove margens/paddings padrões e evita que padding aumente o tamanho real dos elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Faz a rolagem entre links internos ficar suave */
html {
  scroll-behavior: smooth;
}

/* Corpo geral do site */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
}

/* Todas as imagens ocupam 100% da área disponível */
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Remove sublinhado dos links e mantém a cor herdada */
a {
  color: inherit;
  text-decoration: none;
}

/* Container padrão para centralizar o conteúdo do site */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   04. HEADER
   Cabeçalho fixo no topo da página.
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 99;

  background: rgba(247, 244, 238, 0.84);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--line);
}

/* Área interna do header */
.header-content {
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo ou nome da marca no topo */
.logo {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
}

/* Menu de navegação desktop */
.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

/* Estilo dos links do menu e botões do header */
.nav a,
.header-button,
.menu-mobile {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Botão do header e botão mobile */
.header-button,
.menu-mobile {
  border: 1px solid var(--dark);
  padding: 12px 22px;
  color: var(--dark);
  transition: .3s ease;
}

/* Efeito ao passar o mouse */
.header-button:hover,
.menu-mobile:hover {
  background: var(--dark);
  color: var(--white);
}

/* Botão mobile começa escondido no desktop */
.menu-mobile {
  display: none;
}


/* =========================================================
   05. HERO
   Primeira dobra do site.
   É a seção principal com imagem de fundo, título, texto e botões.
========================================================= */

.hero {
  min-height: 700px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(249, 244, 227 , 0.98) 0%,
      rgba(249, 244, 227, 0.86) 32%,
      rgba(255, 255, 255, 0.09) 80%
    ),
    url("../assets/images/banner.index.png");

  background-size: cover;
  background-position: center right;
}

/* Limita a largura do texto da primeira dobra */
.hero-text {
  max-width: 560px;
}

/* Texto pequeno acima dos títulos */
.eyebrow,
.section-label {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;

  color: var(--muted);
  font-weight: 400;
}

.collection{
  background-color: #fff;
}

/* Padrão visual dos títulos principais */
.hero h1,
.intro h2,
.collection h2,
.process h2,
.partnership h2,
.potential h2,
.signup h2,
.impact-section h2 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: .96;
}

/* Título principal do hero */
.hero h1 {
  font-size: clamp(56px, 8vw, 104px);
}

/* Parágrafo do hero */
.hero p {
  margin-top: 24px;

  max-width: 410px;

  font-size: 16px;
  line-height: 1.8;

  color: var(--muted);
}

/* Área onde ficam os botões do hero */
.hero-actions {
  margin-top: 36px;

  display: flex;
  gap: 12px;
}


/* =========================================================
   06. BOTÕES
   Estilos reutilizáveis para botões do site.
========================================================= */

/* Botão base */
.btn {
  min-height: 48px;
  padding: 0 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--dark);

  font-size: 12px;
  font-weight: 500;

  transition: .3s ease;
}

/* Botão escuro principal */
.btn-dark {
  background: var(--dark);
  color: var(--white);
}

/* Hover do botão escuro */
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
}

/* Botão claro secundário */
.btn-light {
  background: rgba(247,244,238,.55);
  color: var(--dark);
}

/* Hover do botão claro */
.btn-light:hover {
  background: var(--dark);
  color: var(--white);
}


/* =========================================================
   07. SEÇÕES GERAIS
   Espaçamentos e grids usados em várias áreas do site.
========================================================= */

/* Espaçamento vertical padrão das seções */
.intro,
.collection,
.process,
.partnership,
.potential,
.signup {
  padding: 110px 0;
}

/* Grid de duas colunas */
.intro-grid,
.process-grid,
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}

/* Títulos das seções */
.intro h2,
.collection h2,
.process h2,
.signup h2 {
  font-size: clamp(44px, 5vw, 72px);
}

/* Textos das seções */
.intro p,
.section-heading p,
.process p,
.partnership p,
.potential p,
.signup p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

/* Limita alguns parágrafos para não ficarem muito largos */
.intro-left p,
.signup-text p {
  margin-top: 24px;
  max-width: 480px;
}


/* =========================================================
   08. ESTATÍSTICAS
   Bloco com números e informações rápidas.
========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border: 1px solid var(--line);
}

/* Cada item da área de estatísticas */
.stat {
  padding: 42px 34px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Remove a borda direita dos itens da segunda coluna */
.stat:nth-child(2n) {
  border-right: none;
}

/* Remove a borda inferior dos últimos itens */
.stat:nth-child(n+3) {
  border-bottom: none;
}

/* Número grande */
.stat strong {
  display: block;

  font-family: var(--font-title);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

/* Texto abaixo do número */
.stat span {
  display: block;

  margin-top: 12px;

  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--muted);
}


/* =========================================================
   09. SEÇÃO DE IMPACTO
   Faixa escura com frase forte no centro.
========================================================= */

.impact-section {
  padding: 70px 0 74px;

  text-align: center;

  background: var(--bg-soft);
  color: var(--white);
}

/* Container da seção de impacto */
.impact-section .container {
  max-width: 1180px;
}

/* Título da seção de impacto */
.impact-section h2 {
  font-size: clamp(42px, 4.6vw, 68px);

  max-width: 1120px;
  margin: 0 auto;
}


/* =========================================================
   10. CABEÇALHO DAS SEÇÕES
   Usado em áreas como coleção/produtos.
========================================================= */

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;

  margin-bottom: 48px;
}

/* Texto do cabeçalho da seção */
.section-heading p {
  max-width: 420px;
}


/* =========================================================
   11. PRODUTOS / COLEÇÃO
   Grid e cards dos produtos.
========================================================= */

/* Grid base dos produtos */
.product-grid {
  display: grid;
  gap: 22px;
}

/* Grid com quatro colunas */
.product-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

/* Card individual do produto */
.product-card {
  padding-bottom: 8px;
}

/* Área da imagem do produto */
.product-image {
  aspect-ratio: 1/1;

  background: #fff;

  overflow: hidden;

  border: 1px solid rgba(17,16,14,.06);
}

/* Imagem dentro do card */
.product-image img {
  height: 100%;

  transition: .5s ease;

  mix-blend-mode: multiply;
}

/* Zoom suave no hover */
.product-card:hover img {
  transform: scale(1.035);
}

/* Área de informações do produto */
.product-details {
  margin-top: 18px;
}

/* Nome e preço na parte superior */
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* Nome do produto */
.product-top h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
}

/* Preço */
.price {
  font-size: 13px;
  white-space: nowrap;
  margin-top: 4px;
}

/* Parte inferior do card */
.product-bottom {
  margin-top: 14px;
  padding-top: 14px;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;
  gap: 14px;
}

/* Texto pequeno do card */
.product-bottom span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--muted);
}

/* Informação em destaque no card */
.product-bottom strong {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}


/* =========================================================
   12. PROCESSO
   Seção que explica como funciona.
========================================================= */

/* Fundo da seção processo */
.process {
  background: #fff;
}

/* Imagem da seção processo */
.process-image {
  aspect-ratio: 4/5;

  overflow: hidden;

  background: var(--bg);
}

/* Imagem dentro do bloco processo */
.process-image img {
  height: 100%;
  mix-blend-mode: multiply;
}

/* Lista de passos */
.steps {
  margin-top: 36px;

  display: grid;
  gap: 0;

  border-top: 1px solid var(--line);
}

/* Cada passo */
.step {
  padding: 22px 0;

  border-bottom: 1px solid var(--line);
}

/* Título do passo */
.step strong {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Texto do passo */
.step p {
  margin-top: 8px;
}


/* =========================================================
   13. PARCERIA
   Seção com cards grandes explicando benefícios.
========================================================= */

/* Grid da seção parceria */
.partnership-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}

.partnership {
  background-color: var(--bg-soft);
}

/* Cards principais */
.black-card,
.info-card {
  min-height: 590px;

  padding: 58px;

  border: 1px solid var(--line);
}

/* Card preto */
.black-card {
  background: var(--dark);
  color: var(--white);
}

/* Texto do card preto */
.black-card p {
  color: rgba(255,250,242,.68);

  max-width: 610px;

  margin-top: 28px;
}

/* Títulos dos cards */
.black-card h2,
.info-card h2 {
  font-size: clamp(44px, 5vw, 74px);
}

/* Palavra ou trecho em destaque */
.accent {
  color: var(--accent);
}

/* Card claro */
.info-card {
  background: var(--bg);
}

/* Texto do card claro */
.info-card p {
  margin-top: 28px;
}


/* =========================================================
   14. MINI PASSOS
   Pequenos cards dentro da seção escura.
========================================================= */

.mini-steps {
  margin-top: 54px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Cada mini card */
.mini-steps div {
  border: 1px solid rgba(255,250,242,.18);

  padding: 24px 18px;
}

/* Número ou destaque do mini card */
.mini-steps strong {
  display: block;

  font-family: var(--font-title);
  font-size: 34px;

  color: var(--accent);

  margin-bottom: 14px;
}

/* Texto do mini card */
.mini-steps span {
  font-size: 12px;
  line-height: 1.5;

  color: rgba(255,250,242,.78);
}


/* =========================================================
   15. LINHAS DE INFORMAÇÃO
   Lista com informações importantes em formato de linha.
========================================================= */

.info-lines {
  margin-top: 34px;

  display: grid;
  gap: 12px;
}

/* Cada linha */
.info-lines div {
  border: 1px solid var(--line);

  padding: 20px 22px;

  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

/* Texto pequeno da linha */
.info-lines span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: var(--muted);
}

/* Texto em destaque da linha */
.info-lines strong {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;
}


/* =========================================================
   16. POTENCIAL
   Seção de projeção ou promessa de resultado.
========================================================= */

.potential {
  text-align: center;
}

/* Cabeçalho da seção */
.potential-heading {
  max-width: 720px;
  margin: 0 auto;
}

/* Título */
.potential h2 {
  font-size: clamp(44px, 5vw, 70px);
}

/* Texto do cabeçalho */
.potential-heading p {
  margin-top: 22px;
}

/* Grid dos cards */
.potential-grid {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card de potencial */
.potential-card {
  background: var(--dark);
  color: var(--white);

  padding: 52px 28px;
}

/* Texto superior do card */
.potential-card span {
  font-family: var(--font-title);
  font-size: 30px;
}

/* Pequeno destaque */
.potential-card small {
  display: block;

  margin: 12px 0;

  color: var(--accent);

  font-size: 22px;
}

/* Número/frase grande */
.potential-card strong {
  display: block;

  font-family: var(--font-title);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
}

/* Texto do card */
.potential-card p {
  color: rgba(255,250,242,.68);

  margin-top: 10px;
}

/* Observação final */
.note {
  margin-top: 20px;

  font-size: 12px;
}


/* =========================================================
   17. FORMULÁRIO
   Campos de cadastro/contato.
========================================================= */

/* Grid do formulário */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Textarea e botão ocupam a linha inteira */
.form textarea,
.form button {
  grid-column: 1 / -1;
}

/* Campos de texto */
input,
textarea {
  width: 100%;

  border: 1px solid var(--line);
  background: var(--bg-soft);

  height: 54px;
  padding: 0 18px;

  font-family: var(--font-body);
  color: var(--text);

  outline: none;
}

/* Campo de mensagem */
textarea {
  height: 140px;
  padding-top: 18px;

  resize: none;
}

/* Placeholder dos campos */
input::placeholder,
textarea::placeholder {
  color: rgba(124,116,107,.82);
}

/* Botão do formulário */
.form button {
  height: 56px;

  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--white);

  font-family: var(--font-body);

  cursor: pointer;
  transition: .3s ease;

  font-weight: 500;
}

/* Hover do botão do formulário */
.form button:hover {
  background: transparent;
  color: var(--dark);
}


/* =========================================================
   18. FOOTER
   Rodapé do site.
========================================================= */

.footer {
  padding: 44px 0 22px;

  border-top: 1px solid var(--line);

  background: var(--dark);
  color: var(--white);

  text-align: center;
}

/* Organização interna do footer */
.footer-grid {
  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 14px;
}

/* Logo do footer */
.footer-logo {
  width: 150px;
  height: auto;
 

  object-fit: contain;

  filter: brightness(0) invert(1);
}
.header-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: none;
}

/* Texto do footer */
.footer p {
  max-width: 320px;

  color: rgba(255,250,242,.62);

  line-height: 1.7;
  font-size: 13px;
}

/* Área do copyright */
.copyright {
  margin-top: 28px;
  padding-top: 18px;

  border-top: 1px solid rgba(255,250,242,.12);
}

/* Texto do copyright */
.copyright p {
  font-size: 11px;
  color: rgba(255,250,242,.46);
}


/* =========================================================
   19. RESPONSIVO
   Ajustes para telas menores que 900px.
   Aqui o layout vira mais vertical e adaptado para celular.
========================================================= */

@media (max-width: 900px) {

  /* Container menor no mobile */
  .container {
    width: min(100% - 28px, 1180px);
  }

  /* Esconde navegação desktop */
  .nav,
  .header-button {
    display: none;
  }

  /* Mostra botão/menu mobile */
  .menu-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
  }

  /* Diminui altura do header */
  .header-content {
    height: 62px;
  }

  /* Hero adaptado para celular */
  .hero {
    min-height: 620px;

    align-items: flex-start;

    padding-top: 108px;

    text-align: center;

    background-position: 55% center;
  }

  /* Texto centralizado no hero */
  .hero-text {
    max-width: 330px;
    margin: 0 auto;
  }

  /* Título menor no mobile */
  .hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  /* Parágrafo menor no mobile */
  .hero p {
    max-width: 300px;

    margin: 24px auto 0;

    font-size: 14px;
    line-height: 1.7;
  }

  /* Botões um abaixo do outro */
  .hero-actions {
    flex-direction: column;

    max-width: 310px;

    margin: 34px auto 0;
  }

  /* Botões ocupam largura total */
  .btn {
    width: 100%;
  }

  /* Menor espaçamento nas seções */
  .intro,
  .collection,
  .process,
  .partnership,
  .potential,
  .signup {
    padding: 72px 0;
  }

  /* Grids viram uma coluna */
  .intro-grid,
  .process-grid,
  .signup-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* Títulos menores */
  .intro h2,
  .collection h2,
  .process h2,
  .signup h2,
  .potential h2 {
    font-size: 42px;
  }

  /* Estatísticas continuam em duas colunas */
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Menor padding nas estatísticas */
  .stat {
    padding: 30px 20px;
  }

  /* Números menores */
  .stat strong {
    font-size: 44px;
  }

  /* Ajuste da seção de impacto */
  .impact-section {
    padding: 54px 0;
  }

  .impact-section h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  /* Cabeçalho das seções vira coluna */
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Produtos em duas colunas no mobile */
  .product-grid-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }

  /* Nome e preço do produto ficam um abaixo do outro */
  .product-top {
    flex-direction: column;
    gap: 6px;
  }

  /* Nome do produto menor */
  .product-top h3 {
    font-size: 18px;
  }

  /* Cards grandes ficam menores */
  .black-card,
  .info-card {
    min-height: auto;
    padding: 34px 24px;
  }

  /* Mini steps viram uma coluna */
  .mini-steps {
    grid-template-columns: 1fr;
  }

  /* Linhas de informação ficam empilhadas */
  .info-lines div {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Cards de potencial viram uma coluna */
  .potential-grid {
    grid-template-columns: 1fr;
  }

  /* Formulário vira uma coluna */
  .form {
    grid-template-columns: 1fr;
  }

  /* Textarea e botão voltam ao fluxo normal */
  .form textarea,
  .form button {
    grid-column: auto;
  }
}

