/* ════════════ VARIABLES ════════════ */
:root {
  --gold-1: #F8DF72;
  --gold-2: #D4900F;
  --gold-3: #C4920A;
  --dark: #1D1D1D;
  --darker: #0B0B0B;
  --card-dk: #161616;
  --card-dk2: #262424;
  --white: #fff;
  --cream: #FCF3EA;
  --gray: #8E8686;
  --text-dk: #4B4949;
  --gold-grad: linear-gradient(90deg, #F8DF72 0%, #D4900F 100%);
  --gold-grad-v: linear-gradient(180deg, #F8DF72 0%, #D4900F 100%);
  --fp: 'Poppins', sans-serif;
  --fs: 'Sora', sans-serif;
  --ft: 'Playfair Display', serif;
  --fm: 'Montserrat', sans-serif;
  --fc: 'Dancing Script', cursive;
}
.tipo-img {
    border: 2px solid #c9a84c;
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 4px #fff,           /* moldura interna branca */
        0 0 0 2px #c9a84c,              /* segundo traço externo */
        0 4px 20px rgba(0,0,0,0.12);    /* sombra suave */
    outline: none;
}
/* ════════════ RESET ════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fp);
  background: #fff;
  overflow-x: hidden;
  color: var(--dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--fp);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ════════════ UTILITIES ════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}

.text-c {
  text-align: center;
}

.dark-sec {
  background: var(--dark);
}

/* Gradient text */
.g-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g-heading {
  font-family: var(--fs);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Body text colours */
.body-w {
  font-size: clamp(.875rem, 1.2vw, 1.1rem);
  color: var(--gray);
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
}

.body-dk {
  font-size: clamp(.875rem, 1.2vw, 1.05rem);
  color: var(--text-dk);
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
}

/* Visibility Utilities */
.mobile-only-expand { display: none; }
.desktop-only { display: block; }

@media (max-width: 640px) {
  .mobile-only-expand { display: flex; flex-direction: column; align-items: flex-start; }
  .desktop-only { display: none; }
}

/* ════════════ BUTTONS ════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72em 1.75em;
  border-radius: 8px;
  font-family: var(--fm);
  font-size: clamp(.8rem, 1.1vw, .95rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
  transition: opacity .2s, transform .18s;
}

.btn:hover {
  opacity: .87;
  transform: translateY(-1px);
}

.btn:active {
  opacity: 1;
  transform: none;
}

.btn--gold {
  background: var(--gold-grad-v);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .2);
  box-shadow: 0 4px 16px rgba(196, 146, 10, .3);
}

.btn--gold-2 {
  background:0;
  color: #fff;
  border: 5x solid rgba(255, 255, 255, .2);
  box-shadow: 0 4px 16px rgba(196, 146, 10, .3);
}

.btn--dark {
  background: linear-gradient(180deg, #3d3d3d, #111);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .12);
}

.btn--wide {
  padding: .85em 2.25em;
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
}

.btn--cta {
  font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
  padding: .9em 2.5em !important;
  border-radius: 50px !important;
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  /* Otimização moderna de altura total considerando base de browsers mobile */
  background: #f3ede4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2rem, 5vh, 6rem) 0;
  /* Scaling safety padding dinâmico verticalmente */
  overflow: hidden;
}

/* BG: cobre tudo, Sandra fica à direita */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  /* Mantém a modelo à direita sempre em foco para harmonização com texto à esquerda */
  z-index: 0;
  pointer-events: none;
}

/* Fade branco do lado esquerdo para isolar o texto */
.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right,
      #f3ede4 0%,
      #f3ede4 32%,
      rgba(243, 237, 228, .92) 44%,
      rgba(243, 237, 228, .55) 58%,
      rgba(243, 237, 228, .1) 72%,
      transparent 84%);
}

