/* ========================================
   EU VOU PRO MUNDO — Global Styles v2
   Modern / Premium / 2026
   ======================================== */

:root {
  --color-primary: #1a3a5c;
  --color-primary-dark: #0a1e33;
  --color-accent: #e8a838;
  --color-accent-hover: #d4952e;
  --color-accent-glow: rgba(232,168,56,0.25);
  --color-text: #1a1a2e;
  --color-text-light: #555770;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6fa;
  --color-bg-dark: #0a1e33;
  --color-border: #e4e7ed;
  --color-success: #2e7d4f;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(10,30,51,0.06);
  --shadow-md: 0 4px 16px rgba(10,30,51,0.08);
  --shadow-lg: 0 12px 40px rgba(10,30,51,0.1);
  --shadow-xl: 0 20px 60px rgba(10,30,51,0.12);
  --shadow-accent: 0 8px 32px rgba(232,168,56,0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.15s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.1rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

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

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__header p {
  font-size: 1.08rem;
  color: var(--color-text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #f0b84a 100%);
  color: var(--color-primary-dark);
  box-shadow: 0 2px 8px var(--color-accent-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

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

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

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

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

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

.btn--white:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228,231,237,0.6);
  transition: all var(--transition);
}

.header--scrolled {
  box-shadow: 0 1px 12px rgba(10,30,51,0.06);
  background: rgba(255,255,255,0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header__logo {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.03em;
}

.header__logo span {
  color: var(--color-accent);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary-dark);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  margin-left: 4px;
  font-size: 0.85rem;
  padding: 10px 24px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(160deg, #0a1e33 0%, #15355a 50%, #1a3a5c 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,58,92,0.4) 0%, transparent 65%);
  border-radius: 50%;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,168,56,0.1);
  color: var(--color-accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(232,168,56,0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.1rem;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero__sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 520px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__highlight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: inline-block;
}

/* ========================================
   DESTINATION CARDS
   ======================================== */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}

.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(232,168,56,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232,168,56,0.3);
  color: var(--color-text);
}

.dest-card:hover::before {
  opacity: 1;
}

.dest-card__flag {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.dest-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.dest-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.dest-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dest-card__link svg {
  transition: transform var(--transition);
}

.dest-card:hover .dest-card__link svg {
  transform: translateX(5px);
}

/* ========================================
   STEPS
   ======================================== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step-counter;
}

.step {
  text-align: center;
  position: relative;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step__number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #f0b84a 100%);
  color: var(--color-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px var(--color-accent-glow);
}

.step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ========================================
   FEATURES
   ======================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #f0b84a);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature:hover::after {
  opacity: 1;
}

.feature__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232,168,56,0.1) 0%, rgba(232,168,56,0.05) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.feature h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--color-white);
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: rgba(232,168,56,0.25);
}

.faq__item--open {
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  transition: background var(--transition-fast);
  letter-spacing: -0.01em;
}

.faq__question:hover {
  background: var(--color-bg-alt);
}

.faq__icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__answer__inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto 32px;
}

.cta-section .cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   COUNTRY PAGE HERO
   ======================================== */
.country-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #0a1e33 0%, #15355a 50%, #1a3a5c 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.country-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.country-hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.country-hero__text {
  padding-top: 8px;
}

.country-hero__text h1 {
  margin-bottom: 20px;
}

.country-hero__text p {
  margin-bottom: 28px;
}

.country-hero__benefits {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.country-hero__benefits li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  padding: 7px 0 7px 28px;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.country-hero__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.country-hero__flag {
  font-size: 2.8rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.country-hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.country-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.02rem;
  max-width: 520px;
  line-height: 1.65;
  font-weight: 400;
}

.country-hero .hero__buttons {
  margin-top: 32px;
}

@media (max-width: 900px) {
  .country-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .country-hero__grid .lead-box {
    max-width: 100%;
  }
}

/* ========================================
   COUNTRY CONTENT
   ======================================== */
.country-content h2 {
  position: relative;
  padding-bottom: 14px;
}

.country-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #f0b84a);
  border-radius: 2px;
}

.audience-list,
.included-list,
.excluded-list,
.errors-list {
  margin-bottom: 1.5rem;
}

.audience-list li,
.included-list li,
.excluded-list li,
.errors-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 0.93rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.audience-list li:last-child,
.included-list li:last-child,
.excluded-list li:last-child,
.errors-list li:last-child {
  border-bottom: none;
}

.audience-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.excluded-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

.errors-list li::before {
  content: '!';
  position: absolute;
  left: 4px;
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ========================================
   DISCLAIMER BAR
   ======================================== */
.disclaimer-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
}

.disclaimer-bar p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 4px 0;
}

/* ========================================
   FORM
   ======================================== */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

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

.form__radio-group {
  display: flex;
  gap: 24px;
  margin-top: 6px;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--color-text);
  cursor: pointer;
}

.form__radio-label input[type="radio"] {
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.about-value {
  padding: 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition);
}

.about-value:hover {
  box-shadow: var(--shadow-md);
}

.about-value h3 {
  margin-bottom: 8px;
}

.about-value p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.about-what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-what-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.about-what-card:hover {
  box-shadow: var(--shadow-md);
}

.about-what-card h3 {
  margin-bottom: 16px;
}

.about-what-card.about-what-card--do {
  border-left: 4px solid var(--color-success);
}

.about-what-card.about-what-card--dont {
  border-left: 4px solid #c0392b;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer__bottom p {
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-white);
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.25), 0 0 0 1px rgba(37,211,102,0.15);
  color: var(--color-text);
}

