@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --pink: #D63C87;
  --pink-dark: #B02E6E;
  --pink-light: #FBE8F3;
  --pink-pale: #FEF4FA;
  --white: #FFFFFF;
  --off-white: #F9F9F9;
  --text: #2C2C2C;
  --text-muted: #888;
  --border: #F0D8EC;
  --shadow: 0 4px 24px rgba(214,60,135,0.10);
  --shadow-hover: 0 8px 32px rgba(214,60,135,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}

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

.nav-logo img { height: 52px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--pink-dark) !important; }
.nav-cta::after { display: none !important; }

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

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO HOME ── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
  background: var(--pink-pale);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214,60,135,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,60,135,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-text {
  background: transparent;
  display: flex;
  align-items: center;
  padding: 72px 48px 72px max(24px, calc((100vw - 1200px) / 2 + 24px));
  position: relative;
  overflow: hidden;
}

.hero-text::before { display: none; }

.hero-visual {
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before,
.hero-visual::after { display: none; }

.hero-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  min-height: 88vh;
}

.hero-brand-mark {
  width: 240px; height: 240px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.80;
  animation: floatAnim 5s ease-in-out infinite;
}

.hero-badge-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  animation: floatAnim 5s ease-in-out infinite;
}

.hero-badge-float:nth-child(1) { top: 18%; left: 8%;  animation-delay: -1.2s; }
.hero-badge-float:nth-child(2) { top: 18%; right: 8%; animation-delay: -2.8s; }
.hero-badge-float:nth-child(3) { bottom: 18%; left: 12%; animation-delay: -0.5s; }

.hero-badge-float strong {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--pink);
  line-height: 1;
  display: block;
}

.hero-badge-float span {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  margin-top: 3px;
  white-space: nowrap;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,228,243,0.45) 0%, rgba(214,60,135,0.18) 100%);
  pointer-events: none;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,60,135,0.10);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title span { color: var(--pink); font-style: italic; }

.hero-subtitle {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-outline { background: transparent; border-color: var(--pink); color: var(--pink); }
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}

.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-light));
  padding: 72px 0 60px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(30px, 4vw, 50px); color: var(--text); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: #666; max-width: 520px; margin: 0 auto; }

/* ── SECTIONS ── */
section { padding: 80px 0; }
.bg-light { background: var(--off-white); }
.bg-pink { background: var(--pink-pale); }
.text-center { text-align: center; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 48px; align-items: center; }
.grid-3-center-last { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.grid-3-center-last > .card { flex: 0 0 calc(33.333% - 16px); }

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card-icon {
  width: 56px; height: 56px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--pink);
}

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 14px; color: #666; line-height: 1.8; }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--pink);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 14px; color: #888; }

/* ── PACOTES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.package-card:hover,
.package-card.featured {
  border-color: var(--pink);
  background: var(--pink-pale);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.package-days {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 4px;
}

.package-unit { font-size: 13px; color: #888; margin-bottom: 20px; }

.package-cta {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.package-cta:hover { background: var(--pink-dark); }

/* ── INCLUDES LIST ── */
.includes-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin: 32px 0;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.includes-item::before {
  content: '✦';
  color: var(--pink);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── TEAM ── */
.team-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.team-photo {
  width: 140px; min-width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--pink-light);
  flex-shrink: 0;
}

.team-photo .img-placeholder { min-height: 140px; border-radius: 0; border: none; }

.team-info h3 { font-size: 26px; margin-bottom: 4px; }

.team-credentials {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.team-info p { font-size: 15px; color: #555; line-height: 1.8; }
.team-info p + p { margin-top: 10px; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-pale));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: var(--pink);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  border: 2px dashed var(--border);
  font-family: 'Poppins', sans-serif;
}

.img-placeholder .ph-icon { font-size: 40px; margin-bottom: 10px; opacity: 0.5; }
.img-placeholder p { opacity: 0.6; margin-top: 6px; line-height: 1.5; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item .img-placeholder { min-height: 100%; border-radius: 0; }

/* ── DESTAQUE SUITE ── */
.suite-highlight {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: white;
  text-align: center;
}

.suite-highlight h2 { font-size: 32px; margin-bottom: 12px; color: white; }
.suite-highlight p { font-size: 16px; opacity: 0.9; max-width: 560px; margin: 0 auto 28px; }

/* ── GUIA STEPS ── */
.guide-steps { max-width: 720px; margin: 0 auto; }

.guide-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.guide-step:last-child { border-bottom: none; }

.guide-step-num {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-step h3 { font-size: 18px; margin-bottom: 8px; }
.guide-step p { font-size: 14px; color: #666; line-height: 1.8; }

/* ── QUIZ ── */
.quiz-wrapper { max-width: 680px; margin: 0 auto; }

.quiz-header { margin-bottom: 12px; }

.quiz-counter {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 8px;
}

.quiz-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 40px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text);
  margin-bottom: 6px;
}

.quiz-hint { font-size: 13px; color: #999; margin-bottom: 28px; }

.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.quiz-option { position: relative; cursor: pointer; }
.quiz-option input { position: absolute; opacity: 0; width: 0; height: 0; }

.quiz-option-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  cursor: pointer;
}

.quiz-option-label::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: var(--transition);
}

