/* ==========================================================
   AIR FRYER PRO - LAYOUT: BARRA DE URGÊNCIA, HEADER, HERO, STATS & FOOTER
   ========================================================== */

/* ===== 1. Barra de Urgência Fixa (Top Bar) ===== */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-creme);
  color: var(--txt-dark);
  border-bottom: 1px solid rgba(42, 48, 14, 0.14);
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(25, 28, 14, 0.08);
}

.urgency-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-clock {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--alerta-red);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 73, 66, 0.45);
}

.urgency-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--txt-dark);
}

.urgency-text .u-label {
  color: var(--ambar);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgency-timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--oliva-deep);
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}

.urgency-spots {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--txt-muted);
}

.urgency-spots strong {
  color: var(--alerta-red);
  font-weight: 800;
}

/* ===== 2. Header de Navegação ===== */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--oliva-deep);
  border-bottom: 1px solid var(--oliva-border);
  padding: 16px 0;
  transition: var(--trans-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.brand-badge {
  background: linear-gradient(135deg, #FFD34E, var(--ambar));
  color: var(--oliva-deep);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 1px;
}

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

.nav-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-light-sub);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--ambar);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-header {
  font-size: 13px;
  padding: 12px 24px;
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 150;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: var(--trans-fast);
}

.mobile-nav {
  display: none;
}

/* ===== 3. Hero Section (Primeira Dobra) ===== */
.hero {
  background: 
    radial-gradient(1000px 600px at 80% -10%, rgba(103, 110, 75, 0.45), transparent 70%),
    radial-gradient(800px 500px at -10% 110%, rgba(42, 48, 14, 0.95), transparent 60%),
    var(--oliva-deep);
  color: var(--txt-light);
  position: relative;
  overflow: hidden;
  padding: 70px 0 65px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 253, 232, 0.08) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 253, 232, 0.12);
  border: 1px solid rgba(255, 253, 232, 0.22);
  color: var(--txt-light);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.hero-stars {
  color: #FFC83D;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--txt-light-sub);
  max-width: 580px;
  margin-bottom: 30px;
}

.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
}

.check-pill {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cta-green);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.hero-actions .btn {
  width: 100%;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-size: 13px;
  color: var(--txt-light-sub);
  font-family: var(--font-head);
  font-weight: 500;
}

/* Palco Visual do Hero (Composição 3D) */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage-lighting {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.hero-visual-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  animation: heroFloat 5.5s ease-in-out infinite;
}

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

.hero-main-book {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 26px 45px rgba(0, 0, 0, 0.65));
}

.hero-float-dish {
  position: absolute;
  bottom: -22px;
  right: -24px;
  width: 52%;
  height: auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.6));
  animation: dishFloat 4.8s ease-in-out infinite 0.6s;
}

@keyframes dishFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.hero-tag-overlay {
  position: absolute;
  top: 18px;
  left: -14px;
  background: var(--ambar);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== 4. Faixa de Métricas de Autoridade ===== */
.stats-strip {
  background: var(--bg-creme-soft);
  padding: 36px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: var(--oliva-dark);
}

.stat-number span {
  color: var(--ambar);
}

.stat-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-muted);
}

/* ===== 5. Notificação de Prova Social Flutuante ===== */
.sp-toast {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 16px 36px -10px rgba(25, 28, 14, 0.35);
  border: 1px solid rgba(67, 179, 77, 0.25);
  max-width: 290px;
  transform: translateX(-140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1), opacity 0.5s;
  pointer-events: none;
}

.sp-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.sp-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(67, 179, 77, 0.15);
  color: var(--cta-green);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sp-content {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.sp-buyer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--oliva-dark);
}

.sp-buyer-action {
  font-size: 12px;
  color: var(--txt-muted);
}

.sp-live-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--cta-green);
}

.sp-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta-green);
  animation: spDotBlink 1.4s infinite ease-in-out;
}

@keyframes spDotBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

/* ===== 6. Barra Fixa Mobile de Compra Rápida ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 250;
  background: var(--bg-creme);
  border-top: 1px solid rgba(42, 48, 14, 0.16);
  padding: 10px 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-sticky-price small {
  font-size: 11px;
  font-family: var(--font-head);
  color: var(--txt-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-sticky-price strong {
  font-size: 22px;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--cta-green);
}

.mobile-sticky-btn {
  padding: 12px 22px;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* ===== 7. Rodapé Oficial ===== */
.site-footer {
  background: var(--oliva-deep);
  color: var(--txt-light);
  padding: 60px 0 35px;
  border-top: none;
}

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

.footer-brand h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin: 14px 0 10px;
}

.footer-brand p {
  color: var(--txt-light-sub);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--txt-light-sub);
}

.footer-col a:hover {
  color: var(--ambar);
  text-decoration: underline;
}

.footer-badges-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: var(--txt-light-sub);
  font-family: var(--font-head);
}

.footer-badges-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-payments-wrap {
  border-top: 1px solid var(--oliva-border);
  padding-top: 30px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-payment-icons img {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 253, 232, 0.08);
  margin-top: 30px;
  padding-top: 25px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 253, 232, 0.65);
  line-height: 1.7;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 11.5px;
  color: rgba(255, 253, 232, 0.45);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
