:root{

--bg:#070708;
--panel:#141417;
--panel2:#1f1f22;

--gold:#c8a86a;
--gold2:#e1c489;

--txt:#f2f2f2;
--muted:#b7b7b7;

--wrap:1180px;
--pad:24px;
--radius:16px;

--serif:"Cormorant Garamond", serif;
--sans:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;

}

/* RESET */

*,
*::before,
*::after{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
background:var(--bg);
color:var(--txt);
font-family:var(--sans);
line-height:1.6;
-webkit-font-smoothing:antialiased;
}

a{
color:inherit;
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.wrap{
max-width:var(--wrap);
margin:auto;
padding:0 var(--pad);
}

/* HEADER */

.topbar{
position:sticky;
top:0;
z-index:50;

background:rgba(10,10,10,.85);
backdrop-filter:blur(10px);

border-bottom:1px solid rgba(255,255,255,.05);
}

.topbar__inner{
height:82px;
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
}

.brand img{
height:60px;
}

/* NAV */

.nav{
display:flex;
gap:24px;
font-size:14px;
color:rgba(255,255,255,.75);
}

.nav a{
padding:8px 12px;
border-radius:10px;
transition:.2s;
}

.nav a:hover{
background:rgba(255,255,255,.06);
color:#fff;
}

/* BUTTONS */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 20px;
border-radius:12px;
font-size:14px;
font-weight:600;
cursor:pointer;
transition:.25s;
}

.btn--gold{
background:linear-gradient(135deg,var(--gold),var(--gold2));
color:#000;
}

.btn--gold:hover{
transform:translateY(-2px);
box-shadow:0 10px 30px rgba(200,168,106,.35);
}

.btn--ghost{
border:1px solid rgba(255,255,255,.18);
}

.btn--ghost:hover{
background:rgba(255,255,255,.05);
}

/* HERO */

.hero{
padding:120px 0 80px;
}

.split{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:80px;
align-items:center;
}

.hero h1{
font-family:var(--serif);
font-size:56px;
line-height:1.05;
margin-bottom:20px;
}

.lead{
font-size:18px;
color:var(--muted);
max-width:520px;
margin-bottom:24px;
}

/* HERO IMAGE */

.media{

width:100%;
max-width:420px;

aspect-ratio:4/5;

background-size:cover;
background-position:center top;

border-radius:22px;

box-shadow:0 40px 120px rgba(0,0,0,.7);

margin-left:auto;

}

/* STATS */

.stats{
margin-top:24px;
display:flex;
flex-wrap:wrap;
gap:12px;
}

.chip{
border:1px solid rgba(255,255,255,.1);
padding:8px 14px;
border-radius:30px;
font-size:13px;
background:rgba(255,255,255,.02);
}

/* SECTIONS */

section{
padding:100px 0;
}

.h2{
font-family:var(--serif);
font-size:38px;
margin-bottom:14px;
}

.p{
color:var(--muted);
font-size:16px;
max-width:680px;
}

/* CARDS */

.cards3{
margin-top:40px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:26px;
}

.cards2{
margin-top:40px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:26px;
}

.card{
background:var(--panel);
padding:28px;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);
transition:.25s;
}

.card:hover{
transform:translateY(-6px);
border-color:rgba(200,168,106,.45);
box-shadow:0 30px 80px rgba(0,0,0,.5);
}

.card b{
display:block;
margin-bottom:8px;
font-size:18px;
}

/* CONTACT */

.contact-cards{
display:flex;
flex-direction:column;
gap:16px;
margin-top:20px;
}

.contact-item{
background:var(--panel);
padding:18px;
border-radius:14px;
border:1px solid rgba(255,255,255,.05);
}

/* FOOTER */

.footer{
padding:60px 0;
border-top:1px solid rgba(255,255,255,.05);
margin-top:80px;
}

