/*
Theme Name: Promos da Naya
Theme URI: https://promosdanaya.com
Author: Promos da Naya
Author URI: https://promosdanaya.com
Description: Tema mobile-first neo-minimalista de alta conversão para Promos da Naya
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: promosdanaya
Tags: mobile-first, landing-page, minimal, one-page
*/

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

:root {
  --color-primary:   #FF5733;
  --color-primary-hover: #e84520;
  --color-black:     #111111;
  --color-white:     #FFFFFF;
  --color-pink-bg:   #FCE0DE;
  --color-pink-light:#FDEEED;
  --color-gray-light:#F7F7F7;
  --color-gray-mid:  #6B6B6B;
  --color-border:    #EBEBEB;
  --font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-btn: 50px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-btn:  0 6px 20px rgba(255,87,51,0.35);
  --max-width: 480px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; }
.h2 { font-size: clamp(1.35rem, 5vw, 1.65rem); font-weight: 700; line-height: 1.2; }
.h3 { font-size: 1rem;   font-weight: 700; line-height: 1.3; }
.body-lg  { font-size: 1rem;    line-height: 1.65; }
.body-sm  { font-size: 0.85rem; line-height: 1.5; }
.micro    { font-size: 0.75rem; line-height: 1.4; color: var(--color-gray-mid); }

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.page-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-white);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0,0,0,0.06);
}

.section-inner {
  padding: 0 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  padding: 18px 24px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  line-height: 1.3;
}
.btn-cta:hover, .btn-cta:focus {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,87,51,0.4);
  color: var(--color-white);
}
.btn-cta:active { transform: translateY(0); }

/* ============================================================
   SECTION: HERO — fullscreen above-the-fold
   ============================================================ */
.hero {
  background: var(--color-white);
  padding-top: 0;
}

/* ---- Fullscreen variant ---- */
.hero--fullscreen {
  position: relative;
  min-height: 100svh;   /* ocupa toda a viewport */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Fundo: imagem + overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.52) 0%,
    rgba(10,10,10,0.62) 55%,
    rgba(10,10,10,0.78) 100%
  );
}

/* Top bar */
.hero__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--color-border);
}
.hero__topbar--dark {
  border-bottom-color: rgba(255,255,255,0.15);
}
.hero__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -0.3px;
}
.hero__logo--white { color: var(--color-white); }

.hero__badge {
  background: var(--color-pink-bg);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__badge--white {
  background: rgba(255,255,255,0.18);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

/* Conteúdo principal */
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px 20px;
  text-align: center;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF0EE;
  border: 1px solid #FFD5CF;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  align-self: center;
}
.hero__eyebrow--light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.hero__eyebrow span { font-size: 0.85rem; }

/* Título */
.hero__title {
  margin-bottom: 12px;
  color: var(--color-black);
}
.hero__title em {
  font-style: normal;
  color: var(--color-primary);
}
.hero__title--white { color: var(--color-white); }
.hero__title--white em { color: #FF9980; }

/* Subtítulo */
.hero__subtitle {
  color: #444;
  margin-bottom: 22px;
}
.hero__subtitle--light {
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
}
.hero__subtitle--light strong { color: #FFD5CF; }

/* CTA wrap */
.hero__cta-wrap { margin-bottom: 14px; }

/* Micro-copy */
.hero__micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-gray-mid);
  font-size: 0.78rem;
}
.hero__micro--light { color: rgba(255,255,255,0.75); }
.hero__micro svg { flex-shrink: 0; }

/* Faixa de prova social na base do hero */
.hero__proof-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 14px 20px;
}

/* Avatars */
.hero__avatars { display: flex; }
.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  background: var(--color-pink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  overflow: hidden;
}
.hero__avatar:first-child { margin-left: 0; }

/* Texto de prova social */
.hero__proof-text { font-size: 0.78rem; color: var(--color-black); font-weight: 500; }
.hero__proof-text strong { color: var(--color-primary); }
.hero__proof-text--light { color: var(--color-white); }
.hero__proof-text--light strong { color: #86EFAC; }

/* Social proof block (fora do hero fullscreen) */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gray-light);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 24px;
}

/* Stars */
.stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 1px; }

/* ============================================================
   BOTÃO VERDE (WhatsApp / CTA principal)
   ============================================================ */
.btn-cta--green {
  background: #22C55E;
  box-shadow: 0 6px 20px rgba(34,197,94,0.45);
}
.btn-cta--green:hover,
.btn-cta--green:focus {
  background: #16A34A;
  box-shadow: 0 10px 28px rgba(34,197,94,0.55);
  color: var(--color-white);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 20px rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(34,197,94,0.75); }
}
.btn-cta--green.btn-cta--pulse {
  animation: pulse-green 2s ease-in-out infinite;
}

/* ============================================================
   SECTION: BENEFITS
   ============================================================ */
