:root {
  --dark: #0e1b2a;
  --gold: #c7a76c;
  --light: #f5f5f5;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* LOGO */
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;

  color: #37e2d5; /* verde água premium */
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* LINKS DO MENU */
.menu a {
  position: relative;

  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;

  color: #ffffff;
  text-decoration: none;

  padding: 6px 0;
  transition: opacity 0.3s ease;
}

/* HOVER SIMPLES E ELEGANTE */
.menu a:hover {
  opacity: 0.75;
}

/* LINHA INFERIOR ATIVA */
.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;

  width: 0;
  height: 2px;

  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* SOCIAL ICONS */
.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BOTÕES SOCIAIS */
.header-social a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;

  color: #0b1f2e;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER SOCIAL */
.header-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .menu {
    gap: 24px;
  }

  .menu a {
    font-size: 14px;
  }
}


/* HERO */
.hero {
  background: linear-gradient(120deg, #0e1b2a, #1f344f);
  color: #fff;
  padding: 140px 0;
}

.hero-tag {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin: 20px 0;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 15px 36px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #b9985a;
}

/* SECTIONS */
.section-tag {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 30px;
}

/* ÁREAS */
.areas {
  background: var(--light);
  padding: 110px 0;
}

.areas h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 15px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

/* DIFERENCIAIS */
.diferenciais {
  padding: 110px 0;
}

.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.item span {
  color: var(--gold);
  font-size: 28px;
  font-weight: 600;
}

.item h4 {
  font-family: 'Playfair Display', serif;
  margin: 10px 0;
}

/* ARTIGOS */
.artigos {
  padding: 110px 0;
}

.posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.post {
  border: 1px solid #eee;
  padding: 35px;
  transition: 0.3s;
}

.post:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.post h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.post a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}


.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 34px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* SEÇÃO */
.reuniao-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #0e1b2a, #020617);
}

/* GRID */
.reuniao-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.reuniao-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #b9985a;
}

.reuniao-text span {
  color: var(--blue);
}

.reuniao-text p {
  color: var(--light);
  max-width: 520px;
}

/* FORM */
.reuniao-form {
  background: linear-gradient(180deg, #0f172a, #020617);
  border: 1px solid #b9985a;
  border-radius: 18px;
  padding: 40px;
}

.reuniao-form h3 span {
  color: var(--blue);
}

.form-desc {
  font-size: 0.9rem;
  margin: 10px 0 20px;
  color: var(--light);
}

.reuniao-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reuniao-form input,
.reuniao-form select {
  background: #020617;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  outline: none;
  border-color: #b9985a;
}

.reuniao-form button {
  background: #b9985a;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

h3 {
  color: #b9985a;
}

.reuniao-form small {
  font-size: 0.75rem;
  color: #94a3b8;
}

.reuniao-form a {
  color: var(--blue);
  text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .reuniao-grid {
    grid-template-columns: 1fr;
  }

  .reuniao-text h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {

  /* trava a section */
  .cta-premium {
    padding: 64px 16px !important;
  }

  /* container sem interferência */
  .cta-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
    align-items: stretch !important;
    padding: 0 !important;
  }

  /* lado esquerdo */
  .cta-info {
    text-align: left !important;
  }

  .cta-info h2 {
    font-size: 26px !important;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  .cta-info li {
    font-size: 15px !important;
    line-height: 1.6;
  }

  /* card */
  .cta-form {
    width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 20px;
  }

  /* inputs */
  .cta-form input,
  .cta-form textarea {
    font-size: 14px !important;
    padding: 13px 14px !important;
  }

  /* botão */
  .cta-form button {
    width: 100%;
    font-size: 15px !important;
    padding: 14px !important;
  }
}
/* VOLTAR AO TOPO */
.voltar-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #132142, #0a0d18);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.voltar-topo:hover {
  background: #b9985a;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .voltar-topo {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 13px;
  }
}


/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f7f9;
  color: #1f2933;
}