.footer__inner{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer__links{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.footer__links a{
font-size:14px;
opacity:.7;
}

.footer__links a:hover{
opacity:1;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

.mobile-menu{
display:none;
flex-direction:column;
gap:16px;
padding:20px;
background:#111;
}

/* RESPONSIVO */

@media(max-width:900px){

.split{
grid-template-columns:1fr;
gap:40px;
}

.hero{
padding:80px 0;
}

.hero h1{
font-size:42px;
}

.cards3,
.cards2{
grid-template-columns:1fr;
}

.media{
max-width:100%;
}

.nav{
display:none;
}

.menu-toggle{
display:block;
}

.mobile-menu{
display:flex;
}

}

/* LIGHT MODE */

html[data-theme="light"]{

--bg:#f5f5f7;
--panel:#ffffff;
--panel2:#f1f1f1;

--txt:#111;
--muted:#666;

}
/* FEATURES */

.features{
padding:120px 0;
}

.center{
text-align:center;
margin:auto;
}

.intro{
margin-top:10px;
margin-bottom:50px;
max-width:640px;
}

.features-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:28px;
max-width:900px;
margin:auto;
}

.feature-card{

background:var(--panel);

padding:34px;

border-radius:20px;

border:1px solid rgba(255,255,255,.05);

transition:.3s;

}

.feature-card:hover{

transform:translateY(-6px);

border-color:rgba(200,168,106,.5);

box-shadow:0 30px 80px rgba(0,0,0,.5);

}

.feature-card h3{

font-family:var(--serif);

font-size:22px;

margin-bottom:8px;

}

.feature-card p{

color:var(--muted);

font-size:15px;

}

.feature-icon{

width:42px;
height:42px;

border-radius:10px;

display:flex;
align-items:center;
justify-content:center;

margin-bottom:14px;

background:linear-gradient(135deg,var(--gold),var(--gold2));

color:#000;
font-weight:bold;

}

@media(max-width:900px){

.features-grid{
grid-template-columns:1fr;
}

}
/* MEMBROS HOME */

.membros-home{
padding:100px 0;
}

.membros-grid{
margin-top:40px;
}

.member-card{

display:block;

background:var(--panel);

padding:18px;

border-radius:18px;

border:1px solid rgba(255,255,255,.05);

transition:.25s;

text-align:center;

}

.member-card:hover{

transform:translateY(-6px);

border-color:rgba(200,168,106,.5);

box-shadow:0 30px 80px rgba(0,0,0,.6);

}

.member-photo{

width:100%;

aspect-ratio:1/1;

border-radius:14px;

background-size:cover;

background-position:center;

margin-bottom:14px;

}

.member-info h3{

font-size:18px;

margin-bottom:4px;

}

.member-location{

font-size:14px;

color:var(--muted);

}
/* =========================
   CADASTRO
========================= */

.ec-dark{
  background:#050505;
  color:#f5f1e8;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,5,5,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.site-header__inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:32px;
}

.site-nav a{
  color:#f3efe6;
  text-decoration:none;
  font-weight:500;
  opacity:.88;
}

.site-nav a:hover{
  opacity:1;
}

.cadastro-page{
  min-height:calc(100vh - 82px);
  padding:56px 20px 180px;
  background:
    radial-gradient(circle at top, rgba(201,166,92,.14), transparent 28%),
    #050505;
}

.cadastro-hero{
  display:flex;
  justify-content:center;
}

.cadastro-box{
  width:100%;
  max-width:900px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(201,166,92,.20);
  border-radius:24px;
  padding:32px 28px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.cadastro-kicker{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(201,166,92,.12);
  color:#d8b26a;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
}

.cadastro-box h1{
  margin:0 0 10px;
  font-size:clamp(28px,4vw,44px);
  line-height:1.08;
  color:#fff;
}

.cadastro-sub{
  margin:0 0 28px;
  color:rgba(243,239,230,.72);
  font-size:16px;
  line-height:1.6;
}

.chat-box{
  min-height:340px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.chat-msg{
  max-width:78%;
  padding:14px 16px;
  border-radius:18px;
  line-height:1.55;
  font-size:16px;
}

.chat-msg.bot{
  align-self:flex-start;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  color:#f5f1e8;
}

.chat-msg.user{
  align-self:flex-end;
  background:linear-gradient(135deg, #b68a3b, #d8b26a);
  color:#111;
  font-weight:600;
}

.typing{
  display:flex;
  gap:6px;
  margin-top:14px;
}

.typing span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d8b26a;
  opacity:.55;
  animation:blink 1.2s infinite ease-in-out;
}

.typing span:nth-child(2){
  animation-delay:.2s;
}

.typing span:nth-child(3){
  animation-delay:.4s;
}

@keyframes blink{
  0%, 80%, 100%{ transform:scale(.8); opacity:.35; }
  40%{ transform:scale(1); opacity:1; }
}

.hidden{
  display:none !important;
}

.chat-input-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:60;
  padding:16px 18px;
  background:rgba(5,5,5,.96);
  border-top:1px solid rgba(255,255,255,.06);
}

.chat-input-wrap{
  max-width:920px;
  margin:0 auto;
  display:flex;
  gap:12px;
  align-items:center;
}

.chat-input-wrap input{
  flex:1;
  height:56px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:#0d0d0d;
  color:#fff;
  padding:0 18px;
  font-size:16px;
  outline:none;
}

.chat-input-wrap input::placeholder{
  color:rgba(255,255,255,.38);
}

.chat-input-wrap input:focus{
  border-color:rgba(201,166,92,.55);
  box-shadow:0 0 0 3px rgba(201,166,92,.12);
}

.chat-input-wrap button{
  height:56px;
  padding:0 24px;
  border:none;
  border-radius:16px;
  cursor:pointer;
  font-weight:700;
  font-size:15px;
  background:linear-gradient(135deg, #b68a3b, #d8b26a);
  color:#111;
}

.consent-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:88px;
  z-index:61;
  padding:0 18px 12px;
}

.consent-wrap{
  max-width:920px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 18px;
  border-radius:18px;
  background:#0c0c0c;
  border:1px solid rgba(255,255,255,.06);
}

.consent-label{
  display:flex;
  align-items:center;
  gap:10px;
  color:#f3efe6;
  font-size:15px;
}

.consent-label a{
  color:#d8b26a;
  text-decoration:none;
}

.finish-btn{
  height:48px;
  padding:0 20px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, #b68a3b, #d8b26a);
  color:#111;
  font-weight:700;
  cursor:pointer;
}

.finish-btn:disabled{
  opacity:.38;
  cursor:not-allowed;
}

@media (max-width: 768px){
  .site-header__inner{
    min-height:auto;
    padding:16px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .site-nav{
    gap:18px;
    flex-wrap:wrap;
  }

  .cadastro-page{
    padding:28px 14px 210px;
  }

  .cadastro-box{
    padding:22px 18px;
    border-radius:18px;
  }

  .chat-msg{
    max-width:92%;
    font-size:15px;
  }

  .chat-input-wrap{
    flex-direction:column;
  }

  .chat-input-wrap input,
  .chat-input-wrap button{
    width:100%;
  }

  .consent-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .finish-btn{
    width:100%;
  }
}
.menu-toggle{

background:none;
border:0;
cursor:pointer;
display:flex;
flex-direction:column;
gap:5px;

}

.menu-toggle span{

width:24px;
height:2px;
background:white;
display:block;

}

.mobile-menu{

display:none;
flex-direction:column;
gap:16px;
padding:20px;

}

.mobile-menu.open{

display:flex;

}
.membros-home {
    padding: 88px 0;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.06), transparent 40%),
        #000;
}

.membros-home__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.membros-home__kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d4af37;
}

.membros-home__title {
    margin-bottom: 14px;
}

.membros-home__sub {
    max-width: 680px;
    margin: 0 auto;
}

.membros-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.member-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 250px;
    padding: 24px;
    border-radius: 24px;
    text-decoration: none;

    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,.08);

    box-shadow: 0 20px 50px rgba(0,0,0,.5);

    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.member-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .22);
    box-shadow: 0 26px 60px rgba(0,0,0,.28);
}

