/* ===========================
   VARIÁVEIS GLOBAIS
=========================== */
:root {
  --dark: #14182A;
  --gold: #E1D0A5;
  --white: #ffffff;
  --bg-bege: #f9f6ef;
  --bg-card: #ffffff;
  --shadow-soft: 0 20px 40px rgba(20, 24, 42, 0.12);
  --radius: 12px;
}

/* ===========================
   RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  font-family: "Raleway", sans-serif;
  background: var(--white);
  color: var(--dark);
}

/* ===========================
   HERO
=========================== */
.hero-premium {
  position: relative;
  min-height: 90vh;
  background: url("../img/hero.jpg") center 60% / cover no-repeat;
  color: var(--gold);
  padding-bottom: 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 24, 42, 0.92),
    rgba(20, 24, 42, 0.75) 60%,
    rgba(20, 24, 42, 0.6)
  );
}

/* ===========================
   NAVBAR
=========================== */
.premium-nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 70px;
}

.logo {
  height: 210px;
  width: auto;
}

.premium-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.premium-nav ul li a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-radius: 6px;
  transition: 0.25s ease;
}

.premium-nav ul li a:not(.btn) {
  border: 1px solid rgba(225, 208, 165, 0.55);
}

.premium-nav ul li a:not(.btn):hover {
  background: rgba(225, 208, 165, 0.18);
  transform: translateY(-1px);
}

.premium-nav ul li a.btn {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.premium-nav ul li a.btn:hover {
  background: #d6c395;
}

/* ===========================
   BUTTON GLOBAL
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  min-height: 54px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dark) !important;
  background: linear-gradient(180deg, #e9d9b3, var(--gold));
  border-radius: 10px;
  transition: 0.25s ease;
}

.btn:hover {
  background: linear-gradient(180deg, var(--gold), #d6c395);
}

.btn:active {
  transform: scale(0.96);
}

/* ===========================
   HERO CONTENT
=========================== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 60px 90px;
}

.hero-content h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 56px;
  margin-bottom: 28px;
  color: var(--gold);
}

.hero-content p,
.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: #f2f2f2;
  margin-bottom: 50px;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 20px;
  color: #e6d8b5;
}

/* ===========================
   SEÇÕES PADRÃO
=========================== */
.section {
  padding: 80px 70px;
  background: var(--gold);
}

.section h2 {
  font-family: "Libre Baskerville", serif;
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

/* ===========================
   SOBRE
=========================== */
.section-sobre {
  background: var(--gold);
}

.sobre-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.sobre-destaque {
  background: rgba(20, 24, 42, 0.06);
  padding: 32px;
  border-left: 4px solid var(--dark);
}

.sobre-destaque h3 {
  font-family: "Libre Baskerville", serif;
  margin-bottom: 18px;
}

.sobre-destaque li {
  margin-bottom: 12px;
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}

.sobre-destaque li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--dark);
}

/* ===========================
   ÁREAS DE ATUAÇÃO
=========================== */
.cards-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.area-card {
  background: #f5ebc8;
  border-radius: 16px;
  border: 1.5px solid var(--dark);
  padding: 42px 36px;
  transition: 0.3s ease;
  box-shadow: 0 16px 32px rgba(20, 24, 42, 0.14);
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 24, 42, 0.22);
}

/* ===========================
   COMO FUNCIONA — COMPLETO
=========================== */
.como-funciona-premium {
  background: var(--gold);
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.como-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.como-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
}

.como-container h2 {
  font-size: 40px;
  margin-bottom: 100px;
  color: #14182A;
}

.como-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.como-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 72px 32px 42px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: 0.3s ease;
}

.como-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(20, 24, 42, 0.18);
}

/* ===========================
   ÍCONES – PREMIUM
=========================== */
.como-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
  overflow: hidden;
}

.como-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.como-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===========================
   FAQ
=========================== */
.faq-section {
  background: var(--dark);
  padding: 90px 20px;
  position: relative;
  z-index: 2;
}

.faq-label,
.faq-section h2 {
  color: var(--gold);
}

.faq-item {
  border: 1px solid rgba(225, 208, 165, 0.28);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 26px 30px;
  color: var(--gold);
  background: transparent;
  border: none;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease, padding-left 0.25s ease;
}

.faq-question:hover {
  padding-left: 34px;
  color: #f1e4c2;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.45s ease, opacity 0.35s ease,
    transform 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
  padding-top: 18px;
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
}

.faq-answer p {
  line-height: 1.75;
  color: rgba(225, 208, 165, 0.9);
}

/* CTA dentro do FAQ */
.faq-cta {
  margin-top: 80px;
  padding-top: 30px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(225, 208, 165, 0.3);
  text-align: center;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: linear-gradient(180deg, #0f1428, var(--dark));
  color: var(--gold);
  padding: 50px 20px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* PARTE INFERIOR */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(225, 208, 165, 0.25);
  padding-top: 16px;
  font-size: 13px;
}

/* TEXTO LEGAL */
.footer-legal {
  color: rgba(225, 208, 165, 0.75);
  max-width: 70%;
}

/* DESENVOLVIDO POR */
.footer-dev {
  color: rgba(225, 208, 165, 0.6);
  font-size: 12px;
  white-space: nowrap;
}

.footer-dev strong {
  color: var(--gold);
  font-weight: 600;
}


/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 1200px) {
  .cards-areas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-nav {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .premium-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    height: 140px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .cards-areas {
    grid-template-columns: 1fr;
  }

  .sobre-container {
    grid-template-columns: 1fr;
  }

  .como-grid {
    grid-template-columns: 1fr;
  }
}
.artigo-bloco {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.artigo-bloco:last-child {
  border-bottom: none;
}
.footer-brand span {
  display: inline-block;
  margin-right: 12px;
}

.footer-social {
  display: inline-block;
}
.footer-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: inherit;
  color: inherit;
}

.footer-instagram svg {
  fill: currentColor;
  opacity: 0.8;
}

.footer-instagram a {
  color: inherit;
  text-decoration: none;
}

.footer-instagram a:hover {
  text-decoration: underline;
}
.footer-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;

  /* AJUSTE FINO DE ALINHAMENTO */
  padding-left: 2px;
}



