*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --gray: #535151;
  --white: #ffffff;
  --orange: #e54d01;
  --orange-light: #fe800f;
  --gold: #fca404;
  --cream: #fff0da;
  --green-soft: #8fb2ab;
  --green-dark: #183437;
  --red: #cd3621;
  --font-family: 'Century Gothic', Arial, Helvetica, sans-serif;
  --container-width: 1200px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 5px 18px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 20px 42px rgba(0, 0, 0, 0.42);
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-family);
  color: var(--white);
  line-height: 1.55;
  background: linear-gradient(135deg, var(--black) 0%, #252424 52%, var(--gray) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

button {
  -webkit-appearance: none;
  appearance: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.content {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0 18px;
}

/* Logo */
.logo-section {
  width: 100%;
  padding: 22px 16px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-link:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 8px;
  border-radius: 8px;
}

.logo-section img {
  width: auto;
  max-width: 146px;
  max-height: 94px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Hero */
.hero {
  padding: 20px 0 30px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.15;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gift-callout {
  max-width: 820px;
  margin: 0 auto 12px;
  color: var(--cream);
  font-size: clamp(1.28rem, 4.8vw, 1.8rem);
  line-height: 1.25;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.62;
}

.scarcity {
  display: inline-block;
  margin: 4px auto 0;
  padding: 8px 12px;
  border: 1px solid rgba(252, 164, 4, 0.25);
  border-radius: 999px;
  background: rgba(252, 164, 4, 0.08);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 900;
}

/* Hero image */
.hero-image-section {
  width: 100vw;
  max-width: 100%;
  height: 245px;
  min-height: 245px;
  margin: 0 0 42px;
  overflow: hidden;
  background: var(--black);
}

.hero-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Seções */
.section-block {
  padding: 0 0 46px;
}

/* Formulário */
.form-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow-md);
}

label {
  display: block;
  margin: 0 0 7px;
  color: var(--cream);
  font-size: 0.98rem;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 50px;
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1.8px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

input:focus {
  border-color: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(254, 128, 15, 0.22);
}

/* Presentes */
.gift-header {
  margin: 10px 0 18px;
  text-align: center;
}

.gift-header h2,
.faq h2 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: clamp(1.7rem, 3vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.gift-header p {
  margin: 0 auto;
  color: var(--cream);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.45;
}

.gift-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 16px;
  margin: 0 -18px 18px;
  padding: 2px 18px 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gift-card {
  padding: 0;
  border: 1.8px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.gift-card:hover,
.gift-card.selected {
  transform: translateY(-2px);
  border-color: var(--orange-light);
  background: rgba(254, 128, 15, 0.13) !important;
  box-shadow: 0 16px 34px rgba(229, 77, 1, 0.28);
}

.gift-card.selected {
  outline: 2px solid rgba(254, 128, 15, 0.42);
  outline-offset: 2px;
}

.gift-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center center;
  background: var(--black);
}

.gift-card-body {
  display: block;
  padding: 18px;
}

.gift-card strong {
  display: block;
  margin: 0 0 9px;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.18;
  font-weight: 900;
}

.gift-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(252, 164, 4, 0.1);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.clock-icon {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.6px solid var(--cream);
  border-radius: 50%;
  flex: 0 0 14px;
}

.clock-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5.6px;
  width: 1.4px;
  height: 4.5px;
  border-radius: 2px;
  background: var(--cream);
}

.clock-icon::after {
  content: "";
  position: absolute;
  top: 5.8px;
  left: 5.6px;
  width: 3.6px;
  height: 1.4px;
  border-radius: 2px;
  background: var(--cream);
  transform-origin: left center;
  transform: rotate(35deg);
}

.gift-card small {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.38;
  font-weight: 700;
}

/* Botões e feedback */
.form-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
}

button#submitButton,
.popup button {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
  color: var(--white) !important;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(229, 77, 1, 0.36);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

button#submitButton:hover:not(:disabled),
.popup button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(229, 77, 1, 0.45);
}

button:disabled,
#submitButton:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-feedback {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--cream);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 900;
}

.form-feedback.error {
  color: #ff9d9d;
}

.form-feedback.success {
  color: var(--green-soft);
}

/* FAQ */
.faq .content {
  max-width: 860px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 28px;
}

.faq-item {
  margin-bottom: 16px;
  padding: 20px 18px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.popup-content {
  width: min(100%, 760px);
  max-height: 86vh;
  overflow-y: auto;
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--black), var(--gray));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.popup-content h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 1.24rem;
  line-height: 1.25;
}

