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

:root {
  --bege:          #F5F0E8;
  --bege-escuro:   #EDE6D6;
  --azul:          #0D2340;
  --azul-medio:    #1A3A5C;
  --dourado:       #C9A84C;
  --dourado-claro: #E2C97E;
  --branco:        #FFFFFF;
  --texto-body:    #2C3E50;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bege);
  color: var(--azul);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   SEÇÃO 1 — HERO
============================== */
#hero {
  min-height: 100vh;
  background-color: var(--bege);
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
}

/* Linha dourada decorativa no topo */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  z-index: 2;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* --- Coluna esquerda --- */
.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

.hero-logo {
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background-color: var(--dourado);
  margin-bottom: 32px;
}

.hero-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--azul);
  line-height: 1.85;
  margin-bottom: 20px;
}

.hero-tese {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--azul);
  line-height: 1.6;
  margin-top: 12px;
  padding-left: 20px;
  border-left: 2px solid var(--dourado);
}


.hero-cta {
  display: inline-block;
  margin-top: 36px;
  background-color: transparent;
  border: 1px solid var(--dourado);
  color: var(--azul);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.hero-cta:hover {
  background-color: var(--dourado);
  color: var(--branco);
}

/* --- Coluna direita --- */
.hero-image-wrap {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-photo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 2px;
  outline: 1px solid var(--dourado-claro);
  outline-offset: 8px;
}

/* ==============================
   RESPONSIVE — TABLET
============================== */
@media (max-width: 900px) and (min-width: 481px) {
  .hero-inner {
    flex-direction: column;
    gap: 48px;
  }

  .hero-image-wrap {
    justify-content: center;
    order: -1;
  }

  .hero-photo {
    max-width: 360px;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
  }
}

/* ==============================
   RESPONSIVE — MOBILE
   Foto como background-image + película bege
============================== */
@media (max-width: 480px) {

  /* Esconde a imagem normal — a foto entra via background-image no #hero pelo JS */
  .hero-image-wrap {
    display: none;
  }

  #hero {
    padding: 0;
    min-height: 100vh;
    display: block;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  /* Película bege semitransparente */
  #hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(237, 230, 214, 0.83);
    z-index: 0;
  }

  /* Conteúdo acima da película */
  .hero-inner {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 0;
    padding: 72px 6% 60px;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
  }

  .hero-logo {
    max-width: 280px;
    margin-bottom: 28px;
  }

  .hero-body {
    font-size: 0.95rem;
  }

  .hero-tese {
    font-size: 1.1rem;
  }
}


/* ==============================
   DIVISÓRIA ENTRE SEÇÕES
============================== */
.section-divider {
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado-claro), transparent);
  margin: 0 auto;
  opacity: 0.6;
}

/* ==============================
   SEÇÃO 2 — HOME STAGING AFETIVO
============================== */
#staging-afetivo {
  position: relative;
  overflow: hidden;
  padding: 120px 5%;
}

.staging-bg {
  position: absolute;
  inset: -30%;
  background-image: url('images/sala-secao-2.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.staging-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(237, 230, 214, 0.88);
  z-index: 1;
}

.staging-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Header */
.staging-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.staging-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
}

.staging-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.2;
}

.staging-divider {
  width: 48px;
  height: 1px;
  background-color: var(--dourado);
}

.staging-intro {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--azul-medio);
  max-width: 520px;
  text-align: center;
  line-height: 1.8;
}

/* Cards */
.staging-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

.staging-card {
  background-color: rgba(245, 240, 232, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.staging-card-icon {
  font-size: 1.4rem;
  color: var(--dourado);
  line-height: 1;
}

.staging-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--azul);
  line-height: 1.3;
}

.staging-card-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--azul-medio);
  line-height: 1.8;
}

/* Closing */
.staging-closing {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
}

.staging-closing-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--azul);
  line-height: 1.85;
}

