/*
Theme Name: Cris Ribeiro
Theme URI: #
Author: Paulo Henrique
Author URI: #
Description: Tema Premium Minimalista para Studio de Beleza Cris Ribeiro
Version: 1.0
License: GPLv2 or later
Text Domain: cris-ribeiro
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Cores */
  --c-bg:           #06060a;
  --c-bg-alt:       #0d0d12;
  --c-surface:      #111118;
  --c-surface-2:    #18181f;
  --c-surface-3:    #22222c;
  --c-border:       rgba(255,255,255,0.06);
  --c-border-gold:  rgba(201,168,76,0.2);

  --c-gold:         #c9a84c;
  --c-gold-light:   #e8d09a;
  --c-gold-dark:    #8b6914;
  --c-gold-glow:    rgba(201,168,76,0.12);

  --c-white:        #ffffff;
  --c-text:         #e8e4dc;
  --c-text-2:       #a8a49c;
  --c-text-3:       #6a6660;

  /* Tipografia */
  --f-display:  'Playfair Display', 'Georgia', serif;
  --f-body:     'Inter', 'Helvetica Neue', sans-serif;

  /* Espaçamentos */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Misc */
  --nav-h: 76px;
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  /* Extra Glass Tokens Escuros (Default) */
  --c-glass-nav:          rgba(6, 6, 10, 0.85);
  --c-glass-nav-scrolled: rgba(13, 13, 18, 0.95);
  --c-glass-card:         rgba(24, 24, 31, 0.45);
  --c-glass-card-hover:   rgba(24, 24, 31, 0.65);
  --c-glass-border-nav:   rgba(255, 255, 255, 0.05);
  --c-glass-border-card:  rgba(255, 255, 255, 0.04);
  --c-card-reflection:    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  
  --transition: 0.35s var(--ease);
}

[data-theme="light"] {
  --c-bg:           #f7f6f2;
  --c-bg-alt:       #ffffff;
  --c-surface:      #efede7;
  --c-surface-2:    #e5e3dc;
  --c-surface-3:    #d9d6d0;
  --c-border:       rgba(0,0,0,0.06);
  --c-border-gold:  rgba(201,168,76,0.3);

  /* Gold stays exactly the same, but the glow is subtler */
  --c-gold-glow:    rgba(201,168,76,0.08);

  /* Text inverts */
  --c-white:        #121110; 
  --c-text:         #2a2927;
  --c-text-2:       #5c5954;
  --c-text-3:       #8a867f;

  /* Glass Light */
  --c-glass-nav:          rgba(247, 246, 242, 0.85);
  --c-glass-nav-scrolled: rgba(255, 255, 255, 0.95);
  --c-glass-card:         rgba(255, 255, 255, 0.45);
  --c-glass-card-hover:   rgba(255, 255, 255, 0.7);
  --c-glass-border-nav:   rgba(0, 0, 0, 0.05);
  --c-glass-border-card:  rgba(0, 0, 0, 0.04);
  --c-card-reflection:    linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 100%);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--c-gold-light); }

ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.container--narrow {
  max-width: 780px;
}

.section {
  padding: var(--s-32) 0;
}

.section--dark {
  background: var(--c-bg-alt);
}

.section--surface {
  background: var(--c-surface);
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
}

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--c-gold), transparent);
  margin: var(--s-4) 0 var(--s-8);
}

.gold-line--center {
  margin: var(--s-4) auto var(--s-8);
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
  width: 80px;
}

.centered { text-align: center; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  background: var(--c-glass-nav);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid var(--c-glass-border-nav);
}

.navbar--transparent:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}


.navbar.is-scrolled {
  background: var(--c-glass-nav-scrolled);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom-color: var(--c-border-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.navbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.navbar__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.navbar__logo:hover img { opacity: 0.8; }

.navbar__menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}

.nav-list a {
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-list a:hover,
.nav-list .current-menu-item > a {
  color: var(--c-gold);
}

.navbar__toggle {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
}
.navbar__toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  transition: all var(--transition);
}
.navbar__toggle span:nth-child(1) { top: 0; }
.navbar__toggle span:nth-child(2) { top: 8px; }
.navbar__toggle span:nth-child(3) { bottom: 0; }

.navbar__cta {
  padding: 0.55rem 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;

}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.9rem 2.4rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-bg);
  border: 1px solid var(--c-gold);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn--primary:hover { color: var(--c-bg); }
.btn--primary:hover::before { transform: translateX(0); }

.btn--ghost {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-border-gold);
}
.btn--ghost:hover {
  background: var(--c-gold-glow);
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

/* ============================================================
   SEPARADORES DECORATIVOS
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: var(--s-16) 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.divider__diamond {
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--s-16)) var(--s-6) var(--s-16);
  overflow: hidden;
}

/* Camada de fundo abstrata/atmosférica */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.065) 0%, transparent 60%);
}

