/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #C25A1E;   /* laranja queimado principal */
  --brand-dark:  #9B3F0D;
  --brand-light: #F4845A;
  --brown:       #5C2E00;
  --bg:          #F8F5F0;
  --white:       #FFFFFF;
  --gray-50:     #F9F9F7;
  --gray-100:    #EFEFEC;
  --gray-200:    #DCDAD5;
  --gray-500:    #9A9590;
  --gray-700:    #4A4540;
  --gray-900:    #1C1815;
  --whatsapp:    #25D366;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow:      0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.18);
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--gray-900);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  object-fit: cover;
}

.logo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Nav */
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover {
  background: var(--gray-100);
  color: var(--brand);
}

/* Header actions */
.header-actions { display: flex; gap: 10px; align-items: center; }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  transition: opacity var(--transition);
}

.btn-whatsapp-header:hover { opacity: 0.88; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 12, 4, 0.78) 0%,
    rgba(90, 35, 5, 0.60) 50%,
    rgba(20, 10, 2, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Chat preview box */
.hero-chat-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: left;
}

.hero-chat-box:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,.28);
  transform: translateY(-2px);
}

.hero-chat-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--brand);
}

.hero-chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero-chat-bubble {
  flex: 1;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.hero-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-chat-send:hover { background: var(--brand-dark); transform: scale(1.08); }
.hero-chat-send svg { width: 16px; height: 16px; }

/* Hero Chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.40);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.3px;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
}

.chip:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gray-900);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
  margin-top: 10px;
}

/* ════════════════════════════════════════════
   PARTNERS CAROUSEL
════════════════════════════════════════════ */
.partners-section {
  padding: 72px 0;
  background: var(--white);
}

.partners-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.partners-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.partners-carousel::-webkit-scrollbar { display: none; }

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-700);
  transition: background var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.carousel-arrow svg { width: 16px; height: 16px; }

/* Partner card */
.partner-card {
  min-width: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
}

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

.partner-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.partner-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-card-info {
  padding: 10px 12px;
}

.partner-card-cat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-section {
  padding: 72px 0;
  background: var(--gray-50);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.how-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.how-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.how-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.how-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.6;
}

.btn-cta {
  background: var(--white);
  color: var(--brand);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}

.btn-cta:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  object-fit: cover;
}

.footer-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand);
}

.footer-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ════════════════════════════════════════════
   FLOATING CHAT WIDGET
════════════════════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
}

@keyframes triggerPulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 90, 30, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(194, 90, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 90, 30, 0); }
}

.chat-trigger {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(194, 90, 30, 0.4);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0;
  animation: triggerPulse 2.5s infinite;
}

.chat-trigger:hover {
  background: var(--brand-dark);
  transform: scale(1.08) translateY(-2px);
}

.chat-trigger svg { width: 26px; height: 26px; }

.trigger-open, .trigger-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.trigger-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trigger-close { display: none; }
.chat-widget.active .trigger-open { display: none; }
.chat-widget.active .trigger-close { display: flex; }

.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  animation: badgeBounce 1.5s infinite alternate;
}

@keyframes badgeBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