.staging-closing-destaque {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: var(--azul);
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px) {
  .staging-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .staging-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  #staging-afetivo {
    padding: 80px 6%;
  }

  .staging-title {
    font-size: 1.9rem;
  }

  .staging-closing-destaque {
    font-size: 1.2rem;
  }
}

/* ==============================
   SEÇÃO 3 — PARA QUEM É
============================== */
#para-quem-e {
  padding: 120px 5%;
  background-color: var(--bege-escuro);
}

.pqe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* Coluna esquerda — foto */
.pqe-left {
  flex: 0 0 380px;
  position: sticky;
  top: 40px;
}

.pqe-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
  outline: 1px solid var(--dourado-claro);
  outline-offset: 8px;
}

/* Coluna direita — conteúdo */
.pqe-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pqe-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 12px;
  display: block;
}

.pqe-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.2;
  margin-bottom: 20px;
}

.pqe-divider {
  width: 48px;
  height: 1px;
  background-color: var(--dourado);
  margin-bottom: 28px;
}

.pqe-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--azul-medio);
  line-height: 1.85;
  margin-bottom: 48px;
}

/* Cards dos perfis */
.pqe-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pqe-card {
  padding: 28px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pqe-card:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.pqe-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--azul);
  line-height: 1.3;
}

.pqe-card-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--azul-medio);
  line-height: 1.85;
}

/* Responsivo */
@media (max-width: 900px) {
  .pqe-inner {
    flex-direction: column;
    gap: 48px;
  }

  .pqe-left {
    flex: none;
    width: 100%;
    position: static;
  }

  .pqe-photo {
    height: 360px;
  }

  .pqe-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  #para-quem-e {
    padding: 80px 6%;
  }

  .pqe-photo {
    height: 280px;
  }

  .pqe-title {
    font-size: 1.9rem;
  }
}

/* ==============================
   SEÇÃO 4 — ENTREGÁVEIS
============================== */
#entregaveis {
  padding: 120px 5%;
  background-color: var(--bege);
}

.ent-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ent-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
}

.ent-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.2;
  max-width: 600px;
}

.ent-divider {
  width: 48px;
  height: 1px;
  background-color: var(--dourado);
}

/* Item alternado */
.ent-item {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.ent-item:last-child {
  margin-bottom: 0;
}

.ent-item--reverse {
  flex-direction: row-reverse;
}

/* Imagem */
.ent-img-wrap {
  flex: 1;
  position: relative;
}


.ent-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}






/* Conteúdo */
.ent-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ent-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dourado-claro);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.ent-item-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--azul);
  line-height: 1.25;
  margin-bottom: 16px;
}

.ent-item-divider {
  width: 36px;
  height: 1px;
  background-color: var(--dourado);
  margin-bottom: 20px;
}

.ent-item-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--azul-medio);
  line-height: 1.85;
  margin-bottom: 24px;
}

.ent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ent-list li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--azul);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.ent-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--dourado);
}

/* Responsivo */
@media (max-width: 900px) {
  .ent-item,
  .ent-item--reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 72px;
  }

  .ent-title {
    font-size: 2.2rem;
  }

  .ent-item-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  #entregaveis {
    padding: 80px 6%;
  }

  .ent-title {
    font-size: 1.9rem;
  }

  .ent-number {
    font-size: 2.8rem;
  }
}


/* ==============================
   DIVISÓRIA ESCURA
============================== */
.section-divider-dark {
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
  margin: 0 auto;
}

/* ==============================
   SEÇÃO 4B — ÁREA DE MEMBROS
============================== */
#area-membros {
  background-color: #0D2340;
  padding: 120px 5%;
}

.am-header {
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.am-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
}

.am-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--branco);
  line-height: 1.2;
}

.am-divider {
  width: 48px;
  height: 1px;
  background-color: var(--dourado);
}

.am-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  text-align: center;
}

/* Grid de cards */
.am-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.am-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.am-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.am-card-body {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.04);
}

.am-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dourado-claro);
  line-height: 1.3;
}