/* Hero Front Page Custom Background */
#hero .hero__bg {
  background-image: 
    linear-gradient(to right, rgba(6, 6, 10, 0.95) 0%, rgba(6, 6, 10, 0.6) 50%, rgba(6, 6, 10, 0) 100%),
    url('./assets/images/galeria/fundo-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
[data-theme="light"] #hero .hero__bg {
  background-image: 
    linear-gradient(to right, rgba(247, 246, 242, 0.95) 0%, rgba(247, 246, 242, 0.6) 50%, rgba(247, 246, 242, 0) 100%),
    url('./assets/images/galeria/fundo-hero.png');
}

@media (min-width: 1024px) {
  #hero {
    align-items: flex-end;
    text-align: left;
  }
  #hero .hero__content {
    margin: 0;
    margin-left: auto;
    margin-right: var(--s-16);
    text-align: left;
    max-width: 600px;
  }
  #hero .hero__subheadline {
    margin-left: 0;
    margin-right: auto;
  }
  #hero .hero__actions {
    justify-content: flex-start;
  }
  #hero .hero__bg {
    background-image: 
      linear-gradient(to right, rgba(6, 6, 10, 0) 0%, rgba(6, 6, 10, 0) 30%, rgba(6, 6, 10, 0.85) 65%, rgba(6, 6, 10, 0.95) 100%),
      url('./assets/images/galeria/fundo-hero.png');
  }
  [data-theme="light"] #hero .hero__bg {
    background-image: 
      linear-gradient(to right, rgba(247, 246, 242, 0) 0%, rgba(247, 246, 242, 0) 30%, rgba(247, 246, 242, 0.85) 65%, rgba(247, 246, 242, 0.95) 100%),
      url('./assets/images/galeria/fundo-hero.png');
  }
}

@media (max-width: 1023px) {
  #hero .hero__bg {
    background-image: 
      linear-gradient(to bottom, rgba(6, 6, 10, 0.85) 0%, rgba(6, 6, 10, 0.4) 30%, rgba(6, 6, 10, 0) 70%),
      url('./assets/images/galeria/fundo-hero-mobile.jpg');
    background-position: center top;
  }
  [data-theme="light"] #hero .hero__bg {
    background-image: 
      linear-gradient(to bottom, rgba(247, 246, 242, 0.85) 0%, rgba(247, 246, 242, 0.4) 30%, rgba(247, 246, 242, 0) 70%),
      url('./assets/images/galeria/fundo-hero-mobile.jpg');
  }
  #hero {
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + var(--s-16));
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero__logo {
  width: auto;
  height: 130px;
  margin: 0 auto var(--s-8);
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.12));
  transition: filter var(--transition);
}
.hero__logo:hover {
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.22));
}

.hero__headline {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--c-white);
  margin-bottom: var(--s-4);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold-light);
}

.hero__subheadline {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--c-text);
  opacity: 0.85;
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto var(--s-8);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-8);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   SEÇÃO: GALERIA DE FOTOS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: var(--s-4);
  margin-top: var(--s-12);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-surface-2);
  height: 100%;
  width: 100%;
}

.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; grid-row: span 1; }
.gallery-item--tall { grid-column: span 1; grid-row: span 2; }

@media (max-width: 600px) {
  .gallery-grid { grid-auto-rows: 240px; }
  .gallery-item--large, .gallery-item--wide, .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay svg {
  width: 42px;
  height: 42px;
  color: var(--c-white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.post-card {
  padding: 0; 
  display: flex; 
  flex-direction: column; 
  overflow: hidden;
}

.post-card .post-thumbnail {
  position: relative; 
  width: 100%; 
  aspect-ratio: 16/10; 
  overflow: hidden; 
  border-bottom: 1px solid var(--c-glass-border-card);
}

.post-card .post-thumbnail img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s var(--ease);
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-card .post-thumbnail-placeholder {
  position: relative; 
  width: 100%; 
  aspect-ratio: 16/10; 
  background: var(--c-surface-2); 
  border-bottom: 1px solid var(--c-glass-border-card); 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.post-card .post-content {
  padding: var(--s-8) var(--s-6); 
  display: flex; 
  flex-direction: column; 
  flex-grow: 1;
}

/* ============================================================
   SEÇÃO: GRID DE SERVIÇOS
   ============================================================ */
.section-header {
  margin-bottom: var(--s-16);
}

.section-header__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-white);
  margin-bottom: var(--s-4);
}

.section-header__title span {
  color: var(--c-gold);
}

.section-header__desc {
  font-size: 1rem;
  color: var(--c-text-2);
  max-width: 540px;
  margin: var(--s-4) auto 0;
  line-height: 1.85;
}

/* Cards de serviço padrão */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-6);
  background: transparent;
}

.card {
  background: var(--c-glass-card);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid var(--c-glass-border-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--s-12) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--c-card-reflection);
  pointer-events: none;
}

.card:hover {
  background: var(--c-glass-card-hover);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card__icon {
  width: 44px;
  height: 44px;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
  opacity: 0.9;
}
.card__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5px; }

.card__title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  color: var(--c-white);
}