/* Coluna de conteúdo — esquerda */
.hero__content {
  position: relative;
  z-index: 2;
  width: 52%;
  /* Restringido a 52% para preservar as proporções da estrutura clássica do layout e permitir amplo respiro lateral pra modelo */
  min-width: 300px;
  padding: 0 2rem 0 clamp(2.5rem, 6vw, 7.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: clamp(0.75rem, 2vh, 1.2rem);
  /* O vh assegura que o gap vai retrair na horizontal se a tela for muito achatada (evitando overlap) */
}

/* Logo: shell + MADAME SAN + by Sandra */
.hero__logo {
  margin-bottom: clamp(1.2rem, 4vw, 5rem);
  /* Proporção ~100px em 1920px */
}

.hero__logo-img {
  width: clamp(160px, 13vw, 240px);
  height: auto;
  max-height: 25vh;
  /* Previne que o logo expanda além do que a tela permite na vertical sem comprometer W ratio */
  object-fit: contain;
}

/* Título principal — Agora mais imponente */
.hero__title {
  font-family: var(--ft);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 110px);
  width: min(864px, 100%);
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: linear-gradient(118deg, #c8920c 0%, #f0c43a 40%, #d4900f 75%, #a86a08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0;
}

/* Subtítulo — Aumentado conforme referência */
.hero__subtitle-row {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2.5vw, 3.5rem);
  margin-top: clamp(.2rem, 1vh, 1.2rem);
}

.hero__subtitle {
  font-family: var(--fp);
  font-size: clamp(1rem, 2.8vw, 42px);
  font-weight: 275;
  color: #8E8686;
  white-space: nowrap;
}

/* Seta decorativa — Ajustada para o novo tamanho */
.hero__arrow {
  display: flex;
  align-items: center;
  gap: 0;
  color: #555;
  flex-shrink: 0;
  margin-top: .15em;
}

.hero__arrow::before {
  content: '';
  display: block;
  width: clamp(60px, 6vw, 110px);
  height: 1.5px;
  background: currentColor;
}

.hero__arrow::after {
  content: '→';
  font-size: 24px;
  margin-left: -5px;
}

/* Descrição — Mais legível */
.hero__desc {
  font-family: var(--fp);
  font-size: clamp(.85rem, 1.65vw, 2rem);
  /* Aumentado de 1.41vw para 1.65vw */
  font-weight: 400;
  line-height: 1.65;
  color: #8E8686;
  max-width: min(600px, 95%);
  margin-top: 0;
}

.hero__desc strong {
  font-weight: 700;
  color: #6a6464;
}

/* CTAs */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(.5rem, 2vh, 1.5rem);
}

.hero__ctas .btn {
  font-size: clamp(.85rem, 1.2vw, 1.1rem);
  padding: .75em 1.8em;
}

