:root {
  --bg-1: #fbf5f2;
  --bg-2: #f3e7df;
  --gold: #c89b6d;
  --gold-dark: #9b6b48;
  --brown: #5c3a2b;
  --rose: #a14c5c;
  --text: #352821;
  --muted: #6f5a4d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(80, 40, 20, 0.16);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(200,155,109,0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(161,76,92,0.10), transparent 25%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
}
.hero-wrap { max-width: 1240px; margin: 0 auto; padding: 24px; }
.hero {
  position: relative; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow);
  background: rgba(255,255,255,0.92); border: 1px solid rgba(200,155,109,0.18);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.75), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(200,155,109,0.12), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(161,76,92,0.08), transparent 22%);
  pointer-events: none;
}
.topbar { height: 8px; background: linear-gradient(90deg, #c89b6d, #eed5b8, #b77959, #c89b6d); }
.nav {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 30px; position: relative; z-index: 1;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--brown); letter-spacing: 0.4px; }
.brand-badge {
  background: #fff6ef; border: 1px solid rgba(200,155,109,0.35); color: var(--gold-dark);
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; text-transform: uppercase;
}
.nav-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  border-radius: 999px; padding: 12px 18px; font-weight: 700; font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn { background: linear-gradient(90deg, #d8b188, #c48767); color: #fff; box-shadow: 0 10px 24px rgba(196,135,103,0.20); }
.btn-outline { color: var(--brown); border: 1px solid rgba(92,58,43,0.18); background: rgba(255,255,255,0.76); }
.whatsapp-btn { background: linear-gradient(90deg, #25d366, #128c7e); }
.btn:hover, .btn-outline:hover { transform: translateY(-1px); opacity: 0.96; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; position: relative; z-index: 1; }
.left, .right { padding: 28px 34px 38px; }
.eyebrow {
  display: inline-block; margin-bottom: 18px; background: #f9ede2; color: var(--gold-dark);
  border: 1px solid rgba(200,155,109,0.28); padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  animation: floatTag 3s ease-in-out infinite;
}
@keyframes floatTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }
.logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.logo-card {
  width: 118px; height: 118px; background: rgba(255,255,255,0.95); border: 1px solid rgba(200,155,109,0.26);
  border-radius: 24px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(70,40,20,0.08); overflow: hidden;
}
.logo-card img { width: 100%; height: 100%; object-fit: cover; }
h1 { font-size: 50px; line-height: 1.08; color: #3f2a1f; margin-bottom: 18px; max-width: 700px; }
.lead { font-size: 18px; color: var(--muted); max-width: 760px; margin-bottom: 18px; }
.lead strong { color: var(--brown); }
.separator { width: 78px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, #c89b6d, #a14c5c); margin: 16px 0 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 24px; }
.chip { padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid #ead7c6; color: #7d5a46; font-weight: 600; font-size: 14px; }
.cities { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.city-box { flex: 1 1 180px; background: linear-gradient(180deg, #fff8f2, #fff); border: 1px solid rgba(200,155,109,0.20); border-radius: 20px; padding: 16px; }
.city-box span { display: block; font-size: 13px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; font-weight: 700; }
.city-box strong { font-size: 20px; color: var(--brown); }
.right { background: linear-gradient(180deg, #6b4432, #4a2d22); color: white; display: flex; align-items: center; }
.panel { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 28px; padding: 28px; backdrop-filter: blur(3px); }
.panel h2 { font-size: 30px; line-height: 1.15; margin-bottom: 12px; }
.panel p { color: rgba(255,255,255,0.92); margin-bottom: 16px; font-size: 15px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 18px 0 22px; }
.time-box { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15); border-radius: 18px; padding: 14px 10px; text-align: center; }
.time-box strong { display: block; font-size: 26px; margin-bottom: 4px; }
.time-box span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.78); }
.form-title { margin-top: 8px; font-size: 17px; font-weight: 700; }
.field { margin-bottom: 12px; }
input, select { width: 100%; border: none; border-radius: 14px; padding: 14px 15px; font-size: 15px; outline: none; background: rgba(255,255,255,0.97); color: #352821; }
.submit {
  width: 100%; border: none; border-radius: 14px; padding: 15px 16px; font-size: 15px; font-weight: 700; cursor: pointer;
  color: var(--brown); background: linear-gradient(90deg, #f0d0b3, #e7b98e); margin-top: 8px; transition: transform 0.2s ease, opacity 0.2s ease;
}
.submit:hover { transform: translateY(-1px); opacity: 0.96; }
.subtext { font-size: 12px; color: rgba(255,255,255,0.72); margin-top: 12px; line-height: 1.55; }
.email-box, .alert {
  margin-top: 16px; padding: 14px 16px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; font-size: 14px;
}
.alert.success { background: rgba(46, 204, 113, 0.18); border-color: rgba(46, 204, 113, 0.35); }
.alert.error { background: rgba(231, 76, 60, 0.18); border-color: rgba(231, 76, 60, 0.35); }
.email-box a { color: #ffe7c9; text-decoration: none; font-weight: 700; }
.info-section { padding: 20px 32px 34px; background: rgba(255,255,255,0.66); border-top: 1px solid rgba(200,155,109,0.15); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card { background: rgba(255,255,255,0.92); border: 1px solid rgba(200,155,109,0.16); border-radius: 22px; padding: 18px; }
.info-card h3 { font-size: 18px; color: var(--brown); margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.footer { padding: 22px 28px 28px; text-align: center; color: #765847; font-size: 14px; background: #fff9f5; border-top: 1px solid #efddd0; }
.footer strong { color: var(--brown); }
.footer a { color: var(--gold-dark); text-decoration: none; font-weight: 700; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .left, .right { padding: 26px 22px 30px; }
  .info-grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
}
@media (max-width: 640px) {
  .nav { padding: 18px 18px 8px; flex-direction: column; align-items: flex-start; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .logo-card { width: 96px; height: 96px; }
  h1 { font-size: 30px; }
  .hero-wrap { padding: 12px; }
  .info-section { padding: 14px 18px 24px; }
}
