@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;600&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Inter, sans-serif;
  background:#070707;
  color:#fff;
}

a{
  text-decoration:none;
  color:inherit;
}

.topbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 18px;
  background:rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,215,128,0.15);
}

.logo{
  font-family:"Playfair Display", serif;
  font-size:18px;
  letter-spacing:1px;
}
.logo span{
  color:#d7b06b;
}

.nav a{
  margin-left:14px;
  font-size:14px;
  opacity:0.85;
}
.nav a:hover{
  opacity:1;
  color:#d7b06b;
}

.hero{
  height:100vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:24px;
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(0,0,0,0.85), rgba(0,0,0,0.35));
}

.heroContent{
  position:relative;
  max-width:640px;
  text-align:left;
  padding-top:70px;
  animation:fadeUp 1.2s ease;
}

.heroContent h1{
  font-family:"Playfair Display", serif;
  font-size:44px;
  line-height:1.05;
  margin-bottom:12px;
}

.heroContent p{
  font-size:16px;
  opacity:0.9;
  margin-bottom:20px;
  max-width:520px;
}

.heroBtns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.notice{
  margin-top:18px;
  font-size:13px;
  opacity:0.8;
}

.pageTitle{
  padding:120px 20px 20px;
  text-align:center;
}
.pageTitle h1{
  font-family:"Playfair Display", serif;
  font-size:34px;
  margin-bottom:8px;
}
.pageTitle p{
  opacity:0.85;
}

.grid{
  padding:20px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:18px;
  max-width:1100px;
  margin:0 auto;
  padding-bottom:70px;
}

.card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,215,128,0.14);
  border-radius:18px;
  overflow:hidden;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition:0.25s;
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,215,128,0.30);
}

.card img{
  width:100%;
  height:300px;
  object-fit:contain;
  background:rgba(0,0,0,0.35);
}
}

.cardBody{
  padding:16px;
}

.cardBody h2{
  font-family:"Playfair Display", serif;
  margin-bottom:6px;
}

.price{
  font-size:20px;
  margin-bottom:12px;
  color:#d7b06b;
}
.price span{
  font-size:13px;
  opacity:0.8;
  color:#fff;
}

ul{
  list-style:none;
  margin-bottom:14px;
}
ul li{
  padding:6px 0;
  font-size:14px;
  opacity:0.88;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:14px;
  font-weight:600;
  letter-spacing:0.2px;
  transition:0.25s;
  font-size:14px;
}

.btn.gold{
  background:linear-gradient(135deg, #ffd78b, #b98a2e);
  color:#000;
}
.btn.gold:hover{
  transform: scale(1.03);
}

.btn.glass{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
}
.btn.glass:hover{
  border-color:rgba(255,215,128,0.30);
  color:#d7b06b;
}

.btn.big{
  width:100%;
  text-align:center;
  padding:15px 18px;
  margin-top:14px;
}

.vip{
  border-color: rgba(255,215,128,0.35);
}

.footer{
  text-align:center;
  padding:25px 12px;
  font-size:13px;
  opacity:0.75;
  border-top:1px solid rgba(255,255,255,0.06);
}

.mini{
  font-size:12px;
  opacity:0.75;
}
.center{
  text-align:center;
}

.payBox{
  padding:20px;
  max-width:900px;
  margin:0 auto;
  padding-bottom:70px;
}

.payCard{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,215,128,0.18);
  border-radius:18px;
  padding:18px;
}

.payCard h2{
  font-family:"Playfair Display", serif;
  font-size:26px;
  margin-bottom:8px;
}

.priceBig{
  font-size:28px;
  color:#d7b06b;
  margin-bottom:14px;
}

.payMethods{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.method{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.25);
}

.copyBox{
  margin-top:8px;
  padding:10px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  font-weight:600;
}

.thanks{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  padding-top:80px;
}

.thanksCard{
  text-align:center;
  max-width:520px;
  padding:22px;
  border-radius:18px;
  border:1px solid rgba(255,215,128,0.18);
  background:rgba(255,255,255,0.04);
}

