@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;700;800;900&display=swap');

:root{
  --bg:#020713;
  --bg2:#061225;
  --navy:#071a34;
  --navy2:#0b2547;
  --gold:#c8962e;
  --gold2:#f4d36b;
  --gold3:#8d6618;
  --blue-glow:#143c6f;
  --white:#fff;
  --muted:#b8c3d6;
  --line:rgba(244,211,107,.18);
  --card:rgba(255,255,255,.07);
  --glass:rgba(4,12,26,.82);
  --shadow:0 28px 90px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 78% 4%, rgba(244,211,107,.18), transparent 30%),
    radial-gradient(circle at 12% 24%, rgba(20,60,111,.30), transparent 34%),
    linear-gradient(180deg, #01040b 0%, #061225 42%, #020713 100%);
  color:var(--white);
  font-family:Inter, Arial, sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  background:
    linear-gradient(90deg, rgba(244,211,107,.032) 1px, transparent 1px),
    linear-gradient(rgba(244,211,107,.024) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.18));
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(180deg, rgba(1,4,11,.38), rgba(1,4,11,.48)),
    url("../img/background-libertadores.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:.34;
  filter:contrast(1.04) saturate(1);
}



a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px, calc(100% - 36px)); margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(1,4,11,.90);
  backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(244,211,107,.16);
  box-shadow:0 14px 42px rgba(0,0,0,.24);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.45));
}
.brand small{
  display:block;
  color:var(--gold2);
  font-size:11px;
  letter-spacing:.22em;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:#e8ecf4;
  font-size:14px;
  font-weight:700;
}
.nav-links a{opacity:.84}
.nav-links a:hover{opacity:1;color:var(--gold2)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  cursor:pointer;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  transition:.22s ease;
}
.btn-primary{
  color:#07101f;
  background:linear-gradient(135deg, #fff2a6 0%, var(--gold2) 28%, var(--gold) 64%, var(--gold3) 100%);
  box-shadow:0 16px 42px rgba(200,150,46,.26), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-primary:hover{transform:translateY(-2px); filter:brightness(1.08)}
.btn-ghost{
  color:#fff;
  border:1px solid rgba(244,211,107,.28);
  background:rgba(255,255,255,.045);
}
.btn-ghost:hover{border-color:var(--gold2);color:var(--gold2);background:rgba(244,211,107,.08)}
.btn-red{
  color:#07101f;
  background:linear-gradient(135deg, #fff2a6, var(--gold), var(--gold3));
  box-shadow:0 18px 42px rgba(200,150,46,.24);
}
.btn-block{width:100%}

.hero{
  position:relative;
  min-height:calc(100vh - 76px);
  padding:74px 0 90px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:auto -18% 2% -18%;
  height:330px;
  background:radial-gradient(ellipse at center, rgba(244,211,107,.20), transparent 60%);
  filter:blur(18px);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  align-items:center;
  gap:46px;
  position:relative;
  z-index:2;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  border:1px solid rgba(244,211,107,.46);
  background:linear-gradient(90deg, rgba(244,211,107,.16), rgba(20,60,111,.22));
  color:var(--gold2);
  border-radius:999px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
.kicker::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--gold2);
  box-shadow:0 0 18px var(--gold2);
}

h1,h2,h3,p{margin-top:0}
.hero h1{
  margin:22px 0 18px;
  font-family:Anton, Impact, sans-serif;
  font-weight:400;
  text-transform:uppercase;
  font-size:clamp(56px, 8vw, 116px);
  line-height:.87;
  letter-spacing:.01em;
  text-shadow:0 10px 30px rgba(0,0,0,.65);
}
.hero h1 span{
  display:block;
  color:var(--gold2);
  background:linear-gradient(180deg, #fff0a2 0%, #f2cc5d 45%, #b78222 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:none;
  filter:drop-shadow(0 12px 22px rgba(0,0,0,.42));
}
.hero-lead{
  font-size:clamp(18px, 2.1vw, 24px);
  line-height:1.45;
  max-width:680px;
  color:#e7edf7;
  font-weight:600;
}
.strong-line{
  margin:26px 0;
  padding-left:18px;
  border-left:4px solid var(--gold);
  color:#fff;
  font-size:18px;
  line-height:1.45;
  font-weight:800;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 26px;
}

.hero-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
  max-width:760px;
}
.fact{
  min-height:104px;
  padding:18px;
  border:1px solid rgba(244,211,107,.18);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(7,26,52,.56), rgba(255,255,255,.035));
  box-shadow:0 18px 60px rgba(0,0,0,.24);
}
.fact small{
  display:block;
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
}
.fact b{
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:19px;
  line-height:1.2;
}

.hero-visual{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero-visual::before{
  content:"";
  position:absolute;
  width:520px;height:520px;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(244,211,107,.28), rgba(244,211,107,.06) 40%, transparent 68%),
    radial-gradient(circle at 30% 30%, rgba(20,60,111,.36), transparent 52%);
  filter:blur(8px);
  bottom:80px;
}
.logo-orb{
  position:absolute;
  top:8px;
  right:22px;
  width:220px;
  aspect-ratio:1;
  border-radius:50%;
  padding:0;
  background:transparent;
  box-shadow:none;
  z-index:4;
}
.logo-orb img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 18px 35px rgba(0,0,0,.58)) drop-shadow(0 0 28px rgba(244,211,107,.16));
}
.apostolo{
  position:relative;
  z-index:3;
  width:min(760px, 122%);
  max-width:none;
  margin-bottom:-96px;
  transform:translateX(-34px);
  filter:drop-shadow(0 26px 60px rgba(0,0,0,.76));
}
.visual-card{
  position:absolute;
  left:0;
  bottom:42px;
  z-index:5;
  width:min(340px, 78%);
  padding:20px;
  border:1px solid rgba(244,211,107,.35);
  background:linear-gradient(180deg, rgba(7,26,52,.88), rgba(3,6,11,.80));
  backdrop-filter: blur(18px);
  border-radius:26px;
  box-shadow:var(--shadow);
}
.visual-card b{
  display:block;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  margin-bottom:10px;
}
.visual-card span{
  display:block;
  color:#eef3fb;
  font-size:15px;
  line-height:1.45;
  font-weight:700;
}