.am-card-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

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

  .am-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  #area-membros {
    padding: 80px 6%;
  }

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

  .am-title {
    font-size: 1.9rem;
  }
}

/* ==============================
   SEÇÃO 5 — CERTIFICADO MEC
============================== */
#certificado {
  background-color: var(--bege-escuro);
  padding: 120px 5%;
}

.cert-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Conteúdo */
.cert-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cert-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 12px;
}

.cert-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--azul);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cert-divider {
  width: 48px;
  height: 1px;
  background-color: var(--dourado);
  margin-bottom: 28px;
}

.cert-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--azul-medio);
  line-height: 1.85;
  margin-bottom: 20px;
}

.cert-destaque {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--dourado);
  line-height: 1.6;
  margin-top: 8px;
  padding-left: 20px;
  border-left: 2px solid var(--dourado);
}

/* Selos */
.cert-selos {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}

/* Responsivo */
@media (max-width: 900px) {
  .cert-inner {
    flex-direction: column;
    gap: 48px;
  }

  .cert-selos {
    width: 100%;
  }

  .cert-img {
    max-width: 260px;
    margin: 0 auto;
  }

  .cert-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  #certificado {
    padding: 80px 6%;
  }

  .cert-title {
    font-size: 1.8rem;
  }

  .cert-destaque {
    font-size: 1.1rem;
  }
}

/* ==============================
   SEÇÃO — FRASES DE IMPACTO
============================== */
#frases {
  background-color: #0D2340;
  padding: 120px 5%;
  position: relative;
}

#frases::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

#frases::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.frases-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.frases-slider {
  width: 100%;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frase-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.frase-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.frase-texto {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--branco);
  line-height: 1.65;
  text-align: center;
}

.frase-texto::before {
  content: '\201C';
  color: var(--dourado);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 6px;
  font-style: normal;
}

.frase-texto::after {
  content: '\201D';
  color: var(--dourado);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6rem;
  margin-left: 6px;
  font-style: normal;
}

/* Dots de navegação */
.frases-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.frase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--dourado);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.frase-dot.active {
  background: var(--dourado);
  transform: scale(1.3);
}

/* Responsivo */
@media (max-width: 900px) {
  .frase-texto {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  #frases {
    padding: 80px 6%;
  }

  .frase-texto {
    font-size: 1.2rem;
  }

  .frases-slider {
    min-height: 260px;
  }
}

/* ==============================
   SEÇÃO — OFERTA
============================== */
#oferta {
  background-color: var(--bege);
  padding: 120px 5%;
  position: relative;
}

#oferta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.oferta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Header */
.oferta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.oferta-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
}


.oferta-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
   filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
}

.oferta-divider {
  width: 48px;
  height: 1px;
  background-color: var(--dourado);
}  

/* Body — preço + depoimento */
.oferta-body {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Preço */
.oferta-preco-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.oferta-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--azul-medio);
  margin-bottom: 12px;
}

.oferta-preco {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.oferta-cifrao {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dourado);
  margin-top: 12px;
  filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
}

.oferta-valor {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--dourado);
  line-height: 1;
  filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
}

.oferta-centavos {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dourado);
  margin-top: 12px;
  filter: drop-shadow(0px 0px 1px rgba(13, 35, 64, 1));
}


.oferta-nota {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--azul-medio);
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.6;
}

.oferta-cta {
  display: inline-block;
  background-color: var(--dourado);
  color: var(--azul);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 18px 40px;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.oferta-cta:hover {
  background-color: var(--dourado-claro);
  transform: translateY(-2px);
}

/* Depoimento */
.oferta-depoimento {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oferta-depoimento-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
}

.oferta-depoimento-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Entregáveis incluídos */
.oferta-entregaveis {
  width: 100%;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.oferta-entregaveis-titulo {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--azul-medio);
}

.oferta-lista {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.oferta-lista li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--azul);
  padding-left: 18px;
  position: relative;
}

.oferta-lista li::before {
  content: '';
  position: absolute;
}