.benefits {
  background: var(--color-white);
  padding: 48px 20px;
  border-top: 1px solid var(--color-border);
}
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header__tag {
  display: inline-block;
  background: #FFF0EE;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.section-header__title {
  color: var(--color-black);
}
.section-header__sub {
  color: var(--color-gray-mid);
  margin-top: 8px;
  font-size: 0.9rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  border-color: #FFD5CF;
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.6rem;
}
.benefit-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-black);
}
.benefit-card__text {
  font-size: 0.75rem;
  color: var(--color-gray-mid);
  line-height: 1.5;
}

/* Icon bg colors */
.icon-bg-orange { background: #FFF0EE; }
.icon-bg-green  { background: #EDFAF3; }
.icon-bg-red    { background: #FFEAEA; }
.icon-bg-blue   { background: #EEF4FF; }

/* ============================================================
   SECTION: SOCIAL PROOF
   ============================================================ */
.social-proof {
  background: var(--color-pink-bg);
  padding: 48px 20px;
}
.social-proof .section-header__title { color: var(--color-black); }

.sp-counter {
  text-align: center;
  margin-bottom: 28px;
}
.sp-counter__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.sp-counter__label {
  font-size: 0.85rem;
  color: var(--color-gray-mid);
  margin-top: 4px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.testimonial-card__quote {
  font-size: 2rem;
  color: #FFD5CF;
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testimonial-card__text {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-pink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-black);
}
.testimonial-card__role {
  font-size: 0.72rem;
  color: var(--color-gray-mid);
}

.sp-fomo {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background: #FFF5F4;
  border-radius: 14px;
  border: 1px dashed #FFD5CF;
}
.sp-fomo__text {
  font-size: 0.85rem;
  color: var(--color-black);
  font-weight: 500;
}
.sp-fomo__text strong { color: var(--color-primary); }

/* ============================================================
   SECTION: SCARCITY / CTA FINAL
   ============================================================ */
.scarcity {
  background: var(--color-white);
  padding: 48px 20px 56px;
  border-top: 1px solid var(--color-border);
}

.scarcity-box {
  background: var(--color-white);
  border: 1.5px solid #FFD5CF;
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(255,87,51,0.08);
}

.scarcity-box__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.scarcity-box__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF0EE;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scarcity-box__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 12px;
  line-height: 1.25;
}
.scarcity-box__title em {
  font-style: normal;
  color: var(--color-primary);
}

.scarcity-box__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 24px;
}

.scarcity-box__vacancies {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}
.vacancy-bar {
  flex: 1;
  height: 8px;
  background: #F0F0F0;
  border-radius: 50px;
  overflow: hidden;
}
.vacancy-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #FF8C6B);
  border-radius: 50px;
  width: 78%;
  animation: fillBar 1.5s ease-out forwards;
}
@keyframes fillBar {
  from { width: 0%; }
  to   { width: 78%; }
}
.vacancy-label {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

.scarcity-box__benefits {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}
.scarcity-box__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #F5F5F5;
}
.scarcity-box__benefits li:last-child { border-bottom: none; }
.scarcity-box__benefits li::before {
  content: "✓";
  color: #22C55E;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.scarcity-box__cta { margin-bottom: 12px; }

.scarcity-box__guarantee {
  font-size: 0.75rem;
  color: var(--color-gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: #888;
  padding: 24px 20px;
  text-align: center;
}
.site-footer__logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}
.site-footer__text { font-size: 0.75rem; line-height: 1.6; }
.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.site-footer__links a {
  font-size: 0.72rem;
  color: #666;
  transition: color var(--transition);
}
.site-footer__links a:hover { color: var(--color-white); }

/* ============================================================
   STICKY CTA BAR (mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta .btn-cta {
  padding: 15px 24px;
  font-size: 0.9rem;
}

/* ============================================================
   PULSE ANIMATION ON MAIN CTA
   ============================================================ */
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 6px 20px rgba(255,87,51,0.35); }
  50%       { box-shadow: 0 6px 32px rgba(255,87,51,0.60); }
}
.btn-cta--pulse { animation: pulse-orange 2s ease-in-out infinite; }

/* ============================================================
   RESPONSIVE — telas muito pequenas (≤ 380px)
   Garante que o hero fullscreen caiba acima do fold
   ============================================================ */
@media (max-height: 650px) {
  .hero__content {
    padding: 16px 20px 12px;
    justify-content: flex-start;
    padding-top: 20px;
  }
  .hero__title--white {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 8px;
  }
  .hero__subtitle--light { margin-bottom: 14px; font-size: 0.9rem; }
  .hero__eyebrow { margin-bottom: 8px; }
  .hero__cta-wrap { margin-bottom: 10px; }
  .btn-cta { padding: 15px 20px; font-size: 0.92rem; }
}

/* ============================================================
   RESPONSIVE — tablet up
   ============================================================ */
@media (min-width: 600px) {
  :root { --max-width: 540px; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  display: none; /* shown via JS after 3s */
  position: fixed;
  bottom: 90px;
  right: calc(50% - 230px);
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }
