:root{
  --black:#050505;
  --gold:#d8c69a;
  --gold2:#b99b56;
  --white:#fff;
  --muted:#b9bdc8;
  --line:rgba(216,198,154,.25);
  --whats:#25D366;
  --danger:#ff6b6b;
}

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

html{scroll-behavior:smooth}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at 20% 0%,rgba(216,198,154,.16),transparent 32%),
    linear-gradient(180deg,#050505,#090b10 45%,#050505);
  color:var(--white);
  min-height:100vh;
}

.container{
  width:min(1180px,100%);
  margin:0 auto;
  padding:0 18px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,5,5,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-content{
  padding:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width:56px;
  height:56px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold);
  font-weight:900;
  letter-spacing:1px;
  flex:0 0 auto;
}

.brand strong{
  display:block;
  font-size:20px;
}

.brand span{
  display:block;
  margin-top:5px;
  color:var(--gold);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.hero{
  padding-top:42px;
  padding-bottom:28px;
}

.eyebrow{
  color:var(--gold);
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}

.hero h1,
.quote-card h2,
.result-card h2,
.final-cta h2{
  font-family:Georgia,'Times New Roman',serif;
  font-weight:500;
}

.hero h1{
  font-size:clamp(36px,6vw,70px);
  line-height:1;
  max-width:850px;
}

.hero p{
  color:#d9dce4;
  font-size:18px;
  line-height:1.6;
  max-width:720px;
  margin-top:14px;
}

.quote-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:20px;
  align-items:start;
  padding-top:20px;
  padding-bottom:60px;
}

.quote-card,
.result-card{
  background:linear-gradient(180deg,rgba(24,27,34,.96),rgba(12,13,16,.96));
  border:1px solid var(--line);
  border-radius:26px;
  padding:24px;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.quote-card h2,
.result-card h2{
  font-size:clamp(30px,5vw,46px);
  margin-bottom:18px;
}

.result-card p{
  color:var(--muted);
  line-height:1.5;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.field{
  margin-bottom:16px;
}

label{
  display:block;
  color:var(--gold);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.8px;
  font-weight:900;
  margin-bottom:8px;
}

input{
  width:100%;
  background:#101010;
  border:1px solid #333;
  border-radius:18px;
  padding:18px;
  color:#fff;
  font-size:18px;
  outline:none;
}

input:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(216,198,154,.13);
}

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

.trip-option{
  cursor:pointer;
  user-select:none;
  background:#101010;
  border:1px solid #333;
  border-radius:22px;
  padding:22px;
  color:#fff;
  font-weight:950;
  text-align:center;
  transition:.2s ease;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  letter-spacing:1px;
}

.trip-option.active{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(216,198,154,.16);
  background:linear-gradient(180deg,#181818,#101010);
}

.hidden{display:none!important}

.field-help{
  color:#aeb3c0;
  font-size:13px;
  margin-top:8px;
  line-height:1.45;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  padding:17px 18px;
  font-weight:950;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-size:16px;
}

.btn-gold{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#111;
}

.btn-whatsapp{
  background:var(--whats);
  color:#fff;
}

.full{width:100%}

.error-message{
  display:none;
  color:var(--danger);
  margin-top:12px;
  line-height:1.45;
  font-weight:700;
}

.result{
  margin-top:18px;
}

.result-item{
  background:#101010;
  border:1px solid #303030;
  border-radius:14px;
  padding:15px;
  margin-bottom:10px;
}

.result-item span{
  display:block;
  color:#969dab;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin-bottom:7px;
}

.result-item strong{
  line-height:1.35;
}

.total-box{
  background:linear-gradient(135deg,rgba(216,198,154,.18),rgba(255,255,255,.04));
  border:1px solid rgba(216,198,154,.32);
  border-radius:22px;
  padding:20px;
  margin-top:12px;
  margin-bottom:18px;
}

.total-box span{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:12px;
  font-weight:900;
}

.total-box strong{
  display:block;
  font-size:clamp(42px,7vw,64px);
  line-height:1;
  margin-top:8px;
  letter-spacing:-2px;
}

.map{
  display:none;
  width:100%;
  height:260px;
  border-radius:18px;
  margin:16px 0;
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}

.final-cta{
  text-align:center;
  padding-top:20px;
  padding-bottom:70px;
}

.final-cta h2{
  font-size:clamp(38px,6vw,70px);
}

.final-cta p{
  color:#d9dce4;
  line-height:1.6;
  margin:12px auto 22px;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:30px 0;
  color:#9da2af;
  text-align:center;
  font-size:14px;
}

@media(max-width:900px){
  .quote-grid,
  .form-row,
  .trip-options{
    grid-template-columns:1fr;
  }

  .brand strong{
    font-size:19px;
  }

  .brand span{
    font-size:11px;
  }

  .quote-grid{
    padding-top:10px;
  }
}