.thanksCard h1{
  font-family:"Playfair Display", serif;
  font-size:40px;
  margin-bottom:10px;
}

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(20px); }
  to{ opacity:1; transform: translateY(0); }
}
.method .btn.gold.big{
  box-shadow: 0 10px 30px rgba(215,176,107,0.20);
}
.contactBox{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px 70px;
}

.contactCard{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,215,128,0.18);
  border-radius:18px;
  padding:18px;
  text-align:center;
}
/* ===== SECTION URGENCE ===== */
.urgency {
  text-align: center;
  margin: 18px 0;
  padding: 10px;
  background: rgba(255, 215, 128, 0.08);
  border-radius: 12px;
}

/* ===== SECTION CONFIANCE ===== */
.trust {
  margin-top: 25px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 128, 0.18);
}

.trust h2 {
  text-align: center;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.trust ul {
  list-style: none;
  padding: 0;
}

.trust ul li {
  margin: 6px 0;
  font-size: 15px;
}

/* ===== SECTION BONUS ===== */
.bonus {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 215, 128, 0.15);
  text-align: center;
}

.bonus h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq {
  margin-top: 30px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 128, 0.18);
}

.faq h2 {
  text-align: center;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.faq .question {
  margin-bottom: 15px;
}

.faq .question h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.faq .question p {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== CARTES LIVE ===== */
.live-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 128, 0.18);
  border-radius: 18px;
  padding: 16px;
  transition: 0.25s;
}

.live-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 128, 0.35);
}

/* ===== BOUTONS ===== */
.btn.gold {
  background: linear-gradient(135deg, #ffd78b, #b98a2e);
  color: #000;
}

.btn.gold:hover {
  transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .trust, .bonus, .faq {
    padding: 14px;
  }
}
/* ===== SECTION URGENCE ===== */
.urgency {
  text-align: center;
  margin: 18px 0;
  padding: 10px;
  background: rgba(255, 215, 128, 0.08);
  border-radius: 12px;
}

/* ===== SECTION CONFIANCE ===== */
.trust {
  margin-top: 25px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 128, 0.18);
}

.trust h2 {
  text-align: center;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.trust ul {
  list-style: none;
  padding: 0;
}

.trust ul li {
  margin: 6px 0;
  font-size: 15px;
}

/* ===== SECTION BONUS ===== */
.bonus {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 215, 128, 0.15);
  text-align: center;
}

.bonus h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq {
  margin-top: 30px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 128, 0.18);
}

.faq h2 {
  text-align: center;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.faq .question {
  margin-bottom: 15px;
}

.faq .question h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.faq .question p {
  font-size: 14px;
  opacity: 0.9;
}

/* ===== CARTES LIVE ===== */
.live-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 128, 0.18);
  border-radius: 18px;
  padding: 16px;
  transition: 0.25s;
}

.live-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 128, 0.35);
}

/* ===== BOUTONS ===== */
.btn.gold {
  background: linear-gradient(135deg, #ffd78b, #b98a2e);
  color: #000;
}

.btn.gold:hover {
  transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .trust, .bonus, .faq {
    padding: 14px;
  }
}
.contactCard h2{
  font-family:"Playfair Display", serif;
  margin-bottom:8px;
}

.contactCard p{
  opacity:0.85;
  margin-bottom:14px;
}
.about, .process {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about h2, .process h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #d7b06b;
}

.about p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.process ul {
  list-style: none;
  padding: 0;
}

.process li {
  margin: 12px 0;
  font-weight: 500;
}
.footer {
  padding: 40px 20px;
  background: #0d0d0d;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: auto;
}

.service-zone {
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #d7b06b;
}

.contact-info {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.copyright {
  font-size: 13px;
  opacity: 0.6;
}
.heroContent {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.heroContent h1 {
  font-size: 48px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.heroContent h2 {
  font-size: 22px;
  color: #d7b06b;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.heroBtns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}