.member-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.member-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,.04);
    border: 2px solid rgba(212, 175, 55, .20);
    flex-shrink: 0;
}

.member-card__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #f1d68a 100%);
    color: #111827;
    font-size: 28px;
    font-weight: 800;
}

.member-card__identity {
    min-width: 0;
}

.member-card__identity h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
}

.member-card__role {
    margin: 8px 0 0;
    color: #cbd5e1;
    line-height: 1.55;
    font-size: 15px;
}

.member-card__dot {
    margin: 0 6px;
    color: #d4af37;
}

.member-card__meta {
    margin-top: 4px;
}

.member-card__location {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.4;
}

.member-card__footer {
    margin-top: auto;
    padding-top: 8px;
}

.member-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .02em;
}

.member-card__link::after {
    content: '→';
    transition: transform .18s ease;
}

.member-card:hover .member-card__link::after {
    transform: translateX(3px);
}

.membros-home__cta {
    margin-top: 34px;
    text-align: center;
}

@media (max-width: 1100px) {
    .membros-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .membros-home {
        padding: 64px 0;
    }

    .membros-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        min-height: auto;
        padding: 20px;
    }

    .member-card__identity h3 {
        font-size: 22px;
    }
}
.ec-home-editorial{
    padding: 80px 0;
    background:
        radial-gradient(circle at top, rgba(183,149,78,.10), transparent 30%),
        linear-gradient(180deg, rgba(6,10,18,.98), rgba(3,6,12,1));
}

