/* =============================================
   Me Guia Orlando — style.css
   Landing Page | Disney & Universal | Orlando
   ============================================= */

/* =============================================
   1. RESET
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   2. VARIÁVEIS GLOBAIS
   ============================================= */
:root {
  /* Cores */
  --primary-color: #2C9CC2;
  --primary-dark: #284C8E;
  --primary-light: #2a5298;
  --secondary-color: #F5A623;
  --secondary-dark: #d4891a;
  --accent-color: #E8F4FD;
  --text-color: #1C1C2E;
  --text-light: #5a5a7a;
  --text-muted: #8888a0;
  --background-color: #FFFFFF;
  --background-alt: #F7F9FC;
  --whatsapp-color: #B0D292;
  --whatsapp-dark: #1da851;
  --error-color: #e53e3e;
  --success-color: #38a169;

  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 1.5rem;

  /* Espaçamento */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;

  /* Bordas */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(26, 58, 107, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 58, 107, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 58, 107, 0.16);
  --shadow-xl: 0 16px 60px rgba(26, 58, 107, 0.20);

  /* Transições */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header */
  --header-height: 72px;
}

/* =============================================
   3. TIPOGRAFIA
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

p:last-child { margin-bottom: 0; }

strong {
  font-weight: 700;
  color: var(--text-color);
}

/* Destaques */
.highlight {
  color: var(--secondary-color);
  position: relative;
}

.highlight--gold { color: var(--secondary-color); }
.highlight--primary { color: var(--primary-color); }

/* =============================================
   4. LAYOUT GERAL
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

#beneficios {
  position: relative;
  background-image: url("disney1");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* mascara */

#beneficios::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

/* conteúdo acima da máscara */

#beneficios *{
  position:relative;
  z-index:2;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section__tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section__tag--light {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

#beneficios .section__title{
    color: #ffffff;
}

.section__title {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section__title--light {
  color: #ffffff;
}

.section__subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.8);
}

.text-center { text-align: center; }

/* =============================================
   5. COMPONENTES
   ============================================= */

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

.btn--xl {
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

.btn--whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn--whatsapp:active {
  transform: translateY(0);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn--outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* --- Cards genéricos --- */
.card {
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   6. HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  height: 120px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
@media (max-width: 768px) {
  .header__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.logo__icon {
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.logo__text strong {
  color: var(--secondary-color);
}

/* Nav Desktop */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--secondary-color);
}

.nav__link:hover::after {
  width: 100%;
}

/* Hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Mobile */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-mobile__link {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-mobile__link:hover {
  color: var(--secondary-color);
}

/* =============================================
   7. HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
 /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, #1e4d8c 100%);*/
    background-image: url("disney");
    background-size: cover;
    background-position: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* Padrão de fundo decorativo */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.30);
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 35, 71, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

 .hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem var(--container-padding) 2rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
} 

.hero__badge {
  display: inline-block;
  background-color: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: #ffffff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  margin-bottom: 3.5rem;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.stat__unit {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary-color);
}

.stat__label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  max-width: 120px;
}

.stat__divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
  z-index: 10;
  pointer-events: none;
}

.hero__scroll i {
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   8. DOR DO PÚBLICO
   ============================================= */
.pain__content {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pain__text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pain__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain__card {
  background: var(--background-color);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--primary-color);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pain__card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.pain__card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* =============================================
   9. SOLUÇÃO
   ============================================= */
.solution {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution__text .section__title {
  margin-bottom: 1.5rem;
}

.solution__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.solution__desc strong {
  color: #ffffff;
}

.solution__features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 1.4rem;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(245, 166, 35, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.feature-card__body h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-card__body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   10. BENEFÍCIOS
   ============================================= */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--background-color);
  border-radius: var(--border-radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.benefit-item__check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
}

.benefit-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 0.3rem;
}

.benefits__cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.benefits__quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
}

/* =============================================
   11. DIFERENCIAL
   ============================================= */
.differential {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a6b 100%);
  position: relative;
}