.servicos-hero {
  background:
    linear-gradient(
      rgba(0, 3, 12, 0.85),
      rgba(0, 0, 0, 0.85)
    ),
    url("png.png") center/cover no-repeat;

  color: #fff;
  text-align: center;
  padding: 120px 20px;
}


.servicos-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.servicos-hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ABAS */
.tabs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.tabs .tab {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #1f2933;
  padding: 10px 4px;
  cursor: pointer;
  position: relative;
}

.tabs .tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #168992;
  transition: 0.3s ease;
}

.tabs .tab:hover::after,
.tabs .tab.active::after {
  width: 100%;
}

.tabs .tab.active {
  color: #000;
  font-weight: 600;
}

/* GRID SERVIÇOS */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.servico-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* NÚMERO */
.servico-num {
  font-size: 13px;
  font-weight: 600;
  color: #2dd4bf;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 14px;
}

/* TÍTULO */
.servico-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 14px;
  color: #0f172a;
}

/* TEXTO */
.servico-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6A6A6A;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .servicos-hero h1 {
    font-size: 32px;
  }

  .tabs {
    gap: 18px;
  }

  .tabs .tab {
    font-size: 14px;
  }
}

/* VOLTAR AO INÍCIO - UNDERLINE PREMIUM */
.voltar-inicio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #ffffff;
  text-decoration: none;

  padding-bottom: 4px;
  opacity: 0.9;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* LINHA EMBAIXO */
.voltar-inicio::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0%;
  height: 2px;
  background: #ffffff;

  transition: width 0.3s ease;
}

/* ÍCONE */
.voltar-inicio .icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* HOVER */
.voltar-inicio:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.voltar-inicio:hover::after {
  width: 100%;
}

.voltar-inicio:hover .icon {
  transform: translateX(-4px);
}

/* CONTAINER DA IMAGEM */
.servico-img {
  display: block;
  width: 100%;
  height: 220px; /* controla a altura */
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGEM */
.servico-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* corta sem deformar */
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER SUAVE (opcional) */
.servico-card:hover .servico-img img {
  transform: scale(1.05);
}
a {
  color: #000;
}

.leia-mais {
  color: #000;
}

/* ===============================
   FOOTER FAO — BLACK & GOLD
=============================== */

/* GARANTE TELA CHEIA */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

footer {
  min-height: 50vh;
  background: radial-gradient(circle at top, #0f2436 0%, #040b13 70%);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

p {
  display: block;
}

/* EFEITO DE LUZ SUAVE */
footer::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199,167,108,0.15), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

/* ================= FOOTER ================= */

/* CONTAINER PRINCIPAL */
footer .container {
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  padding: 110px 0 90px;
  align-items: flex-start;
}

/* LOGO */
.footer-logo {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 10px;
  color: #c7a76c;
  margin-bottom: 20px;
  margin-left: 2rem;
}

/* DESCRIÇÃO */
.footer-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #f9fafb;
  max-width: 360px;
  margin-left: 2rem;
}

/* TÍTULOS */
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f9fafb;
  margin-bottom: 34px;
  position: relative;
}

/* LINHA ELEGANTE */
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #c7a76c, transparent);
}

/* LISTAS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #c7a76c;
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* CONTATO */
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #f9fafb;
}

.footer-contact i {
  color: #c7a76c;
  font-size: 18px;
  margin-top: 4px;
  margin-left: -1rem;
}


/* ================= RESPONSIVO ================= */

