/* =============================================
   TOURS EXCLUSIVO — Estilos Principais
   ============================================= */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #111111;
  --bg-footer: #0a0a0a;
  --gold: #D4AF37;
  --gold-hover: #B5952F;
  --gold-light: #F3E5AB;
  --text-primary: #F5F5F5;
  --text-secondary: #A3A3A3;
  --text-muted: #525252;
  --border: #333333;
  --success: #25D366;
  --error: #EF4444;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: rgba(212,175,55,0.3); color: var(--text-primary); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* --- Utility --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.2em; }
.tracking-wider { letter-spacing: 0.3em; }
.gold-line { width: 60px; height: 2px; background: var(--gold); }
.gold-line-center { margin-left: auto; margin-right: auto; }
.section-padding { padding: 96px 0; }
@media (min-width: 768px) { .section-padding { padding: 128px 0; } }

/* --- Buttons --- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(110deg, #D4AF37 0%, #F3E5AB 45%, #D4AF37 55%, #D4AF37 100%);
  background-size: 200% 100%;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-gold:hover {
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
  background-position: 100% 0;
}
.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 40px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s ease, border-color 0.5s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.05);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: opacity 0.3s;
}
.navbar-logo:hover { opacity: 0.8; }
@media (min-width: 768px) { .navbar-logo { font-size: 1.5rem; } }
.nav-links {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.navbar-right {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) { .navbar-right { display: flex; } }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s;
}
.navbar-phone:hover { color: var(--gold); }
.navbar-phone svg { width: 16px; height: 16px; }
.navbar-cta {
  background: linear-gradient(110deg, #D4AF37 0%, #F3E5AB 45%, #D4AF37 55%, #D4AF37 100%);
  background-size: 200% 100%;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.3s;
}
.navbar-cta:hover { box-shadow: 0 0 20px rgba(212,175,55,0.2); }

/* Hamburger */
.hamburger {
  display: flex;
  padding: 8px;
  color: var(--text-primary);
  transition: color 0.3s;
  background: none;
  border: none;
}
.hamburger:hover { color: var(--gold); }
.hamburger svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 24px;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: block;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 12px 0;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
  padding-top: 16px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 80px 24px 0;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero h1 .gold {
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-tagline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .hero-tagline { font-size: 14px; } }
.hero-description {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
}
@media (min-width: 640px) { .hero-description { font-size: 18px; } }
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(212,175,55,0.6);
  transition: color 0.3s;
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--gold); }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================
   CARDS (Fleet, Tours, Advantages)
   ============================================= */
.section-header { margin-bottom: 64px; }
@media (min-width: 768px) { .section-header { margin-bottom: 80px; } }
.section-title {
  font-size: 1.875rem;
  margin-bottom: 24px;
  margin-top: 24px;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 768px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}
@media (min-width: 1024px) { .section-subtitle { font-size: 18px; } }

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.grid-3-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .grid-3-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1024px) { .grid-3-2 { grid-template-columns: repeat(3, 1fr); } }

/* Card base */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
}
.card-image {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 24px; }
@media (min-width: 768px) { .card-body { padding: 32px; } }
.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}
@media (min-width: 768px) { .card-title { font-size: 1.5rem; } }
.card:hover .card-title { color: var(--gold); }
.card-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}
.card-meta svg { width: 16px; height: 16px; }

/* Tour card specifics */
.tour-card { display: flex; flex-direction: column; }
.tour-card .card-image { aspect-ratio: 3/2; position: relative; }
.tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
}
.tour-badge svg { width: 14px; height: 14px; color: var(--gold); }
.tour-card .card-body { flex: 1; display: flex; flex-direction: column; }
.tour-highlights {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.tour-highlights span { color: var(--gold); font-weight: 500; }
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tour-price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 600;
}
.tour-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: color 0.3s;
}
.tour-cta:hover { color: var(--gold); }
.tour-cta svg { width: 16px; height: 16px; transition: transform 0.3s; }
.tour-cta:hover svg { transform: translateX(4px); }