/* ════════════ PEARL BIRTH ════════════ */
.pearl-sec {
  position: relative;
  background: linear-gradient(180deg, #2A2828, #181818);
  padding: clamp(5rem, 9vw, 8rem) 0;
  z-index: 2;
  /* Para a concha se sobrepor à próxima seção */
}

.pearl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.pearl-img-col {
  width: 100%;
}

.pearl-model-img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pearl-title {
  font-family: var(--fs);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.pearl-title-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pearl-subtitle {
  color: var(--white);
  font-family: var(--fp);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.fill-img {
  width: 115%;
  height: 115%;
  object-fit: cover;
  margin: -7.5% 0 0 -7.5%;
  min-height: 100%;
}

.pearl-deco {
  position: absolute;
  bottom: clamp(-4rem, -5vw, -6rem);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(140px, 18vw, 250px);
  z-index: 10;
  pointer-events: none;
}

/* ─── Expandable Content System ─── */
.expandable-content {
  position: relative;
  transition: max-height 0.4s ease-out;
  overflow: hidden;
}

.expand-btn {
  background: none;
  border: none;
  color: var(--gold-1);
  font-family: var(--fs);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .expandable-content {
    max-height: 100px; /* Altura compacta inicial */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
  .expandable-content.expanded {
    max-height: 1000px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  
  
}

/* ════════════ TIPOS ════════════ */
.tipos-sec {
  position: relative;
  background: var(--white);
  padding: clamp(4rem, 7vw, 7rem) 0;
  z-index: 1;
}

.tipos-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 1) 35%),
    url('assets/tipos_bg.png');
  background-size: cover;
  background-position: center top;
  z-index: -1;
  opacity: 1;
}

.tipos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tipos-title {
  font-family: var(--fp);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--darker);
  line-height: 1.1;
}

.tipos-title-gold {
  font-weight: 700;
  color: #c8920c;
}

.btn--tipos-top {
  font-size: clamp(.85rem, 1.2vw, 1.1rem);
  padding: .75em 1.8em;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tipo-card {
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s;
  display: flex;
  flex-direction: column;
}

.tipo-card:hover {
  transform: translateY(-6px);
}

.tipo-img {
  width: 100%;
  aspect-ratio: 442/646;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tipo-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.tipo-info h3 {
  font-family: var(--fp);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--text-dk);
  font-weight: 600;
}

.tipo-info p {
  font-size: clamp(.75rem, 1vw, .9rem);
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.tipo-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ════════════ IDENTIFICAR PÉROLA ════════════ */
.auth-sec {
  position: relative;
  overflow: visible;
  z-index: 2;
  /* Para o ícone do baú passar por cima do Curadoria */
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.chest-deco {
  position: absolute;
  bottom: clamp(-8rem, -12vw, -12rem);
  /* Faz o baú "sentar" sobre a divisa curadoria-sec */
  left: clamp(-1rem, 1vw, 2vw);
  width: clamp(140px, 18vw, 250px);
  z-index: 10;
  pointer-events: none;
}

.auth-header {
  text-align: left;
  margin-bottom: 3rem;
}

.auth-title {
  font-family: var(--fp);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.auth-sub {
  font-family: var(--fp);
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  color: var(--white);
  max-width: 750px;
  line-height: 1.6;
}

.auth-sub-gold {
  color: #C8920C;
  font-weight: 700;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.auth-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}

.auth-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem;
  border-radius: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: background .2s;
  display: flex;
  flex-direction: column;
}

.auth-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.auth-ctas {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.auth-ctas .btn {
  min-width: 150px;
  justify-content: center;
}

.auth-n {
  font-family: var(--fs);
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.auth-card h4 {
  font-family: var(--fp);
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0.25em;
}

.auth-card h4 em {
  font-style: normal;
}

.auth-card p {
  font-size: clamp(.72rem, .95vw, .82rem);
  color: var(--gray);
  line-height: 1.6;
}

.auth-photo-col {
  position: relative;
  height: 100%;
}

.auth-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  /* Borda removida pois a imagem já possui moldura ou frame baked */
}

/* ════════════ CURADORIA ════════════ */
.curadoria-sec {
  background: white url('assets/curadoria_bg.png') no-repeat left center;
  background-size: cover;
  padding: clamp(4rem, 7vw, 7rem) 0 0 0;
  /* Zera o padding inferior para a imagem encostar */
  overflow: hidden;
  /* Mantém hidden se quisermos que a imagem não vaze, se não for vazar */
}

.curadoria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: flex-end;
}

.curadoria-title {
  font-family: var(--fp);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--darker);
  line-height: 1.1;
  margin-bottom: .75rem;
}

.curadoria-title-gold {
  background: linear-gradient(90deg, #D4900F, #F8DF72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curadoria-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
  /* Fix para espaçamento fantasma na base do img */
}

.curadoria-img-col {
  order: 2;
  align-self: end;
  /* Força a coluna da imagem a alinhar com a base do grid */
}

.curadoria-text {
  order: 1;
  padding-bottom: clamp(2rem, 5vw, 5rem);
}

/* ════════════ WHY ════════════ */
.why-sec {
  background: linear-gradient(135deg, #FFF3D5, #f5e8c8);
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.why-title {
  font-family: var(--ft);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: italic;
  color: var(--text-dk);
  line-height: 1.1;
  margin-bottom: .75rem;
}

.why-brand {
  display: block;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
}

.why-sub {
  font-size: clamp(.875rem, 1.2vw, 1.05rem);
  color: var(--text-dk);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.why-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .1);
}

.why-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.why-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ════════════ FEATURES ════════════ */
.feats-sec {
  background: #ffffff;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

/* Cabeçalho da seção */
.feats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.feats-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.feats-title-brand {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.feats-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: #444444;
  max-width: 700px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--card-dk);
  border: 1.2px solid var(--gold-1);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: transform .22s;
}

.feat-card:hover {
  transform: translateY(-4px);
}

.feat-icon {
  width: clamp(70px, 9vw, 130px);
  height: auto;
  margin: 0 auto;
}

.feat-badge {
  background: var(--gold-grad-v);
  color: #fff;
  font-family: var(--fs);
  font-size: 1.4rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-name {
  font-family: var(--fs);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400;
  background: linear-gradient(180deg, #FFD255, #FFAC55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feat-desc {
  font-size: clamp(.78rem, 1vw, .9rem);
  color: var(--gray);
  line-height: 1.6;
}

/* ════════════ SECURITY ════════════ */
.security-sec {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.security-img-col {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.security-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  max-height: none;
  display: block;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 10vw, 10rem) 0; /* Aumentado para garantir cobertura visual */
  width: 100%;
}

/* Overlay escuro sobre a foto para garantir legibilidade do texto */
.security-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 6, 0.78) 50%, rgba(10, 8, 6, 0.25) 100%);
  z-index: 0;
}

.security-text {
  position: relative;
  z-index: 1;
  color: #fff;
}

.security-title {
  font-family: var(--fp);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(90deg, #D69516, #F3D465);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}

.security-title .title-white {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.security-list {
display: flex !important;
flex-direction: column !important;
align-items: flex-start !important;
text-align: left !important;
width: 100% !important;
margin: 1.5rem 0;
padding-left: 0;
}
.security-list li {
font-size: 0.85rem !important;
padding: 0.5rem 0;
border-bottom: none;
line-height: 1.4;
text-align: left !important;
justify-content: flex-start !important;
align-items: flex-start !important;
}

.security-list li::before {
  content: "✓";
  color: var(--gold-1);
  font-weight: 700;
  flex-shrink: 0;
}

/* CSS removido para permitir que a imagem de segurança ocupe todo o fundo conforme o bloco acima */

/* ════════════ SHELL DIVIDER ════════════ */
.shell-divider {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
}

.shell-deco-icon {
  position: absolute;
  right: clamp(1rem, 5vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

/* ════════════ CTA ════════════ */
.cta-sec {
  position: relative;
  background: var(--darker);
  padding: clamp(5rem, 12vw, 12rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--fs);
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding: 0 clamp(.5rem, 5vw, 3rem);
}

.cta-title-gold {
  color: #E8B800;
}

.cta-sub {
  font-family: var(--fm);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: #d9d9d9;
  margin-bottom: 2.75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn--cta {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  padding: 1em 2.8em;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ════════════ FOOTER ════════════ */
.footer {
  background: #ffffff;
  color: #1a1a1a;
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-logo-text {
  font-family: var(--fm);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: .12em;
}

.footer-tag {
  font-family: var(--fm);
  font-size: .8rem;
  color: #777;
  line-height: 1.7;
}

/* Colunas do footer */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-col-title {
  font-family: var(--fm);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: .25rem;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col-list a {
  font-family: var(--fm);
  font-size: .82rem;
  color: #E8A000;
  transition: color .18s;
  text-decoration: none;
}

.footer-col-list a:hover {
  color: #c47a00;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  max-width: 240px;
}

.footer-email-input {
  flex: 1;
  border: none;
  padding: .6em .9em;
  font-family: var(--fm);
  font-size: .82rem;
  color: #444;
  outline: none;
  background: #fff;
  min-width: 0;
}

.footer-email-input::placeholder {
  color: #aaa;
}

.footer-email-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: .6em 1em;
  font-family: var(--fm);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .18s;
}

.footer-email-btn:hover {
  background: #333;
}

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid #e8e8e8;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-inner p {
  font-family: var(--fm);
  font-size: .72rem;
  color: #999;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-family: var(--fm);
  font-size: .72rem;
  color: #999;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .18s;
}

.footer-bottom-links a:hover {
  color: #1a1a1a;
}

/* ════════════ TOAST ════════════ */
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: #1a1a1a;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: var(--fm);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  border-left: 3px solid var(--gold-3);
  z-index: 9999;
  white-space: nowrap;
  transition: transform .28s, opacity .28s;
  opacity: 0;
}

#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ════════════ MODAL ════════════ */
.moverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.moverlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #fff;
  border-radius: 14px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 460px;
  width: 90%;
  position: relative;
  transform: scale(.93);
  transition: transform .25s;
}

.moverlay.open .modal {
  transform: scale(1);
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  transition: color .18s;
  line-height: 1;
}

.modal-x:hover {
  color: #1a1a1a;
}

.modal h3 {
  font-family: var(--fm);
  font-weight: 800;
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: .4rem;
  line-height: 1.2;
}

.modal p.mdesc {
  font-family: var(--fm);
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.mtext {
  font-family: var(--fm);
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mlist {
  font-family: var(--fm);
  font-size: 13px;
  color: #555;
  line-height: 2;
  padding-left: 1.4rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.mform {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mform input,
.mform textarea {
  font-family: var(--fm);
  font-size: 14px;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  color: #1a1a1a;
  transition: border-color .2s;
  width: 100%;
}

.mform input:focus,
.mform textarea:focus {
  border-color: var(--gold-3);
}

.mform textarea {
  resize: vertical;
  min-height: 80px;
}

.mform-btn {
  font-family: var(--fm);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(180deg, #E8C547, #C4920A);
  color: #fff;
  padding: .8em;
  border-radius: 8px;
  transition: opacity .18s;
  margin-top: .3rem;
  width: 100%;
  border: none;
  cursor: pointer;
}

.mform-btn:hover {
  opacity: .87;
}

/* ════════════ RESPONSIVE ════════════ */

/* ── Tablet largo ── */
@media (max-width: 1100px) {
  .tipos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-photo-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ── Tablet ── */
@media (max-width: 860px) {
  .hero__fade {
    background: linear-gradient(to bottom, #f7f0e7 0%, #f7f0e7 28%, rgba(247, 240, 231, .7) 50%, transparent 100%);
  }

  .hero__bg {
    object-position: 70% center;
    opacity: .5;
  }

  .hero__content {
    max-width: 100%;
  }

  .pearl-grid,
  .curadoria-grid {
    grid-template-columns: 1fr;
  }

  /* Security: empilha texto + imagem */
  .security-grid {
    grid-template-columns: 1fr;
  }

  .pearl-deco {
    display: none;
  }

  .curadoria-img-col {
    max-width: 500px;
    margin: 0 auto;
  }

  .feats-grid {
    grid-template-columns: 1fr;
  }

  .auth-cards {
    grid-template-columns: 1fr;
  }

  /* Footer 2 colunas em tablet */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  section {
    padding: 60px 0 !important;
  }

  .container {
    padding: 0 20px; /* Padding fixo e seguro para mobile */
  }

  /* Carrosséis Mobile via Scroll Snap */
  .tipos-grid,
  .auth-cards,
  .feats-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 1rem !important;
    padding: 1rem 1.5rem !important;
    margin: 0 -1.5rem !important; /* Estende até a borda da tela */
    scrollbar-width: none; /* Firefox */
  }

  .tipos-grid::-webkit-scrollbar,
  .auth-cards::-webkit-scrollbar,
  .feats-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .tipo-card,
  .auth-card,
  .feat-card {
    flex: 0 0 82%; /* Mostra parte do próximo card para indicar swipe */
    scroll-snap-align: center;
    margin-bottom: 0 !important;
  }

  /* Ajustes específicos por seção */
  .tipos-header, 
  .auth-header, 
  .feats-header {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .feats-title-brand {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

  .hero {
    background-position: 95% center !important;
    background-size: cover;
    padding-top: 5rem; /* Mais espaço para o logo no topo */
  }

  .hero__bg {
    opacity: 0.8 !important; /* Aumenta visibilidade da Sandra */
    object-position: 95% center !important;
    filter: brightness(1.1);
  }

  .hero__fade {
    background: linear-gradient(to bottom, rgba(247, 240, 231, 0.7) 0%, rgba(247, 240, 231, 0.3) 100%) !important;
  }

  .hero__title {
    font-size: clamp(2.4rem, 9vw, 3.2rem) !important;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    max-width: 100% !important;
  }

  .hero__title br {
    display: none !important;
  }

  .hero__arrow {
    display: none !important;
  }

  .hero__subtitle-row {
    margin-bottom: 1rem;
  }

  .hero__desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero__logo {
    margin-bottom: 2rem;
  }

  /* Seção Segurança Mobile */
  .security-sec {
    min-height: auto;
    position: relative; /* Garantia de contexto de posicionamento */
    background-position: 75% center !important;
    background-size: cover;
  }

  .security-img-col {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .security-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 80% center !important;
  }

  .security-grid {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
  }


.security-text {
    text-align: left !important;
    padding: 0 1.25rem;
    color: #fff;
  }
  .security-list {
    padding-left: 0 !important;
    margin: 1.25rem 0 1.5rem !important;
  }
  .security-list li {
    font-size: 0.875rem !important;
    padding: 0.45rem 0;
    border-bottom: none !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 0.5rem !important;
  }
  .security-sec .btn {
    display: inline-flex !important;
    margin: 0 !important;
    width: auto !important;
  }


  .curadoria-sec {
    padding-bottom: 0 !important;
  }

  /* Curadoria Mobile: Imagem compacta */
  .curadoria-img-col {
    max-height: 45vh;
    overflow: hidden;
    margin-bottom: 0;
  }

  .curadoria-text {
    padding-top: 2rem;
  }

  .curadoria-img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* CTA Mobile */
  .cta-bg {
    opacity: 0.45; /* Leve ajuste de opacidade para mobile */
  }

  .cta-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    padding: 0;
  }

  .btn--cta {
    width: 100%;
    justify-content: center;
  }

  .auth-ctas {
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 5rem;
  }

  .auth-ctas .btn {
    width: 100%;
    min-width: 0;
    font-size: 0.85rem;
  }

  /* Footer 1 coluna */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-newsletter {
    max-width: 100%;
    justify-content: center !important;
  }

  /* Ajustes de Harmonia e Espaçamento Final */
  footer {
    margin-top: 0 !important; /* Espaço ajustado para melhor transição */
    padding-top: 3.5rem !important;
  }

  .cta-sec {
    padding: 4.5rem 0 !important;
  }

  .footer-col, .footer-brand {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-logo {
    margin: 0 auto 1rem !important;
  }

  .footer-col-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .pearl-img-col {
    display: block !important;
    margin-bottom: 2rem !important;
    width: 100vw !important; /* Garante que o container ocupe a largura toda para centralizar */
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .pearl-circle {
    width: 100% !important;
    display: block;
  }

  .pearl-sec .fill-img {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .pearl-model-img {
    width: 90% !important;
    margin: 0 auto !important;
    max-height: 55vh !important;
    object-fit: contain !important; /* Evita cortes indesejados ao centralizar */
  }

  /* Shell divider: centralizar em mobile */
  .shell-deco-icon {
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    width: clamp(110px, 35vw, 150px);
  }

  .chest-deco {
    bottom: -6rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 180px !important;
    z-index: 100 !important;
  }
}