/* NOTEBOOK / TABLET */
@media (max-width: 1024px) {
  footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 90px 20px 70px;
  }

  .footer-desc {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  footer .container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 20px 60px;
    text-align: center;
  }

  /* Centraliza tudo no mobile */
  .footer-col {
    align-items: center;
  }

  .footer-logo {
    font-size: 40px;
    letter-spacing: 6px;
  }

  .footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto;
  }

  .footer-col h4 {
    font-size: 17px;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li {
    font-size: 15px;
  }

  /* contato centralizado */
  .footer-contact p {
    justify-content: center;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 16px;
  }

  /* footer bottom */
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


.footer-bottom > div:nth-child(1) > a:nth-child(2) {
  color: #fff;
}

div.footer-col:nth-child(4) > p:nth-child(4) > a:nth-child(2) {
  color: #c7a76cc4;
}



/* BOTÃO */
.btn-premium {
  margin-top: 26px;
  display: inline-block;
  padding: 14px 42px;
  border-radius: 40px;
  background: linear-gradient(135deg, #c7a76c, #a88b55);
  color: #040b13;
  font-weight: 600;
  text-decoration: none;
}

/* IMAGEM */
.sobre-imagem img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   TABLET (<= 1024px)
=============================== */

@media (max-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sobre-texto {
    max-width: 100%;
    text-align: center;
  }

  .sobre-imagem {
    order: 2;
  }
}

/* ===============================
   MOBILE REAL (<= 600px)
=============================== */

@media (max-width: 600px) {
  footer .container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 20px 60px;
    text-align: left; /* ESQUERDA */
  }

  .footer-col {
    align-items: flex-start;
  }

  .footer-logo {
    font-size: 40px;
    letter-spacing: 6px;
  }

  .footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
  }

  .footer-col h4 {
    font-size: 17px;
  }

  /* linha do título volta pra esquerda */
  .footer-col h4::after {
    left: 0;
    transform: none;
  }

  /* listas à esquerda */
  .footer-col ul li {
    font-size: 15px;
  }

  /* contato à esquerda */
  .footer-contact p {
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
    margin: 0 0 16px;
  }

  /* footer bottom */
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }
}


/* Tag */
.sobre-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Título */
.sobre-title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Divisor */
.sobre-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #c9a24d, #e6c87a);
  margin: 0 auto 32px auto;
  border-radius: 10px;
}

/* Texto */
.sobre-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d6d9df;
  max-width: 720px;
  margin: 0 auto;
}

.sobre-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== RESPONSIVO ===== */

/* Tablets */
@media (max-width: 768px) {
  .sobre-premium {
    padding: 80px 20px;
  }

  .sobre-title {
    font-size: 32px;
  }

  .sobre-text {
    font-size: 17px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .sobre-premium {
    padding: 60px 16px;
  }

  .sobre-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .sobre-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .sobre-divider {
    width: 50px;
  }
}


/* ===== RESET BÁSICO ===== */
.header * {
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== HEADER ===== */
.header {
  width: 100%;
  background: #0b1324;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* CONTAINER */
.header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
}

/* FLEX */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #d6b36a;
  text-transform: uppercase;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LINKS */
.menu a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s ease;
}

/* LINHA INFERIOR */
.menu a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #d6b36a;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #ffffff;
}

.menu a:hover::before {
  width: 100%;
}

/* DESTAQUE CONTATO */
.menu a[href*="Contato"] {
  padding: 12px 22px;
  border: 1px solid #d6b36a;
  border-radius: 8px;
  color: #d6b36a;
  font-weight: 600;
}

.menu a[href*="Contato"]:hover {
  background-color: #d6b36a;
  color: #0b1324;
}

/* ===== RESPONSIVO ===== */