.quiz-option.checkbox .quiz-option-label::before { border-radius: 5px; }

.quiz-option input:checked + .quiz-option-label {
  border-color: var(--pink);
  background: var(--pink-pale);
  color: var(--pink);
}

.quiz-option input:checked + .quiz-option-label::before {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: inset 0 0 0 3px white;
}

.quiz-option-label:hover {
  border-color: var(--pink);
  background: var(--pink-pale);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; animation: fadeUp 0.4s ease; }

.quiz-result-icon { font-size: 56px; margin-bottom: 16px; }
.quiz-result h2 { font-size: 32px; color: var(--text); margin-bottom: 10px; }
.quiz-result > p { font-size: 16px; color: #666; margin-bottom: 28px; }

.quiz-summary {
  background: var(--pink-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 0 32px;
  text-align: left;
}

.quiz-summary-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: baseline;
}

.quiz-summary-item:last-child { border-bottom: none; }
.quiz-summary-item strong { min-width: 160px; color: var(--pink); font-weight: 600; }

/* ── CONTATO ── */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card .cc-icon { font-size: 44px; margin-bottom: 16px; color: var(--pink); }
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: #666; margin-bottom: 20px; line-height: 1.7; }

/* ── CHEGADA BOX ── */
.chegada-box {
  background: var(--pink-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.chegada-box h3 { font-size: 26px; margin-bottom: 12px; }
.chegada-box p { font-size: 15px; color: #555; line-height: 1.8; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 { font-size: clamp(28px,3.5vw,44px); color: white; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}

.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 32px; height: 32px; fill: white; }

@keyframes waPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.10); }
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { display: block; height: 52px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; }

.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 20px;
}

.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer ul li a:hover { color: white; }

.footer-contact p { font-size: 14px; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: white; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.20);
  padding-top: 24px;
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.70);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav-cta { width: 100% !important; justify-content: center !important; text-align: center; }

  .hero { min-height: auto; padding: 56px 0; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-3-center-last > .card { flex: 0 0 100%; }
  .grid-2 { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .includes-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .team-card { flex-direction: column; align-items: center; text-align: center; padding: 28px; }
  .team-photo { margin: 0 auto; }

  .suite-highlight { padding: 36px 24px; }
}

@media (max-width: 480px) {
  section { padding: 40px 0; }
  .page-hero { padding: 48px 0 36px; }
  .cta-section { padding: 52px 0; }

  .hero-text { padding: 40px 20px; }

  .card { padding: 24px 16px; }
  .package-card { padding: 20px 10px; }
  .package-days { font-size: 40px; }
  .packages-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }

  .timeline-card { padding: 16px !important; }
  .timeline-dot-inner { width: 36px; height: 36px; font-size: 14px; }

  .team-card { padding: 24px 16px; }
  .contact-card { padding: 24px 16px; }
  .chegada-box { padding: 28px 20px; }
  .suite-highlight { padding: 28px 20px; }

  .guide-step { gap: 16px; padding: 20px 0; }

  .section-subtitle { font-size: 15px; margin-bottom: 28px; }

  .quiz-nav { flex-direction: column; }
  .quiz-nav .btn { width: 100%; justify-content: center; }
}

/* ── NAV-CTA COM ÍCONE ── */
.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--pink);
  padding: 22px 0;
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  white-space: nowrap;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
}

.ticker-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
}

.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--pink) 8%, var(--pink) 92%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  grid-auto-flow: dense;
  margin-bottom: 44px;
  position: relative;
  align-items: center;
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  align-self: center;
}

.timeline-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.timeline-card h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-card p  { font-size: 14px; color: #666; line-height: 1.8; margin: 0; }

.timeline-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  position: relative;
  z-index: 1;
}

.timeline-dot-inner {
  width: 44px; height: 44px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 0 6px var(--pink-light), 0 0 0 9px rgba(214,60,135,0.12);
  flex-shrink: 0;
}

.timeline-spacer { align-self: center; }

/* Odd: card(col-1) | dot(col-2) | spacer(col-3) */
.timeline-item:nth-child(odd) .timeline-card   { grid-column: 1; grid-row: 1; padding-right: 40px; }
.timeline-item:nth-child(odd) .timeline-dot    { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; grid-row: 1; }

/* Even: spacer(col-1) | dot(col-2) | card(col-3) */
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-dot    { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-card   { grid-column: 3; grid-row: 1; padding-left: 40px; }

/* ── ANIMAÇÕES DE SCROLL ── */
.animate {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-up    { transform: translateY(30px); }
.animate-left  { transform: translateX(-28px); }
.animate-right { transform: translateX(28px); }

.animate.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ADICIONAL ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding: 56px 24px; }

  .timeline::before { left: 21px; transform: none; }
  .timeline-item { display: flex; gap: 20px; align-items: flex-start; }
  .timeline-dot { order: -1; flex-shrink: 0; }
  .timeline-spacer { display: none; }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card { padding: 24px; grid-column: unset; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: unset; }
}