.popup-content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
}

.offer-box {
  margin: 16px 0;
  padding: 16px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.offer-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 1rem;
}

.popup-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.popup .secondary {
  background: #353535 !important;
  box-shadow: none;
}

/* Tablets e desktops */
@media (min-width: 641px) {
  .content {
    padding: 0 32px;
  }

  .logo-section {
    padding-top: 28px;
  }

  .logo-section img {
    max-width: 155px;
    max-height: 92px;
  }

  .hero {
    padding: 28px 0 38px;
  }

  .hero-image-section {
    height: 390px;
    margin-bottom: 56px;
  }

  .hero-image-section img {
    object-position: center 18%;
  }

  .section-block {
    padding-bottom: 58px;
  }

  .form-section {
    padding: 30px 28px;
  }

  .gift-carousel {
    grid-auto-columns: 46%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gift-card img {
    height: 280px;
  }

  button#submitButton {
    max-width: 390px;
  }

  .popup-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .content {
    padding: 0 40px;
  }

  .logo-section img {
    max-width: 190px;
    max-height: 120px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .gift-callout {
    font-size: 1.8rem;
  }

  .hero-image-section {
    height: 560px;
  }

  .hero-image-section img {
    object-position: center 16%;
  }

  .gift-carousel {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 24px;
  }

  .gift-card {
    scroll-snap-align: unset;
  }

  .gift-card img {
    height: 320px;
  }
}

@media (min-width: 1180px) {
  .gift-carousel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gift-card img {
    height: 245px;
  }
}


/* Popup - fluxo de agendamento e upsell - v8 */
.scheduling-popup {
  text-align: center;
}

.scheduling-popup h3,
.scheduling-popup p {
  text-align: center;
}

.scheduling-popup p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.popup-button-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 16px auto;
}

.scheduling-popup button,
.scheduling-popup .offer-button,
.scheduling-popup .secondary {
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
}

.scheduling-popup .offer-box {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 18px;
  text-align: center;
}

.scheduling-popup .offer-box strong {
  text-align: center;
}

.scheduling-popup .offer-box span {
  display: block;
  max-width: 520px;
  margin: 6px auto 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.45;
}

.scheduling-popup .offer-button {
  min-height: 54px;
  margin-top: 0;
}

.scheduling-popup .secondary {
  background: #353535 !important;
  box-shadow: none;
}

@media (max-width: 640px) {
  .scheduling-popup button,
  .scheduling-popup .offer-button,
  .scheduling-popup .secondary {
    max-width: none;
  }

  .scheduling-popup .offer-box {
    text-align: center;
  }
}


/* Popup premium upsell - v13 */
.scheduling-popup {
  text-align: center;
}

.scheduling-popup h3,
.scheduling-popup p {
  text-align: center;
}

.scheduling-popup h3 {
  font-size: 1.24rem;
  margin-bottom: 24px;
}

.scheduling-popup p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.popup-button-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 16px auto;
}

.scheduling-popup .popup-button-row:first-of-type {
  margin-bottom: 42px;
}

.scheduling-popup button,
.scheduling-popup .offer-button,
.scheduling-popup .secondary {
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
}

.premium-upsell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 18px;
  padding: 18px 18px 22px;
  text-align: center;
  border-left: none;
  border: 1px solid rgba(252, 164, 4, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.30);
}

.premium-upsell .upsell-image {
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center center;
  background: var(--black);
  box-shadow: var(--shadow-sm);
}