.card__desc {
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

.card__list {
  margin-top: auto;
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.card__list-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.88rem;
  color: var(--c-text-2);
}

.card__list-item svg {
  width: 14px;
  height: 14px;
  color: var(--c-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5px;
  flex-shrink: 0;
}

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-gold-light);
  letter-spacing: 0.08em;
  margin-top: var(--s-4);
  opacity: 0.8;
}

/* ============================================================
   SEÇÃO: DESTAQUE CENTRAL (texto amplo)
   ============================================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--c-border);
}

.feature-block__col {
  background: var(--c-surface);
  padding: var(--s-12) var(--s-8);
}

.feature-block__col--dark {
  background: var(--c-surface-2);
}

.feature-block__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-white);
  margin-bottom: var(--s-6);
}

.feature-block__badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--radius-lg);
  margin-bottom: var(--s-6);
  background: var(--c-gold-glow);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.6;
}

.feature-list__item svg {
  width: 15px;
  height: 15px;
  color: var(--c-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5px;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-list__item strong {
  color: var(--c-text);
  font-weight: 600;
}

/* ============================================================
   SEÇÃO: QUOTE / STATEMENT
   ============================================================ */
.statement {
  padding: var(--s-32) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.statement__quote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  color: var(--c-white);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto var(--s-8);
  position: relative;
}

.statement__quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--c-gold);
  opacity: 0.15;
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--f-display);
  line-height: 1;
}

.statement__sub {
  font-size: 0.85rem;
  color: var(--c-text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   SEÇÃO: DIFERENCIAIS (pillars)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--c-border);
}

.pillar {
  background: var(--c-surface);
  padding: var(--s-12) var(--s-6);
  text-align: center;
  transition: background var(--transition);
}

.pillar:hover { background: var(--c-surface-2); }

.pillar__number {
  font-family: var(--f-display);
  font-size: 3.5rem;
  color: var(--c-gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: var(--s-4);
}

.pillar__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: var(--s-3);
}

.pillar__desc {
  font-size: 0.85rem;
  color: var(--c-text-2);
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO: OBJEÇÃO + URGÊNCIA
   ============================================================ */
.objection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--c-border);
}

.objection__col {
  padding: var(--s-16) var(--s-12);
  background: var(--c-surface);
}

.objection__col--accent {
  background: var(--c-bg-alt);
  border-left: 2px solid var(--c-gold);
}

.objection__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--c-white);
  margin-bottom: var(--s-4);
  line-height: 1.3;
}

.objection__text {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.85;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.65rem 1.2rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--c-gold-light);
  font-weight: 500;
  margin-top: var(--s-6);
  letter-spacing: 0.03em;
}

.urgency-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
  flex-shrink: 0;
}

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

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 90% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__headline {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--c-white);
  margin-bottom: var(--s-8);
  line-height: 1.2;
}

.cta-final__headline em {
  font-style: italic;
  color: var(--c-gold);
  display: block;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.footer__top {
  padding: var(--s-24) 0 var(--s-16);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-16);
  align-items: start;
}

.footer__brand {}

.footer__logo {
  height: 90px;
  width: auto;
  opacity: 0.88;
  margin-bottom: var(--s-6);
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-gold);
  margin-bottom: var(--s-2);
}

.footer__sub {
  font-size: 0.85rem;
  color: var(--c-text-3);
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}

.footer__info-group {}

.footer__info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: var(--s-3);
}

.footer__info-value {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

.footer__info-value a {
  color: var(--c-text-2);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: color var(--transition);
}

.footer__info-value a:hover { color: var(--c-gold-light); }

.footer__info-value svg {
  width: 16px;
  height: 16px;
  color: var(--c-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: var(--s-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--c-text-3);
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--c-text-3);
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 900px) {
  :root { --s-32: 5rem; --s-24: 4rem; --s-16: 3rem; }

  .navbar__toggle {
    display: block;
  }
  .navbar__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: color-mix(in srgb, var(--c-bg) 96%, transparent);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: var(--s-12) var(--s-6);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .navbar__menu.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--s-6);
    width: 100%;
  }
  .navbar__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

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

  .objection__col--accent {
    border-left: none;
    border-top: 2px solid var(--c-gold);
  }

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

  .footer__info {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

@media (max-width: 600px) {
  :root { --s-32: 4rem; --s-24: 3rem; }

  .section { padding: var(--s-16) 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }

  .hero__logo { height: 120px; }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--s-4);
    padding-bottom: var(--s-6);
    margin: var(--s-8) calc(var(--s-6) * -1) 0;
    padding-left: var(--s-6);
    padding-right: var(--s-6);
    scrollbar-width: none; /* Hide scrollbar for clean look */
  }
  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 85%;
    height: 350px;
    scroll-snap-align: center;
  }
  .gallery-item--large, .gallery-item--wide, .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .urgency-badge {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .navbar__logo img { height: 36px; }

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

  .btn { padding: 0.8rem 1.5rem; font-size: 0.7rem; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background-color: #20ba56;
  color: #ffffff;
}

/* ============================================================
   LIGHTBOX GALERIA
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(6, 6, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.is-active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
  cursor: default;
}

.lightbox.is-active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--c-white);
  font-size: 44px;
  font-weight: 200;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s ease;
}
.lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
}