.section{
  position:relative;
  padding:92px 0;
}
.section-tight{padding:70px 0}
.section-title{
  max-width:860px;
  margin-bottom:34px;
}
.eyebrow{
  color:var(--gold2);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:14px;
}
h2{
  font-family:Anton, Impact, sans-serif;
  font-weight:400;
  text-transform:uppercase;
  font-size:clamp(36px, 5vw, 72px);
  line-height:.95;
  margin-bottom:16px;
}
.section-title p, .wide-text{
  color:#d6deeb;
  font-size:18px;
  line-height:1.66;
  max-width:820px;
}

.gold{color:var(--gold2)}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  border:1px solid rgba(244,211,107,.18);
  background:linear-gradient(180deg, rgba(7,26,52,.52), rgba(255,255,255,.035));
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 70px rgba(0,0,0,.22);
}
.card h3{
  font-size:22px;
  margin-bottom:10px;
  color:#fff;
}
.card p{
  color:#cbd5e4;
  line-height:1.6;
  margin-bottom:0;
}
.icon{
  width:48px;height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  color:#07101f;
  font-weight:900;
  background:linear-gradient(135deg, #fff2a6, var(--gold2), var(--gold));
  box-shadow:0 12px 30px rgba(244,211,107,.22);
}

.callout{
  border:1px solid rgba(244,211,107,.34);
  background:
    linear-gradient(135deg, rgba(244,211,107,.12), rgba(20,60,111,.22)),
    rgba(255,255,255,.04);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}

.minister{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:30px;
  align-items:center;
}
.minister-photo{
  min-height:500px;
  border-radius:34px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(244,211,107,.20), transparent 48%),
    linear-gradient(180deg, rgba(7,26,52,.82), rgba(0,0,0,.70));
  border:1px solid rgba(244,211,107,.25);
}
.minister-photo img{
  position:absolute;
  inset:auto 0 -42px 0;
  width:112%;
  max-width:none;
  max-height:760px;
  object-fit:contain;
  margin:auto;
}
.minister-copy{
  padding:34px;
}
.minister-copy h2{font-size:clamp(38px, 4.6vw, 68px)}
.name-tag{
  color:var(--gold2);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.location{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:24px;
}
.map-card{
  min-height:100%;
  background:
    linear-gradient(135deg, rgba(244,211,107,.12), rgba(7,26,52,.30)),
    rgba(255,255,255,.045);
}
.address{
  font-size:20px;
  line-height:1.45;
  font-weight:800;
  color:#fff;
  margin:12px 0 22px;
}
.address span{color:var(--gold2)}

.form-wrap{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:26px;
  align-items:start;
}
.form-panel{
  border:1px solid rgba(244,211,107,.34);
  background:
    linear-gradient(180deg, rgba(7,26,52,.88), rgba(3,6,11,.90)),
    rgba(255,255,255,.04);
  border-radius:34px;
  padding:30px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field-full{grid-column:1/-1}
label{
  color:#eef3fb;
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
}
input, select, textarea{
  width:100%;
  min-height:56px;
  border:1px solid rgba(244,211,107,.18);
  border-radius:17px;
  background:rgba(255,255,255,.065);
  color:#fff;
  outline:none;
  padding:0 16px;
  font:inherit;
  font-weight:600;
}
select option{background:#07111f;color:#fff}
input:focus, select:focus{
  border-color:var(--gold2);
  box-shadow:0 0 0 4px rgba(244,211,107,.11);
}
.form-note{
  margin:18px 0 0;
  color:#cbd5e4;
  line-height:1.55;
  font-size:14px;
}
.status-box{
  display:none;
  margin-bottom:18px;
  padding:16px;
  border-radius:18px;
  background:rgba(244,211,107,.12);
  border:1px solid rgba(244,211,107,.32);
  color:#fff;
  font-weight:800;
}
.status-box.show{display:block}
.closed-panel{
  display:none;
  text-align:center;
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(244,211,107,.34);
  background:linear-gradient(180deg, rgba(7,26,52,.86), rgba(3,6,11,.92));
}
.closed-panel.show{display:block}
.closed-panel h3{
  font-family:Anton, Impact, sans-serif;
  text-transform:uppercase;
  font-size:44px;
  line-height:1;
  margin-bottom:16px;
  color:var(--gold2);
}
.closed-panel p{
  color:#e8edf7;
  line-height:1.6;
  font-size:18px;
}

.footer{
  padding:42px 0;
  border-top:1px solid rgba(244,211,107,.16);
  background:rgba(0,0,0,.34);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:#aeb8c8;
  font-size:14px;
}
.footer-inner b{color:#fff}

.pix-page, .closed-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:50px 0;
}
.pix-card-main{
  width:min(1020px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:24px;
  align-items:stretch;
}
.qr-box{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.qr-image{
  background:#fff;
  border-radius:28px;
  padding:20px;
  border:1px solid rgba(244,211,107,.3);
}
.copy-area{
  width:100%;
  min-height:110px;
  resize:none;
  padding:14px;
  line-height:1.45;
}
.price-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  min-height:72px;
  padding:10px 22px;
  border-radius:999px;
  color:#07101f;
  font-family:Anton, Impact, sans-serif;
  font-size:38px;
  background:linear-gradient(135deg, #fff2a6, var(--gold2), var(--gold));
  margin:8px 0 20px;
}
.steps{
  display:grid;
  gap:12px;
  margin:22px 0;
}
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:#dbe3f0;
  font-weight:700;
  line-height:1.5;
}
.step i{
  flex:0 0 30px;
  width:30px;height:30px;
  border-radius:50%;
  background:rgba(244,211,107,.16);
  color:var(--gold2);
  display:flex;align-items:center;justify-content:center;
  font-style:normal;
  font-weight:900;
}
.alert{
  border:1px solid rgba(244,211,107,.35);
  background:rgba(244,211,107,.12);
  color:#fff;
  border-radius:20px;
  padding:16px;
  line-height:1.5;
  font-weight:800;
}
.small-link{
  color:var(--gold2);
  text-decoration:underline;
  text-underline-offset:4px;
}

@media (max-width: 980px){
  .nav-links{display:none}
  .hero-grid,.grid-2,.minister,.location,.form-wrap,.pix-card-main{grid-template-columns:1fr}
  .hero{padding-top:46px}
  .hero-visual{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

@media (max-width: 640px){
  .container{width:min(100% - 24px, 1180px)}
  .brand img{width:48px;height:48px}
  .brand div{font-size:13px}
  .hero h1{font-size:54px}
  .hero-visual{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}


.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:50;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:56px;
  padding:0 20px;
  border-radius:999px;
  color:#07101f;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  background:linear-gradient(135deg, #fff2a6 0%, var(--gold2) 35%, var(--gold) 100%);
  box-shadow:0 18px 44px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.18) inset;
  transition:.22s ease;
}
.whatsapp-float:hover{
  transform:translateY(-3px);
  filter:brightness(1.06);
}
.whatsapp-float .wa-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:#16a34a;
  font-size:18px;
  box-shadow:0 8px 18px rgba(22,163,74,.30);
}
.whatsapp-float small{
  display:block;
  color:#173052;
  font-size:10px;
  line-height:1;
  letter-spacing:.10em;
}
.whatsapp-float b{
  display:block;
  font-size:13px;
  line-height:1.1;
}

@media (max-width: 640px){
  .whatsapp-float{
    left:14px;
    right:14px;
    bottom:14px;
    justify-content:center;
    min-height:58px;
    padding:0 14px;
  }
  body{
    padding-bottom:78px;
  }
}