.premium-upsell .upsell-eyebrow {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.premium-upsell .upsell-eyebrow span {
  color: var(--gold);
}

.premium-upsell strong {
  display: block;
  margin: 0 auto 8px;
  color: var(--cream);
  font-size: 1.16rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
}

.premium-upsell .upsell-time,
.premium-upsell .gift-time.upsell-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px !important;
  margin: 0 auto 10px !important;
  padding: 4px 8px !important;
  border-radius: 999px;
  background: rgba(252, 164, 4, 0.1);
  color: var(--cream);
  font-size: 0.68rem !important;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.premium-upsell .upsell-time .clock-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-width: 1.4px;
  top: 0;
}

.premium-upsell .upsell-time .clock-icon::before {
  top: 1.8px;
  left: 4.8px;
  width: 1.2px;
  height: 4px;
}

.premium-upsell .upsell-time .clock-icon::after {
  top: 5px;
  left: 4.8px;
  width: 3.2px;
  height: 1.2px;
}

.premium-upsell .upsell-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px !important;
  flex-wrap: nowrap;
  margin: 0 auto 10px;
  width: fit-content;
}

.premium-upsell .old-price {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: line-through;
  white-space: nowrap;
}

.premium-upsell .new-price {
  color: var(--orange-light);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.premium-upsell .upsell-copy {
  max-width: 390px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.45;
}

.premium-upsell .upsell-bullets {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 0 12px 0 20px;
  text-align: left;
}

.premium-upsell .upsell-bullets li {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.32;
  font-weight: 400;
}

.premium-upsell .upsell-button-row {
  margin-top: 10px;
  margin-bottom: 0;
}

.premium-upsell .offer-button {
  min-height: 54px;
  margin-top: 0;
}

.scheduling-popup .secondary {
  background: #353535 !important;
  box-shadow: none;
}

@media (min-width: 900px) {
  .premium-upsell {
    max-width: 590px;
    padding: 20px 22px 24px;
  }

  .premium-upsell .upsell-image {
    max-width: 290px;
    height: 290px;
  }

  .premium-upsell strong {
    font-size: 1.18rem;
  }

  .premium-upsell .upsell-time,
  .premium-upsell .gift-time.upsell-time {
    font-size: 0.67rem !important;
    padding: 4px 8px !important;
    gap: 5px !important;
  }

  .premium-upsell .old-price {
    font-size: 0.88rem;
  }

  .premium-upsell .new-price {
    font-size: 1.28rem;
  }
}

@media (max-width: 640px) {
  .scheduling-popup button,
  .scheduling-popup .offer-button,
  .scheduling-popup .secondary {
    max-width: none;
  }

  .scheduling-popup h3 {
    margin-bottom: 22px;
  }

  .scheduling-popup p {
    margin-bottom: 22px;
  }

  .scheduling-popup .popup-button-row:first-of-type {
    margin-bottom: 34px;
  }

  .premium-upsell {
    padding: 16px 14px 18px;
  }

  .premium-upsell .upsell-image {
    max-width: 240px;
    height: 240px;
    margin-bottom: 14px;
  }

  .premium-upsell .upsell-eyebrow {
    font-size: 0.84rem;
  }

  .premium-upsell strong {
    font-size: 1.06rem;
  }

  .premium-upsell .upsell-time,
  .premium-upsell .gift-time.upsell-time {
    font-size: 0.66rem !important;
    padding: 4px 7px !important;
    gap: 4px !important;
    margin-bottom: 10px !important;
  }

  .premium-upsell .upsell-time .clock-icon {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }

  .premium-upsell .upsell-time .clock-icon::before {
    top: 1.6px;
    left: 4.3px;
    height: 3.8px;
  }

  .premium-upsell .upsell-time .clock-icon::after {
    top: 4.6px;
    left: 4.3px;
    width: 3px;
  }

  .premium-upsell .old-price {
    font-size: 0.84rem;
  }

  .premium-upsell .new-price {
    font-size: 1.18rem;
  }

  .premium-upsell .upsell-copy {
    font-size: 0.93rem;
  }

  .premium-upsell .upsell-bullets {
    padding-left: 18px;
    padding-right: 4px;
  }

  .premium-upsell .upsell-bullets li {
    font-size: 0.9rem;
  }
}