/* Chat window */
.chat-window {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 385px;
  height: calc(100vh - 180px);
  max-height: 580px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transform-origin: bottom right;
  animation: chatPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes chatPop {
  0% { transform: scale(0.7) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.chat-widget.active .chat-window { display: flex; }

/* Chat header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #075e54;
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  z-index: 10;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  object-fit: cover;
}

.chat-header h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: -0.2px;
}

.chat-status {
  font-size: 0.72rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}

.chat-header-right {
  display: flex;
  gap: 6px;
}

.chat-header-right button {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chat-header-right button:hover { background: rgba(255,255,255,0.28); transform: scale(1.05); }
.chat-header-right button svg { width: 15px; height: 15px; }

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  background: #efeae2;
}

.msg { display: flex; flex-direction: column; max-width: 85%; }
.msg-in { align-self: flex-start; }
.msg-out { align-self: flex-end; }

.msg-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.msg-in .msg-bubble {
  background: #ffffff;
  color: var(--gray-900);
  border-top-left-radius: 4px;
}

.msg-out .msg-bubble {
  background: #dcf8c6;
  color: var(--gray-900);
  border-top-right-radius: 4px;
}

.msg-time {
  font-size: 0.68rem;
  color: var(--gray-500);
  margin-top: 4px;
  padding: 0 4px;
}

.msg-out .msg-time { align-self: flex-end; }

/* Ad card in chat */
.chat-ad-container { margin: 4px 0; }

.sponsor-ad-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.sponsor-card-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sponsor-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sponsor-card-badge.gold { background: #b8860b; }
.sponsor-card-badge.silver { background: #6b7280; }
.sponsor-card-badge.bronze { background: #cd7f32; }

.sponsor-card-content { padding: 10px 12px; }

.sponsor-card-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.sponsor-card-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.sponsor-coupon-area {
  background: var(--gray-50);
  border: 1px dashed var(--brand);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sponsor-coupon-label { font-size: 0.65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.sponsor-coupon-code { font-family: monospace; font-size: 1rem; font-weight: 800; color: var(--brand); letter-spacing: 2px; }
.sponsor-coupon-offer { font-size: 0.72rem; color: var(--gray-700); }

/* Gold, Silver & Bronze Premium Cards */
.sponsor-ad-card.gold-premium,
.sponsor-ad-card.silver-premium,
.sponsor-ad-card.bronze-premium {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(194, 90, 30, 0.12);
  box-shadow: 0 8px 24px rgba(194, 90, 30, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 8px;
}

.sponsor-ad-card.silver-premium {
  border-color: rgba(156, 163, 175, 0.25);
  box-shadow: 0 8px 24px rgba(107, 114, 128, 0.06);
}

.sponsor-ad-card.bronze-premium {
  border-color: rgba(205, 127, 50, 0.2);
  box-shadow: 0 8px 24px rgba(205, 127, 50, 0.05);
}

.sponsor-ad-card.gold-premium:hover,
.sponsor-ad-card.silver-premium:hover,
.sponsor-ad-card.bronze-premium:hover {
  transform: translateY(-2px);
}

.sponsor-ad-card.gold-premium:hover {
  box-shadow: 0 12px 30px rgba(194, 90, 30, 0.12);
}

.sponsor-ad-card.silver-premium:hover {
  box-shadow: 0 12px 30px rgba(107, 114, 128, 0.12);
}

.sponsor-ad-card.bronze-premium:hover {
  box-shadow: 0 12px 30px rgba(205, 127, 50, 0.1);
}

.sponsor-ad-card.gold-premium .sponsor-card-img,
.sponsor-ad-card.silver-premium .sponsor-card-img,
.sponsor-ad-card.bronze-premium .sponsor-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.sponsor-ad-card.gold-premium .sponsor-card-badge.gold,
.sponsor-ad-card.silver-premium .sponsor-card-badge.silver,
.sponsor-ad-card.bronze-premium .sponsor-card-badge.bronze {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.sponsor-ad-card.gold-premium .sponsor-card-badge.gold { background: var(--brand); }
.sponsor-ad-card.silver-premium .sponsor-card-badge.silver { background: #6b7280; }
.sponsor-ad-card.bronze-premium .sponsor-card-badge.bronze { background: #cd7f32; }

.sponsor-ad-card.gold-premium .sponsor-card-content,
.sponsor-ad-card.silver-premium .sponsor-card-content,
.sponsor-ad-card.bronze-premium .sponsor-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sponsor-ad-card.gold-premium .sponsor-card-title,
.sponsor-ad-card.silver-premium .sponsor-card-title,
.sponsor-ad-card.bronze-premium .sponsor-card-title {
  font-family: var(--font-head);
  font-weight: 750;
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.sponsor-ad-card.gold-premium .sponsor-card-desc,
.sponsor-ad-card.silver-premium .sponsor-card-desc,
.sponsor-ad-card.bronze-premium .sponsor-card-desc {
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}

.sponsor-ad-card.gold-premium .sponsor-coupon-area,
.sponsor-ad-card.silver-premium .sponsor-coupon-area,
.sponsor-ad-card.bronze-premium .sponsor-coupon-area {
  background: #FDF8F5;
  border: 1.5px dashed var(--brand);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 4px;
}

.sponsor-ad-card.gold-premium .sponsor-coupon-label,
.sponsor-ad-card.silver-premium .sponsor-coupon-label,
.sponsor-ad-card.bronze-premium .sponsor-coupon-label {
  font-size: 0.6rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sponsor-ad-card.gold-premium .sponsor-coupon-code,
.sponsor-ad-card.silver-premium .sponsor-coupon-code,
.sponsor-ad-card.bronze-premium .sponsor-coupon-code {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 1.5px;
  margin: 2px 0;
}

.sponsor-ad-card.gold-premium .sponsor-coupon-offer,
.sponsor-ad-card.silver-premium .sponsor-coupon-offer,
.sponsor-ad-card.bronze-premium .sponsor-coupon-offer {
  font-size: 0.72rem;
  color: var(--gray-700);
  line-height: 1.3;
}

.sponsor-ad-card.gold-premium .sponsor-links-row,
.sponsor-ad-card.silver-premium .sponsor-links-row,
.sponsor-ad-card.bronze-premium .sponsor-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  border-top: 1px solid var(--gray-100);
  padding-top: 10px;
}

.sponsor-ad-card.gold-premium .sponsor-link-btn,
.sponsor-ad-card.silver-premium .sponsor-link-btn,
.sponsor-ad-card.bronze-premium .sponsor-link-btn {
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}

.sponsor-ad-card.gold-premium .sponsor-link-btn.font-contact,
.sponsor-ad-card.silver-premium .sponsor-link-btn.font-contact,
.sponsor-ad-card.bronze-premium .sponsor-link-btn.font-contact {
  color: var(--gray-700);
  font-weight: 500;
  cursor: default;
}

.sponsor-ad-card.gold-premium .sponsor-link-btn:not(.font-contact):hover,
.sponsor-ad-card.silver-premium .sponsor-link-btn:not(.font-contact):hover,
.sponsor-ad-card.bronze-premium .sponsor-link-btn:not(.font-contact):hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* ── Sponsor Text Cards: Silver e Bronze ─────────── */
.sponsor-text-card {
  border-radius: 10px;
  overflow: hidden;
}

/* Layout base do chip de texto */
.sponsor-text-card.silver-text,
.sponsor-text-card.bronze-text {
  display: flex;
  align-items: stretch;
  border: 1px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 4px;
}

/* Badge lateral colorido */
.sponsor-text-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  min-width: 28px;
  color: #fff;
  background: linear-gradient(160deg, #9ca3af, #6b7280);
}
.sponsor-text-badge.bronze {
  background: linear-gradient(160deg, #cd9b5a, #a0632a);
}

/* Corpo do card de texto */
.sponsor-text-body {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Silver: borda e fundo */
.silver-text {
  border-color: rgba(156, 163, 175, 0.35);
  background: rgba(156, 163, 175, 0.06);
}

/* Bronze: borda e fundo */
.bronze-text {
  border-color: rgba(205, 127, 50, 0.3);
  background: rgba(205, 127, 50, 0.05);
}

/* Nome do estabelecimento */
.sponsor-text-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary, #1f2937);
}

/* Links de contato e instagram (Silver) */
.sponsor-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.sponsor-text-contact {
  font-size: 0.75rem;
  color: var(--gray-600, #4b5563);
  font-weight: 500;
}
.sponsor-text-link {
  font-size: 0.75rem;
  color: var(--brand, #c25a1e);
  font-weight: 600;
  text-decoration: none;
}
.sponsor-text-link:hover {
  text-decoration: underline;
}

/* Chat chips */
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid var(--gray-100);
}

.chip-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

/* Área de Input de Mensagem Flutuante Refinada e Super Visível */
.chat-input-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #ffffff;
  border-top: 1px solid #eef0f3;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

.chat-input-area input {
  flex: 1;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 11px 18px;
  font-size: 16px; /* EXTREMAMENTE IMPORTANTE: Impede o zoom automático irritante do iOS */
  font-family: var(--font-body);
  color: var(--gray-900);
  background: #f8fafc;
  outline: none;
  transition: all 0.25s ease;
}

.chat-input-area input:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px rgba(194, 90, 30, 0.12);
}

.chat-input-area button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(194, 90, 30, 0.3);
}

.chat-input-area button:hover {
  background: var(--brand-dark);
  transform: scale(1.05);
}

.chat-input-area button:active {
  transform: scale(0.95);
}

.chat-input-area button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.chat-input-area button svg {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.92rem; }

  .hero-chat-box { flex-wrap: wrap; }

  .chat-window {
    width: calc(100vw - 48px);
    height: calc(100vh - 120px);
    max-height: none;
    right: 0;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .btn-cta { width: 100%; text-align: center; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-title { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-chips { gap: 7px; }
  .chip { font-size: 0.72rem; padding: 8px 14px; }
  .partner-card { min-width: 145px; }
  .partner-card-img { height: 115px; }
}

#btnHeaderWhatsapp,
#whatsappFab { display: none; }

/* ════════════════════════════════════════════
   INDICADOR DE DIGITAÇÃO PREMIUM
   (Bolinhas Pulsantes Sem Texto)
════════════════════════════════════════════ */
.typing-indicator {
  display: none;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  align-self: flex-start;
  max-width: 80px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  margin: 4px 16px 12px 16px;
}

.typing-indicator.active {
  display: flex;
  animation: typingFadeIn 0.25s ease;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #94a3b8;
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.3s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-7px); }
}

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

