/* ============================================================
   VIP ESTETIC — Landing Page Botox
   CSS Global — Identidade Visual Oficial
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Paleta Primária */
  --noir-black:    #1a1a1a;
  --silk-beige:    #c9b99a;
  --pearl-white:   #f5f2ed;

  /* Paleta de Suporte */
  --blush-pink:    #e8d5cb;
  --soft-terracotta: #c4826a;
  --sage-green:    #8a9e8c;

  /* Neutros */
  --white:         #ffffff;
  --off-white:     #faf8f5;
  --light-gray:    #eeebe6;
  --mid-gray:      #999087;
  --dark-gray:     #3d3830;

  /* Tipografia */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;

  /* Espaçamentos */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;

  /* Bordas */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-pill: 100px;

  /* Sombras */
  --shadow-soft: 0 4px 30px rgba(26,26,26,0.08);
  --shadow-card: 0 8px 40px rgba(26,26,26,0.12);

  /* Transições */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--noir-black);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--noir-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--dark-gray);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silk-beige);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--silk-beige);
  margin-right: 0.8rem;
  vertical-align: middle;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--noir-black);
  color: var(--pearl-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--pearl-white);
}

.section--dark p {
  color: var(--light-gray);
}

.text-center { text-align: center; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--silk-beige);
  color: var(--noir-black);
}

.btn--primary:hover {
  background-color: var(--soft-terracotta);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,130,106,0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--silk-beige);
  border: 1.5px solid var(--silk-beige);
}

.btn--outline:hover {
  background-color: var(--silk-beige);
  color: var(--noir-black);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: #25D366;
  color: var(--white);
  font-size: 0.9rem;
}

.btn--whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn--lg {
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
}

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background-color: var(--blush-pink);
  color: var(--dark-gray);
}

/* ---------- Divisor decorativo ---------- */
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--silk-beige);
  margin: 1.5rem auto;
}

.divider--left {
  margin-left: 0;
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 32px;
  transition: var(--transition);
}
.header__logo:hover { opacity: 0.8; }

.header__logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.header__logo-light { display: block; }
.header__logo-dark  { display: none; }
.header.scrolled .header__logo-light { display: none; }
.header.scrolled .header__logo-dark  { display: block; }

.header__cta .btn {
  padding: 0.7rem 1.6rem;
  font-size: 0.78rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--noir-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.92) 0%,
    rgba(26,26,26,0.7) 50%,
    rgba(26,26,26,0.5) 100%
  );
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero__title em {
  font-style: italic;
  color: var(--silk-beige);
}

.hero__subtitle {
  color: var(--light-gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__social-proof {
  margin-top: 3.5rem;
  display: flex;
  gap: 2.5rem;
}

.hero__stat span {
  display: block;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--silk-beige);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ---------- CREDENCIAIS BAR ---------- */
.cred-bar {
  background-color: var(--silk-beige);
  padding: 1.2rem 0;
}

.cred-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noir-black);
}

.cred-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- O QUE É ---------- */
.what__text .eyebrow {
  margin-bottom: 1rem;
}

.what__text h2 {
  margin-bottom: 1rem;
}

.what__text p {
  margin-bottom: 1.2rem;
}

.what__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.what__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.what__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-card);
}

.what__image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--silk-beige);
}

.what__image-badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

/* ---------- PARA QUEM É ---------- */
.forwho__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.forwho__card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.forwho__card:hover {
  border-color: var(--silk-beige);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.forwho__icon {
  width: 48px;
  height: 48px;
  background-color: var(--blush-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.forwho__icon svg {
  width: 22px;
  height: 22px;
  color: var(--soft-terracotta);
}

.forwho__card h4 {
  margin-bottom: 0.6rem;
}

/* ---------- COMO FUNCIONA ---------- */
.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--silk-beige), transparent);
}

.how__step {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.how__step-num {
  width: 48px;
  height: 48px;
  background-color: var(--silk-beige);
  color: var(--noir-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.how__step-content h4 {
  margin-bottom: 0.4rem;
  padding-top: 0.6rem;
}

/* ---------- DIFERENCIAIS ---------- */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.diff__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,185,154,0.25);
  transition: var(--transition);
}

.diff__item:hover {
  border-color: var(--silk-beige);
  background-color: rgba(201,185,154,0.08);
}

.diff__item svg {
  width: 36px;
  height: 36px;
  color: var(--silk-beige);
  margin: 0 auto 1rem;
}

.diff__item h4 {
  color: var(--pearl-white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.diff__item p {
  color: var(--mid-gray);
  font-size: 0.9rem;
}

/* ---------- RESULTADOS / GALERIA ---------- */
.results__intro {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.result__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: var(--white);
  border: 1px solid var(--light-gray);
}

.result__card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.result__card-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.result__label {
  position: absolute;
  top: 0.7rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  color: var(--white);
}

.result__label--before {
  left: 0.7rem;
  background-color: rgba(0,0,0,0.5);
}

.result__label--after {
  right: 0.7rem;
  background-color: var(--soft-terracotta);
}

.result__card-info {
  padding: 1.2rem 1.4rem;
}

.result__card-info p {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

/* ---------- DEPOIMENTOS ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial__card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial__card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--silk-beige);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--silk-beige);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--blush-pink);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--noir-black);
}

.testimonial__meta {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ---------- FAQ ---------- */
.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--light-gray);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--noir-black);
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--soft-terracotta);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--silk-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--silk-beige);
}

.faq__item.open .faq__icon {
  background-color: var(--silk-beige);
  color: var(--noir-black);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--space-xl) 0;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--noir-black) 0%, #2d2520 100%);
  z-index: 0;
}

.cta-final__decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,185,154,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(138,158,140,0.08) 0%, transparent 50%);
  z-index: 1;
}

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--silk-beige);
}

.cta-final p {
  color: var(--light-gray);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-final__disclaimer {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ---------- WhatsApp Flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  animation: pulse 2.5s infinite;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--noir-black);
  color: var(--mid-gray);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--silk-beige);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__logo-img {
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.footer__info {
  font-size: 0.85rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.08);
  margin: 1.5rem 0;
}

.footer__bottom {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ---------- Utilitários de Seção ---------- */
.section__header { max-width: 600px; margin: 0 auto 0.5rem; }
.what__cta { margin-top: 1.5rem; }
.how__intro-text { margin-bottom: 2rem; }
.how__image-tall img { height: 620px; object-fit: cover; }
.results__cta { text-align: center; margin-top: 3rem; }
.cta-final .eyebrow { margin-bottom: 1.2rem; }
.faq__header { margin-bottom: 0.5rem; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }

  .hero__social-proof {
    gap: 1.5rem;
  }

  .cred-bar__inner {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .grid-3 { grid-template-columns: 1fr; }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__social-proof {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .cred-bar__inner {
    gap: 1rem;
    justify-content: flex-start;
  }

  .how__steps::before {
    display: none;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
  }
}