.ec-home-editorial__header{
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.ec-home-editorial__kicker{
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212,175,55,.08);
    border: 1px solid rgba(212,175,55,.18);
    color: #d4af37;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ec-home-editorial__header h2{
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
}

.ec-home-editorial__header p{
    margin: 0 auto;
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.ec-home-editorial__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ec-home-editorial__card{
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(10,14,24,.96), rgba(5,8,16,.98));
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ec-home-editorial__card:hover{
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(0,0,0,.30);
    border-color: rgba(212,175,55,.20);
}

.ec-home-editorial__image{
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}

.ec-home-editorial__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.ec-home-editorial__card:hover .ec-home-editorial__image img{
    transform: scale(1.04);
}

.ec-home-editorial__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.08));
}

.ec-home-editorial__badge{
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.50);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-home-editorial__body{
    padding: 24px;
}

.ec-home-editorial__label{
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ec-home-editorial__body h3{
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.12;
}

.ec-home-editorial__body p{
    margin: 0 0 20px;
    color: #cbd5e1;
    line-height: 1.8;
    min-height: 120px;
}

@media (max-width: 1100px){
    .ec-home-editorial__grid{
        grid-template-columns: 1fr;
    }

    .ec-home-editorial__body p{
        min-height: auto;
    }
}

@media (max-width: 700px){
    .ec-home-editorial{
        padding: 56px 0;
    }

    .ec-home-editorial__card{
        border-radius: 20px;
    }

    .ec-home-editorial__body{
        padding: 18px;
    }

    .ec-home-editorial__header p{
        font-size: 16px;
    }
}
.ec-home-livros{
    padding: 88px 0;
    background:
        radial-gradient(circle at top, rgba(212,175,55,.08), transparent 35%),
        linear-gradient(180deg, rgba(6,10,18,.98), rgba(3,6,12,1));
}

.ec-home-livros__header{
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.ec-home-livros__kicker{
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212,175,55,.08);
    border: 1px solid rgba(212,175,55,.18);
    color: #d4af37;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ec-home-livros__header h2{
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
}

.ec-home-livros__header p{
    margin: 0 auto;
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.ec-home-livros__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ec-home-livros__card{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(10,14,24,.96), rgba(5,8,16,.98));
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ec-home-livros__card:hover{
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(0,0,0,.30);
    border-color: rgba(212,175,55,.20);
}

.ec-home-livros__image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    padding: 18px;
}

.ec-home-livros__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .35s ease;
}