/* NOTEBOOK */
@media (max-width: 1024px) {
  .menu {
    gap: 28px;
  }

  .logo {
    font-size: 26px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .header .container {
    padding: 18px;
  }

  .menu {
    gap: 20px;
  }

  .menu a {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 560px) {
  .header-flex {
    flex-direction: column;
    gap: 16px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .menu a {
    font-size: 14px;
  }

  .menu a[href*="Contato"] {
    padding: 10px 18px;
  }
}

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* =========================
   SECTION
========================= */
.cta-premium {
  background: linear-gradient(180deg, #061826, #020c15);
  padding: 90px 20px;
}

/* =========================
   CONTAINER
========================= */
.cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LADO ESQUERDO
========================= */
.cta-info h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 35px;
  line-height: 1.3;
}

.cta-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-info li {
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
}

.cta-info span {
  margin-right: 10px;
  font-size: 18px;
}

/* =========================
   CARD FORM
========================= */
.cta-form {
  background: #f8fafc;
  padding: 55px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cta-form h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 30px;
  font-weight: 600;
}

/* =========================
   FORM
========================= */
.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.cta-form textarea {
  min-height: 140px;
  resize: none;
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

/* =========================
   BOTÃO
========================= */
.cta-form button {
  margin-top: 10px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-info h2 {
    font-size: 32px;
  }

  .cta-form {
    padding: 40px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

  /* trava a section */
  .cta-premium {
    padding: 64px 16px !important;
  }

  /* container sem interferência */
  .cta-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
    align-items: stretch !important;
    padding: 0 !important;
  }

  /* lado esquerdo */
  .cta-info {
    text-align: left !important;
  }

  .cta-info h2 {
    font-size: 26px !important;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  .cta-info li {
    font-size: 15px !important;
    line-height: 1.6;
  }

  /* card */
  .cta-form {
    width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 20px;
  }

  /* inputs */
  .cta-form input,
  .cta-form textarea {
    font-size: 14px !important;
    padding: 13px 14px !important;
  }

  /* botão */
  .cta-form button {
    width: 100%;
    font-size: 15px !important;
    padding: 14px !important;
  }
}



.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

.process-list span {
  min-width: 32px;
  height: 32px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* 🔒 impede quebrar no mobile */
}

.cta-trust {
  margin-top: 40px;
  padding-left: 12px;
  border-left: 3px solid #334155;
}

.cta-trust strong {
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
}

.cta-trust p {
  color: #94a3b8;
  font-size: 14px;
}

/* ===== FIX TOTAL SERVIÇOS ===== */

.servicos {
  padding: 100px 0;
  background: #fff;
}

/* container não pode ser flex */
.servicos .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: block !important;
}

/* GRID FORÇADO */
.servicos-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 40px;
  width: 100%;
}

/* CARD NÃO PODE TER WIDTH 100% */
.servico-card {
  width: auto !important;
  max-width: none !important;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  text-align: center;
}

/* ÍCONE */
.servico-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TÍTULO */
.servico-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

/* TEXTO */
.servico-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

/* BOTÃO */
.servicos-cta {
  display: inline-block;
  margin: 70px auto 0;
  padding: 15px 27px;
  background: #8c7b4f;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== SEÇÃO SERVIÇOS PREMIUM DARK ===== */

.servicos {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* container */
.servicos .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TAG */
.servicos-tag {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #8c7b4f;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: -0.7rem;
}

/* TÍTULO */
.servicos-subtitle {
  font-size: 34px;
  font-weight: 600;
  color: #000;
  margin-bottom: 70px;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.servicos-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

/* CARD */
.servico-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 33px 33px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: all 0.35s ease;
}

/* HOVER */
.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
}

/* ÍCONE */
.servico-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TÍTULO CARD */
.servico-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

/* TEXTO */
.servico-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #000000cf;
  font-family: 'Poppins', sans-serif;
  display: block;
}

/* CTA */
.servicos-cta {
  display: inline-block;
  margin-top: 80px;
  padding: 18px 55px;
  background: linear-gradient(135deg, #0d162b, #020617);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* CTA HOVER */
.servicos-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(103, 91, 177, 0.35);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servicos-subtitle {
    font-size: 28px;
  }
}

.artigos-premium {
  padding: 80px 0;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.artigos-header {
  text-align: center;
  margin-bottom: 40px;
}

.artigos-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.artigos-header p {
  color: #8a7a55;
  margin-top: 8px;
}

/* GRID */
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 320px;
  gap: 20px;
}

/* ARTIGO BASE */
.artigo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.artigo-imagem {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.artigo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.2)
  );
}

.artigo:hover .artigo-imagem {
  transform: scale(1.08);
}

.artigo-conteudo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.categoria {
  font-size: 12px;
  text-transform: uppercase;
  opacity: .9;
}

.artigo h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 8px 0;
}

.artigo time {
  font-size: 13px;
  opacity: .8;
}

/* TAMANHOS */
.artigo-grande {
  grid-column: span 1;
}

.artigo-pequeno {
  grid-column: span 1;
  grid-row: span 1;
}

/* LINHA DE BAIXO (3 COLUNAS) */
.artigos-grid article:nth-child(n+3) {
  height: 260px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .artigos-grid {
    grid-template-columns: 1fr;
  }
}


:root {
  --primary: #3ccfc4;
  --primary-dark: #2ab6ac;
  --text-dark: #0a2540;
  --text-muted: #6b7280;
  --gold: #9b8656;
  --bg-light: #f9fafb;
}

.portfolio {
  padding: 120px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 1.7rem;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

/* TEXTO */
.portfolio-texto .section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.portfolio-texto h2 {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 600;
}

.portfolio-texto .destaque {
  font-size: 19px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
}

.portfolio-texto p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 520px;
}

/* BOTÃO */
.btn-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 16px 48px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  box-shadow: 0 12px 30px rgba(12, 64, 60, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-portfolio:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(60, 207, 196, 0.45);
}

/* CONTAINER */
.portfolio-imagem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.portfolio-texto {
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .portfolio-texto {
    margin-top: 1rem;
  }
}


/* PADRÃO (DESKTOP) */
.portfolio-imagem img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER – SÓ DESKTOP */
@media (hover: hover) {
  .portfolio-imagem img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
  }
}