.whatsapp-float__avatar {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.whatsapp-float__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.whatsapp-float__status {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border-radius: 50%;
  border: 2.5px solid var(--color-white);
  animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(37,211,102,0); }
}

.whatsapp-float__info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.whatsapp-float__label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.whatsapp-float__action {
  font-size: 0.72rem;
  color: #25d366;
  font-weight: 600;
}

/* ========================================
   LEAD FORM (VER VALORES)
   ======================================== */
.lead-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
}

.lead-box--center {
  margin: 0 auto;
}

.lead-box--hero {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.lead-box--hero .lead-form__label {
  color: rgba(255,255,255,0.85);
}

.lead-box--hero .lead-box__title {
  color: var(--color-white);
}

.lead-box--hero .lead-box__sub {
  color: rgba(255,255,255,0.6);
}

.lead-box__title {
  font-size: 1.12rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  text-align: center;
  letter-spacing: -0.025em;
}

.lead-box__sub {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 18px;
  font-weight: 400;
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.lead-form__input {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.lead-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.lead-form__input::placeholder {
  color: #b8b8c8;
  font-weight: 400;
}

.lead-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555770' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.lead-box--hero .lead-form__select {
  color: var(--color-text);
}

.lead-form__select option[value=""][disabled] {
  color: #b8b8c8;
}

.lead-form__btn {
  width: 100%;
  padding: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-accent) 0%, #f0b84a 100%);
  color: var(--color-primary-dark);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px var(--color-accent-glow);
}

.lead-form__btn:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.lead-form__note {
  font-size: 0.72rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
  opacity: 0.7;
}

.lead-box--hero .lead-form__note {
  color: rgba(255,255,255,0.4);
}

.lead-form__message {
  display: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
}

.lead-form__message--error {
  background: #fce8e8;
  color: #c0392b;
  display: block;
}

/* Success state */
.lead-form__success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.lead-form__success-icon {
  width: 56px;
  height: 56px;
  background: rgba(46,125,79,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

.lead-form__success h3 {
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.lead-box--hero .lead-form__success h3 {
  color: var(--color-white);
}

.lead-form__success p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.lead-box--hero .lead-form__success p {
  color: rgba(255,255,255,0.75);
}

/* Hero layout with form */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* CTA inline form section */
.cta-form-section {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-form-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-form-section .container {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-form-text h2 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-form-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.cta-form-text ul {
  list-style: none;
}

.cta-form-text ul li {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  padding: 6px 0 6px 24px;
  position: relative;
}

.cta-form-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__grid .lead-box {
    max-width: 100%;
  }
  .cta-form-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-form-section .lead-box {
    max-width: 100%;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }

  .hero h1 { font-size: 1.95rem; }
  .hero { padding: 100px 0 40px; }

  .hero__badge {
    font-size: 0.68rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero__sub {
    margin-bottom: 12px;
    font-size: 0.92rem;
  }

  .hero__grid {
    gap: 24px;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }

  .nav__list--open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    margin-left: 0;
  }

  .section {
    padding: 60px 0;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-values,
  .about-what-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .cta-section .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 12px;
    right: 12px;
    padding: 6px 14px 6px 6px;
    gap: 10px;
  }

  .whatsapp-float__avatar {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float__avatar img {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float__label {
    font-size: 0.78rem;
  }

  .whatsapp-float__action {
    font-size: 0.68rem;
  }

  .lead-box {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .lead-box__title {
    font-size: 1.02rem;
  }

  .lead-form__fields {
    gap: 8px;
  }

  .lead-form__input {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .lead-form__btn {
    padding: 12px;
    font-size: 0.88rem;
  }

  .country-hero h1 {
    font-size: 1.85rem;
  }

  .country-hero {
    padding: 100px 0 50px;
  }

  .dest-card {
    padding: 24px 20px;
  }

  .feature {
    padding: 24px 20px;
  }

  .step {
    padding: 24px 16px;
  }
}