.ec-home-livros__card:hover .ec-home-livros__image img{
    transform: scale(1.04);
}

.ec-home-livros__badge{
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.50);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-home-livros__body{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.ec-home-livros__label{
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ec-home-livros__body h3{
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.12;
}

.ec-home-livros__body p{
    margin: 0 0 20px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 14px;
    min-height: auto;
}

.ec-home-livros__body .btn{
    margin-top: auto;
    width: fit-content;
}

.ec-home-livros__cta{
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 1200px){
    .ec-home-livros__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px){
    .ec-home-livros{
        padding: 56px 0;
    }

    .ec-home-livros__grid{
        grid-template-columns: 1fr;
    }

    .ec-home-livros__card{
        border-radius: 20px;
    }

    .ec-home-livros__body{
        padding: 18px;
    }

    .ec-home-livros__header p{
        font-size: 16px;
    }
}
/* SELECT DE PAÍS NO CADASTRO */
#selectPais{
  flex: 1;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0d0d0d !important;
  color: #fff !important;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

#selectPais:focus{
  border-color: rgba(201,166,92,.55);
  box-shadow: 0 0 0 3px rgba(201,166,92,.12);
}

/* IMPORTANTE:
   no dropdown aberto do Windows o fundo costuma ser claro,
   então o texto precisa ser escuro para aparecer */
#selectPais option{
  background: #ffffff !important;
  color: #111111 !important;
}
.ec-home-fundraising{
    padding: 88px 0;
    background:
        radial-gradient(circle at top, rgba(212,175,55,.08), transparent 35%),
        linear-gradient(180deg, rgba(6,10,18,.98), rgba(3,6,12,1));
}

.ec-home-fundraising__header{
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.ec-home-fundraising__kicker{
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212,175,55,.08);
    border: 1px solid rgba(212,175,55,.18);
    color: #d4af37;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ec-home-fundraising__header h2{
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
}

.ec-home-fundraising__header p{
    margin: 0 auto;
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.ec-home-fundraising__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ec-home-fundraising__card{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(10,14,24,.96), rgba(5,8,16,.98));
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ec-home-fundraising__card:hover{
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(0,0,0,.30);
    border-color: rgba(212,175,55,.20);
}

.ec-home-fundraising__image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
border-radius: 18px; /* 🔥 aqui está o segredo */
background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    padding: 18px;
}

.ec-home-fundraising__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px; /* 🔥 deixa mais refinado */
    display: block;
    transition: transform .35s ease;
}

.ec-home-fundraising__card:hover .ec-home-fundraising__image img{
    transform: scale(1.04);
}

.ec-home-fundraising__badge{
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.50);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-home-fundraising__body{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.ec-home-fundraising__label{
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ec-home-fundraising__body h3{
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.12;
}

.ec-home-fundraising__body p{
    margin: 0 0 16px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 14px;
}

.ec-home-fundraising__price{
    margin-bottom: 18px;
    color: #f3d27a;
    font-size: 18px;
    font-weight: 700;
}

.ec-home-fundraising__body .btn{
    margin-top: auto;
    width: fit-content;
}

.ec-home-fundraising__cta{
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 1200px){
    .ec-home-fundraising__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px){
    .ec-home-fundraising{
        padding: 56px 0;
    }

    .ec-home-fundraising__grid{
        grid-template-columns: 1fr;
    }

    .ec-home-fundraising__card{
        border-radius: 20px;
    }

    .ec-home-fundraising__header p{
        font-size: 16px;
    }
}