/* 📱 MOBILE – IMAGEM COMPLETA (SEM CORTE) */
@media (max-width: 557px) {
  .portfolio-imagem {
    padding: 0 17px;
  }

  .portfolio-imagem img {
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;   /* REMOVE o quadrado */
    border-radius: 10px;
  }
}

/* 📲 TABLET */
@media (min-width: 577px) and (max-width: 991px) {
  .portfolio-imagem img {
    max-width: 420px;
  }
}

/* 🖥️ DESKTOP GRANDE */
@media (min-width: 1400px) {
  .portfolio-imagem img {
    max-width: 620px;
  }
}

/* SHAPE FUNDO */
.portfolio-imagem .forma {
  position: absolute;
  width: 90%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 35%;
  z-index: 1;
  transform: rotate(-10deg);
}

/* PONTILHADO */
.portfolio-imagem::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  right: -30px;
  bottom: -30px;
  background-image: radial-gradient(#cfd8dc 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: .6;
  z-index: 0;
}

/* DESKTOP GRANDE */
@media (min-width: 1400px) {
  .portfolio-imagem {
    max-width: 600px;
  }

  .portfolio-imagem img {
    max-width: 460px;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .portfolio-imagem {
    min-height: 360px;
  }

  .portfolio-imagem img {
    max-width: 380px;
  }
}

/* MOBILE REAL */
@media (max-width: 768px) {

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 3.7rem;
  }

  .portfolio-texto {
    text-align: left;
    margin-top: -1rem;
  }

  /* CONTAINER DA IMAGEM */
  .portfolio-imagem {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0;
    display: block;
  }

  /* IMAGEM GRANDE E LIMPA */
  .portfolio-imagem img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }

  /* REMOVE SHAPE NO MOBILE */
  .portfolio-imagem .forma {
    display: none;
  }

  /* REMOVE PONTILHADO */
  .portfolio-imagem::after {
    display: none;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 0.8rem;
}