.differential__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.differential__intro strong {
  color: #ffffff;
}

.differential__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.diff-card {
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
}

.diff-card--no {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-card--yes {
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.diff-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.diff-card--no .diff-card__icon {
  background: rgba(229, 62, 62, 0.2);
  color: #fc8181;
}

.diff-card--yes .diff-card__icon {
  background: rgba(245, 166, 35, 0.25);
  color: var(--secondary-color);
}

.diff-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.diff-card--yes p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.differential__closing {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 1rem;
}

/* =============================================
   12. PARA QUEM É
   ============================================= */
.for-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.for-who__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.for-who__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
}

.for-who__list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Objeção */
.objection-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.objection-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
}

.objection-card__title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.objection-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.objection-card__question {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.05rem;
  font-weight: 600;
  border-left: 3px solid var(--secondary-color);
  padding-left: 1rem;
  margin: 1.5rem 0 !important;
}

.objection-card__costs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.cost-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.cost-item i {
  color: var(--secondary-color);
}

.objection-card__emphasis {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary-color) !important;
  text-align: center;
  margin-top: 1rem !important;
}

/* =============================================
   13. COMO FUNCIONA (TIMELINE)
   ============================================= */
.how-it-works {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Linha central */
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary-color), rgba(245, 166, 35, 0.2));
}

.timeline__item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__number {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.timeline__item:hover .timeline__number {
  transform: scale(1.1);
}

.timeline__content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  flex: 1;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}

.timeline__content:hover {
  background: rgba(255, 255, 255, 0.13);
}

.timeline__content h3 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.timeline__content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   14. TABELA DE FILAS
   ============================================= */
.queue-table__wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.queue-table__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background-color);
  font-size: 0.95rem;
}

.queue-table__table thead {
  background: var(--primary-color);
  color: #ffffff;
}

.queue-table__table thead th {
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.queue-table__table tbody tr {
  border-bottom: 1px solid rgba(26, 58, 107, 0.08);
  transition: background var(--transition);
}

.queue-table__table tbody tr:last-child {
  border-bottom: none;
}

.queue-table__table tbody tr:hover {
  background: var(--accent-color);
}

.queue-table__table tbody td {
  padding: 1rem 1.5rem;
  color: var(--text-light);
}

.queue-table__table tbody td:first-child {
  color: var(--text-color);
  font-weight: 500;
}

.queue-table__table tbody td strong {
  color: var(--primary-color);
}

/* Barra de visualização */
.queue-bar {
  height: 8px;
  background: var(--accent-color);
  border-radius: 100px;
  overflow: hidden;
  min-width: 120px;
}

.queue-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--bar-width, 0%);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 100px;
  transition: width 1s ease;
}

.queue-table__source {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* =============================================
   15. PACOTES
   ============================================= */
.packages {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Toggle */
.packages__toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.toggle-btn--active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-dark);
}

.toggle-btn--active:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--primary-dark);
}

/* Grid de pacotes */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.packages__grid--hidden {
  display: none;
}

/* Card de pacote */
.package-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(4px);
}

.package-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-xl);
}

.package-card--featured {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--secondary-color);
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(245, 166, 35, 0.25);
}

.package-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.package-card--special {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.4);
}

.package-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.package-card__badge--gold {
  background: var(--secondary-color);
  color: var(--primary-dark);
}