/* Advantage card */
.advantage-card {
  text-align: center;
  padding: 32px;
}
@media (min-width: 768px) { .advantage-card { padding: 40px; } }
.advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  transition: border-color 0.3s;
}
.card:hover .advantage-icon { border-color: var(--gold); }
.advantage-icon svg { width: 24px; height: 24px; color: var(--gold); }

/* Section CTA */
.section-cta { text-align: center; margin-top: 64px; }

/* =============================================
   BOOKING SECTION
   ============================================= */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .booking-grid { grid-template-columns: 2fr 1fr; gap: 64px; }
}
.form-group { margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.form-label {
  display: block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-input,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  padding: 16px 0;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus { border-bottom-color: var(--gold); }
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}
.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 16px;
  font-size: 14px;
  resize: none;
  min-height: 120px;
  transition: border-color 0.3s;
}
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea:focus { border-color: var(--gold); }
.form-time-row { display: flex; gap: 12px; }
.form-time-row .form-select { flex: 1; }
.form-phone-row { display: flex; gap: 12px; }
.form-phone-row .form-select { width: 90px; flex-shrink: 0; }
.form-phone-row .form-input { flex: 1; }
.form-radio-group { display: flex; gap: 24px; padding-top: 16px; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}
.form-radio input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-checkbox:checked { background: var(--gold); }
.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox-label {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}
.form-checkbox-label a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.form-checkbox-label a:hover { opacity: 0.8; text-decoration: underline; }
.form-error {
  color: var(--error);
  font-size: 12px;
  margin-top: 8px;
  display: none;
}
.form-error.show { display: block; }
.form-note {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 16px;
}
.return-fields { display: none; }
.return-fields.show { display: grid; }

/* Contact Info */
.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 32px;
}
@media (min-width: 768px) { .contact-card { padding: 40px; } }
.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  transition: color 0.3s;
}
a.contact-item:hover .contact-item-text { color: var(--gold); }
.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-text { font-size: 14px; }
.contact-item-sub { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.contact-social-title {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 16px;
}
.contact-social {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  color: var(--text-secondary);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.social-icon svg { width: 16px; height: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 64px; }
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
.footer-heading {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold); }
.footer-link svg { width: 16px; height: 16px; }
.footer-legal-link {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-legal-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { color: var(--text-muted); font-size: 12px; }

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 90;
  background: var(--success);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 30px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 28px; height: 28px; }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; justify-content: space-between; }
}
.cookie-text {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) { .cookie-text { text-align: left; font-size: 14px; } }
.cookie-text a { color: var(--gold); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 24px;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}
.cookie-accept:hover { background: var(--gold-hover); }
.cookie-close {
  color: var(--text-muted);
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.cookie-close:hover { color: var(--text-primary); }
.cookie-close svg { width: 16px; height: 16px; }

/* =============================================
   AUXILIARY PAGES (Termos, Privacidade)
   ============================================= */
.aux-header {
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.aux-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aux-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s;
}
.aux-back:hover { color: var(--gold); }
.aux-back svg { width: 16px; height: 16px; }
.aux-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) { .aux-content { padding: 96px 24px; } }
.aux-content h1 {
  font-size: 1.875rem;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .aux-content h1 { font-size: 2.25rem; } }
.aux-section { margin-bottom: 40px; }
.aux-section h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.aux-section p, .aux-section li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.aux-section ul { padding-left: 24px; }
.aux-section li { list-style: disc; margin-bottom: 8px; }
.aux-section li strong { color: var(--text-primary); }
.aux-date {
  color: var(--text-muted);
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.aux-footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
  text-align: center;
}
.aux-footer p { color: var(--text-muted); font-size: 12px; }

/* Toast notification */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 16px 24px;
  font-size: 14px;
  max-width: 400px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--error); }