/* HEADER */
.header {
  background: #0b1b33;
  padding: 10px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.menu a {
  margin-left: 28px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
}

.menu a.ativo,
.menu a:hover {
  color: #d4af37;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero .tag {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #b08b3c;
  font-weight: 600;
}

.hero h1 {
  margin: 20px 0;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
}

.hero p {
  color: #fff;
  font-size: 1rem;
}

/* SERVIÇOS */
.servicos-premium {
  padding-bottom: 120px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 45px;
}

/* CARD */
.servico-card {
  background: #ffffff;
  padding: 30px 30px 30px 30px;
  border-radius: 10px 10px 10px 10px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.servico-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

/* DESTAQUE */
.servico-card.destaque {
  background: linear-gradient(145deg, #0b1b33, #132c55);
}

.servico-card.destaque h3,
.servico-card.destaque p {
  color: #ffffff;
}

/* ÍCONE */
.icone {
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f3e6a3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TEXTO */
.servico-card h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: #0b1b33;
}

.servico-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
}

/* BOTÃO */
.btn-servico {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #0b1b33, #1c3f7a);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-servico:hover {
  transform: scale(1.07);
}

/* BOTÃO DESTAQUE */
.servico-card.destaque .btn-servico {
  background: linear-gradient(135deg, #d4af37, #f3e6a3);
  color: #0b1b33;
}

/* FOOTER */
.footer {
  background: #0b1b33;
  padding: 35px 0;
  text-align: center;
  color: #ffffff;
  font-size: 0.85rem;
}

.servico-card {
  margin-top: 3rem;
}


/* RESET TOTAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS */
:root {
  --primary: #0b1c2d;
  --secondary: #102a43;
  --accent: #0b1c2d;
  --bg: #f4f6f9;
  --white: #ffffff;
  --text: #2d3748;
  --muted: #718096;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* CONTAINER */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: linear-gradient(145deg, #071a2f, #0b1c2d);
  padding: 10px 0 10px;
  text-align: center;
  color: var(--white);
}

.header h1 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.header p {
  margin-top: 8px;
  font-size: 1rem;
  opacity: 0.85;
}

/* CONTENT */
.content {
  background: var(--white);
  margin-top: -45px;
  padding: 48px 52px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 28, 45, 0.12);
}

/* SECTIONS */
.content section {
  margin-bottom: 36px;
}

.content section:last-child {
  margin-bottom: 0;
}

/* TITLES */
.content h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary);
  position: relative;
  padding-left: 12px;
}

.content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 70%;
  background: var(--accent);
  border-radius: 2px;
}

/* TEXT */
.content p {
  font-size: 0.98rem;
  margin-bottom: 10px;
  color: var(--text);
}

/* LINKS */
.content a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.content a:hover {
  border-color: var(--primary);
}

/* =========================
   FOOTER (CORRIGIDO REAL)
   ========================= */
.footer {
  background: linear-gradient(145deg, #071a2f, #0b1c2d);
  margin-top: 25px;        /* NADA de espaço gigante */
  padding: 30px 0;         /* ALTURA CONTROLADA */
  text-align: center;
}

/* texto do footer */
.footer p {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.2;
}

/* GARANTIA: footer não cresce */
.footer,
.footer * {
  min-height: unset !important;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .content {
    padding: 34px 24px;
    margin-top: -35px;
  }

  .content h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .content p {
    font-size: 0.95rem;
  }
}

/* === DESENVOLVIDO POR (CTA DISCRETO) === */
.footer-dev {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #cbd5e1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-dev a {
  color: #c7a76c;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: contents;
}

/* underline elegante */
.footer-dev a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #c7a76c;
  transition: width 0.3s ease;
}

.footer-dev a:hover::after {
  width: 100%;
}

/* leve brilho no hover */
.footer-dev a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 480px) {
  .footer-dev {
    font-size: 0.75rem;
  }
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #cfa24d; /* dourado jurídico */
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.3px;

  transition: all 0.3s ease;
}

.footer-map-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.map-icon {
  width: 20px; /* tamanho elegante */
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-map-link:hover .map-icon {
  opacity: 1;
  transform: scale(1.1);
}