.package-card__badge--special {
  background: linear-gradient(90deg, var(--secondary-color), #e8941a);
  color: var(--primary-dark);
}

.package-card__header {
  margin-bottom: 1.2rem;
  padding-top: 0.5rem;
}

.package-card__days {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.package-card__park {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.package-card__price {
  margin-bottom: 0.5rem;
}

.package-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.package-card__per {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.package-card__total {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
}

.package-card__bonus {
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: var(--border-radius-sm);
  padding: 0.8rem;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.package-card__features {
  text-align: left;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.package-card__features li i {
  color: var(--secondary-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Nota dos pacotes */
.packages__note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
}

.packages__note p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.packages__note p:last-child {
  margin-bottom: 0;
}

.packages__note p i {
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* =============================================
   16. UNIVERSAL
   ============================================= */
   
   .universal {
  position: relative;
  background-image: url("universal");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* mascara */

.universal::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* conteúdo acima da máscara */

.universal *{
  position:relative;
  z-index:2;
}
   
/*.universal {
  background: linear-gradient(135deg, #0d1b3e 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.universal::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}*/

.universal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.universal__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.universal__desc strong {
  color: #ffffff;
}

.universal__parks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.park-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.4rem;
  transition: background var(--transition), transform var(--transition);
}

.park-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.park-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(245, 166, 35, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.park-card h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.park-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin: 0;
}

/* =============================================
   17. AUTORIDADE
   ============================================= */
.authority__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.authority__text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.authority__values {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.value-item i {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: transform var(--transition), background var(--transition);
}

.value-item:hover i {
  transform: scale(1.1);
  background: var(--primary-color);
  color: #ffffff;
}

.value-item span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
}

/* =============================================
   18. CTA FINAL
   ============================================= */

.cta-final {
  position: relative;
  background-image: url("disney2");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* mascara */

.cta-final::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* conteúdo acima da máscara */

.cta-final *{
  position:relative;
  z-index:2;
}


/*.cta-final {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}*/

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-final__title {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.cta-final__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-final__note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   19. FOOTER
   ============================================= */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 3rem;
  padding: 3.5rem var(--container-padding);
}

.footer__brand .header__logo {
  margin-bottom: 0.8rem;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer__contact h4,
.footer__social h4 {
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__contact a,
.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}

.footer__contact a:hover,
.footer__social a:hover {
  color: var(--secondary-color);
}

.footer__contact a i,
.footer__social a i {
  color: var(--secondary-color);
  font-size: 1rem;
  width: 18px;
}

.footer__vip {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer__vip i {
  color: var(--secondary-color);
  margin-right: 0.3rem;
}

.footer__vip a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem var(--container-padding);
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin: 0;
}

/* =============================================
   20. WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--primary-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* Pulso animado */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-color);
  animation: pulse-ring 2s infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================
   21. ANIMAÇÕES
   ============================================= */

/* Reveal ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para grupos */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* Animação de entrada dos números */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   22. RESPONSIVIDADE
   ============================================= */

/* 1200px */
@media (max-width: 1200px) {
  :root {
    --max-width: 960px;
  }
}

/* 992px */
@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .solution__grid,
  .for-who__grid,
  .universal__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .packages__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .package-card--featured {
    transform: none;
  }

  .package-card--featured:hover {
    transform: translateY(-6px);
  }
}

/* 768px */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 0;
    --header-height: 64px;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 2rem;
  }

  .stat__divider {
    display: none;
  }

  .hero__stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.1rem;
  }

  .timeline__item {
    gap: 1.2rem;
  }

  .pain__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .differential__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority__values {
    gap: 1.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem var(--container-padding);
  }

  .footer__brand {
    grid-column: auto;
  }

  .queue-table__table thead th:last-child,
  .queue-table__table tbody td:last-child {
    display: none;
  }

  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 576px */
@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
    --container-padding: 1.2rem;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
  }

  .hero__content {
    padding: 3rem var(--container-padding) 1.5rem;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .btn--xl {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
  }

  .pain__cards {
    grid-template-columns: 1fr;
  }

  .differential__grid {
    grid-template-columns: 1fr;
  }

  .packages__grid {
    grid-template-columns: 1fr;
  }

  .objection-card {
    padding: 1.8rem;
  }

  .objection-card__costs {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }

  .stat__divider { display: none; }

  .hero__scroll {
    display: none;
  }

  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .whatsapp-float__tooltip {
    display: none;
  }

  .timeline__content {
    padding: 1.2rem;
  }

  .for-who__grid {
    grid-template-columns: 1fr;
  }

  .packages__toggle {
    flex-direction: column;
    align-items: center;
  }
}
