/* Travel to Brazil — Design System */

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #A68832;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --text: #3A3A3A;
  --text-muted: #6B6B6B;
  --border: #E5E0D8;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --header-height: 64px;
  --max-width: 1200px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
  --transition: 0.25s ease;
}

*,
*::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);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p { margin-bottom: var(--space-sm); }

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--off-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--gold-light);
}

.section__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.section--dark .section__subtitle {
  color: rgba(248, 245, 240, 0.75);
}

.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo:hover {
  color: var(--gold-light);
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__link {
  color: var(--off-white);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
}

.lang-badge__btn {
  background: none;
  border: none;
  padding: 0.35rem 0.25rem;
  min-height: 44px;
  min-width: 32px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(248, 245, 240, 0.55);
  cursor: pointer;
  transition: color var(--transition);
}

.lang-badge__btn:hover {
  color: var(--gold-light);
}

.lang-badge__btn--active {
  color: var(--gold);
  font-weight: 600;
}

.lang-badge__sep {
  color: rgba(248, 245, 240, 0.35);
}

.lang-badge__active {
  color: var(--gold);
  font-weight: 600;
}

.lang-badge__disabled {
  color: rgba(248, 245, 240, 0.4);
  cursor: not-allowed;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  padding: var(--space-lg) var(--space-sm);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
}

.mobile-nav__link {
  display: block;
  color: var(--off-white);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__link--active {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-sm) var(--space-xl);
  background: var(--dark);
  color: var(--off-white);
  overflow: hidden;
}

.hero--short {
  min-height: 45vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.25), rgba(26, 26, 26, 0.45));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(248, 245, 240, 0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn--dark {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--dark-2);
  color: var(--gold-light);
}

/* Cards */
.grid {
  display: grid;
  gap: var(--space-md);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
}

.card__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md);
}

.card__body .btn {
  margin-top: auto;
}

.card__title {
  margin-bottom: var(--space-xs);
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.card__list {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Features */
.features-grid {
  display: grid;
  gap: var(--space-md);
}

.feature {
  padding: var(--space-md);
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.feature__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.feature--dark {
  background: var(--dark-2);
  border-left-color: var(--gold);
}

.feature--dark .feature__title {
  color: var(--gold-light);
}

.feature--dark .feature__text {
  color: rgba(248, 245, 240, 0.7);
}

/* Why us checklist */
.checklist {
  display: grid;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
}

.checklist__item::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--off-white);
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
}

.cta-band__title {
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
}

.cta-band__text {
  max-width: 560px;
  margin: 0 auto var(--space-md);
  color: rgba(248, 245, 240, 0.85);
}

/* Pricing */
.pricing-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.pricing-card--featured {
  border-top-width: 6px;
  transform: scale(1);
}

.pricing-card__name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
  text-align: left;
}

.pricing-card__features li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

.payment-icons__item {
  padding: var(--space-xs) var(--space-sm);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Gallery */
.gallery {
  display: grid;
  gap: var(--space-sm);
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* Form */
.contact-layout {
  display: grid;
  gap: var(--space-lg);
}

.contact-info {
  background: var(--dark);
  color: var(--off-white);
  padding: var(--space-lg);
  border-radius: var(--radius);
}

.contact-info__title {
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.contact-info__item {
  margin-bottom: var(--space-md);
}

.contact-info__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.form__label--optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form__success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

/* Legal pages */
.legal-content {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.page-header {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-lg);
  background: var(--dark);
  color: var(--off-white);
  text-align: center;
}

.page-header__title {
  color: var(--gold-light);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(248, 245, 240, 0.75);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.site-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.site-footer__heading {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.site-footer__links {
  list-style: none;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a {
  color: rgba(248, 245, 240, 0.75);
  font-size: 0.9375rem;
}

.site-footer__links a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8125rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.menu-open {
  overflow: hidden;
}
