/* ============ FONTES DA MARCA ============ */
@font-face {
  font-family: 'Kurye';
  src: url('assets/fonts/Kurye-Light.otf') format('opentype');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arquitecta';
  src: url('assets/fonts/Arquitecta.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ============ VARIABLES & RESET ============ */
:root {
  /* Cores oficiais da marca Miquelini Arthuzo */
  --petrol-900: #012e33;   /* petróleo mais escuro (profundidade) */
  --petrol-800: #013a40;
  --petrol-700: #01464d;   /* PRINCIPAL #01464D */
  --petrol-600: #075a62;
  --petrol-500: #0a6b74;

  --sand-500: #c4bfac;     /* bege médio (hover) */
  --sand-400: #d6d2c3;     /* SECUNDÁRIA #D6D2C3 */
  --sand-300: #e2dfd4;
  --sand-100: #f2f0ea;     /* bege bem claro p/ seções */

  --mist-300: #cdd3da;     /* cinza-azulado médio */
  --mist-200: #e1e5ea;     /* TERCIÁRIA #E1E5EA */
  --mist-100: #eef1f4;

  /* Aliases semânticos (mantêm o restante do CSS funcionando) */
  --navy-900: var(--petrol-900);
  --navy-800: var(--petrol-800);
  --navy-700: var(--petrol-700);
  --navy-600: var(--petrol-600);
  --navy-50: var(--mist-100);

  /* Acento principal = PETRÓLEO (para fundos claros). Em fundos escuros, usa-se --sand-400 via overrides. */
  --gold-500: var(--petrol-700);
  --gold-400: var(--sand-400);
  --gold-300: var(--sand-300);
  --gold-100: var(--sand-100);
  --accent-dark: var(--sand-400); /* acento sobre fundo escuro */

  --cream: #f7f5f0;
  --white: #ffffff;
  --gray-900: #1d2b2c;
  --gray-700: #46585a;
  --gray-500: #7b8a8b;
  --gray-300: #c0c8c9;
  --gray-200: #dde3e3;
  --gray-100: #eef1f1;

  --shadow-sm: 0 2px 10px rgba(1, 46, 51, 0.06);
  --shadow-md: 0 8px 30px rgba(1, 46, 51, 0.10);
  --shadow-lg: 0 20px 60px rgba(1, 46, 51, 0.15);
  --shadow-gold: 0 10px 40px rgba(1, 70, 77, 0.18);

  --font-serif: 'Kurye', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Arquitecta', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; position: relative; }

@media (max-width: 768px) { .section { padding: 80px 0; } }

/* ============ OVERRIDES DE CONTEXTO ESCURO ============ */
/* Em fundos petróleo, o acento vira BEGE (sand) e botões ficam bege com texto petróleo. */
.navbar .gold,
.hero .gold,
.diferenciais .gold,
.cta-banner .gold,
.section-title.light .gold,
.footer .gold { color: var(--accent-dark); }

.navbar .btn-primary,
.hero .btn-primary,
.diferenciais .btn-primary,
.cta-banner .btn-primary {
  background: var(--sand-400);
  color: var(--petrol-700);
  box-shadow: 0 10px 30px rgba(1, 46, 51, 0.35);
}
.navbar .btn-primary:hover,
.hero .btn-primary:hover,
.diferenciais .btn-primary:hover,
.cta-banner .btn-primary:hover {
  background: var(--sand-300);
  box-shadow: 0 14px 40px rgba(1, 46, 51, 0.45);
}

/* Kurye/Arquitecta não têm variante itálica — neutraliza oblíquo sintético.
   A ênfase passa a vir da cor (acento) e do peso. */
em,
.gold,
.section-title em,
.hero-title em,
.hero-photo-quote p,
.sobre-experience strong,
.step-num,
.area-number,
.area-card .area-number { font-style: normal; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--navy-700);
}

.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-300); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.section-eyebrow.light { color: var(--gold-400); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
}

.section-header.center {
  text-align: center;
  margin-bottom: 70px;
}

.gold { color: var(--gold-500); font-style: italic; }
.lead { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 20px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn i { font-size: 1.15em; }

.btn-primary {
  background: var(--petrol-700);
  color: var(--cream);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--petrol-800);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(1, 70, 77, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(1, 46, 51, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(1, 46, 51, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

/* Logo em imagem (marca oficial) */
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.navbar.scrolled .logo-img { height: 40px; }

.logo-img-footer {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 560px) {
  .logo-img { height: 38px; }
  .navbar.scrolled .logo-img { height: 34px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a:not(.btn) {
  color: rgba(234, 237, 235, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links > a:not(.btn):hover { color: var(--gold-400); }

.nav-links > a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.nav-links > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  font-size: 1.7rem;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-900);
    padding: 20px 24px;
    transform: translateY(-200%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-toggle { display: block; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(214, 210, 195, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(214, 210, 195, 0.08), transparent 50%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 210, 195, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 210, 195, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
}

.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold-500);
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(234, 237, 235, 0.82);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(214, 210, 195, 0.18);
  max-width: 580px;
}

.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-400);
  line-height: 1;
}
.trust-item span {
  font-size: 0.82rem;
  color: rgba(234, 237, 235, 0.65);
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(214, 210, 195, 0.2);
}

/* Hero Visual — Photo */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(214, 210, 195, 0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 46, 51, 0.15) 0%, rgba(1, 46, 51, 0.85) 100%),
    linear-gradient(135deg, rgba(214, 210, 195, 0.1), transparent 60%);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(1, 46, 51, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(214, 210, 195, 0.3);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

.hero-card-emblem {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy-900);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(214, 210, 195, 0.4);
}

.hero-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
  margin-bottom: 2px;
}

.hero-photo-badge h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
}

.hero-photo-quote {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  background: rgba(1, 46, 51, 0.6);
  backdrop-filter: blur(14px);
  border-left: 3px solid var(--gold-500);
  border-radius: 8px;
}

.hero-photo-quote i {
  color: var(--gold-400);
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}

.hero-photo-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(214, 210, 195, 0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 3px; height: 8px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 980px) {
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: 24px 32px; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-photo-badge { padding: 10px 14px; gap: 10px; top: 16px; left: 16px; right: 16px; }
  .hero-card-emblem { width: 42px; height: 42px; font-size: 1.2rem; }
  .hero-photo-badge h3 { font-size: 0.95rem; }
  .hero-card-label { font-size: 0.55rem; }
  .hero-photo-quote { padding: 16px 18px; left: 16px; right: 16px; bottom: 16px; }
  .hero-photo-quote p { font-size: 0.92rem; }
}

/* ============ SOBRE ============ */
.sobre { background: var(--cream); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 50px; }
}

.sobre-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.8s ease;
}

.sobre-image:hover img { transform: scale(1.04); }

.sobre-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(1, 46, 51, 0.35) 100%),
    linear-gradient(135deg, rgba(214, 210, 195, 0.08), transparent 60%);
  pointer-events: none;
}

.sobre-visual {
  position: relative;
  padding: 30px;
}

.sobre-experience {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy-900);
  color: var(--cream);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(1, 46, 51, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(214, 210, 195, 0.4);
  z-index: 3;
}

.sobre-experience::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(214, 210, 195, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.sobre-experience strong {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-400);
  line-height: 1;
  font-style: italic;
}

.sobre-experience span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 237, 235, 0.7);
  line-height: 1.3;
  font-weight: 500;
}

.sobre-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(1, 46, 51, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  border: 1px solid var(--gray-200);
}

.sobre-badge i {
  font-size: 2rem;
  color: var(--gold-500);
}

.sobre-badge strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy-900);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.sobre-badge span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

@media (max-width: 560px) {
  .sobre-visual { padding: 20px; }
  .sobre-experience { padding: 14px 18px; gap: 10px; }
  .sobre-experience strong { font-size: 1.8rem; }
  .sobre-badge { padding: 14px 18px; gap: 10px; }
  .sobre-badge i { font-size: 1.5rem; }
  .sobre-badge strong { font-size: 1.05rem; }
}

.sobre-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-item i {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-100);
  color: var(--gold-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.value-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* ============ ÁREAS ============ */
.areas { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 980px) {
  .areas-grid { grid-template-columns: 1fr; }
}

.area-card {
  position: relative;
  background: var(--cream);
  padding: 0 0 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.area-card > *:not(.area-image):not(.area-icon):not(.area-number) {
  padding-left: 38px;
  padding-right: 38px;
}

.area-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 30px;
}

.area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
  transition: transform 0.8s ease, filter 0.5s ease;
}

.area-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 46, 51, 0.25), rgba(1, 46, 51, 0.6));
  pointer-events: none;
}

.area-card:hover .area-image img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 3;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}

.area-card:hover::before { transform: scaleX(1); }

.area-card-featured {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--cream);
  border-color: var(--gold-500);
}

.area-card-featured h3 { color: var(--cream); }
.area-card-featured p { color: rgba(234, 237, 235, 0.78); }
.area-card-featured .area-list li { color: rgba(234, 237, 235, 0.85); }
.area-card-featured .area-list i { color: var(--gold-400); }
.area-card-featured .area-link { color: var(--gold-400); }

.area-icon {
  position: relative;
  width: 64px;
  height: 64px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-top: -32px;
  margin-left: 38px;
  align-self: flex-start;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(214, 210, 195, 0.35);
}

.area-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-400);
  font-style: italic;
  z-index: 3;
  background: rgba(1, 46, 51, 0.75);
  backdrop-filter: blur(8px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(214, 210, 195, 0.5);
  letter-spacing: 0;
}

.area-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  margin-top: 18px;
}

.area-card p {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 24px;
}

.area-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.area-list i {
  color: var(--gold-500);
  font-size: 0.95rem;
  font-weight: bold;
}

.area-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.02em;
  transition: var(--transition);
  align-self: flex-start;
  width: auto;
}

.area-link:hover { gap: 14px; }

/* ============ DIFERENCIAIS ============ */
.diferenciais {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(214, 210, 195, 0.1), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(214, 210, 195, 0.07), transparent 50%);
  pointer-events: none;
}

.diferenciais .container { position: relative; z-index: 2; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 980px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
}

.diferencial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 210, 195, 0.18);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.diferencial:hover {
  background: rgba(214, 210, 195, 0.08);
  border-color: var(--gold-500);
  transform: translateY(-6px);
}

.diferencial i {
  font-size: 2.6rem;
  color: var(--gold-400);
  margin-bottom: 18px;
  display: inline-block;
}

.diferencial h4 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.diferencial p {
  font-size: 0.92rem;
  color: rgba(234, 237, 235, 0.7);
  line-height: 1.6;
}

/* ============ PROCESSO ============ */
.processo { background: var(--cream); }

.processo-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .processo-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}

.step {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--gold-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.55;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.6rem;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(214, 210, 195, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(234, 237, 235, 0.78);
  font-size: 1.02rem;
  max-width: 600px;
}

@media (max-width: 768px) {
  .cta-content { flex-direction: column; text-align: center; }
}

/* ============ CONTATO ============ */
.contato { background: var(--white); }

.contato-list {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-list li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contato-list i {
  width: 52px;
  height: 52px;
  background: var(--gold-100);
  color: var(--gold-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contato-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contato-list a {
  color: var(--navy-900);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.contato-list a:hover { color: var(--gold-500); }
.contato-list a:not([href]) { cursor: default; }
.contato-list a:not([href]):hover { color: var(--navy-900); }

.contato-social {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.contato-social a {
  width: 44px;
  height: 44px;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.contato-social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* Form */
.contato-form {
  background: var(--cream);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contato-form h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-row { margin-bottom: 18px; }

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 560px) {
  .form-row.two { grid-template-columns: 1fr; }
  .contato-form { padding: 32px 22px; }
}

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--navy-900);
  transition: var(--transition);
  font-family: var(--font-sans);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(214, 210, 195, 0.12);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  color: rgba(234, 237, 235, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h5 {
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 0.92rem;
  color: rgba(234, 237, 235, 0.65);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold-400); }

.footer-brand p {
  font-size: 0.93rem;
  margin: 18px 0 24px;
  max-width: 360px;
}

.logo-footer .logo-text,
.logo-footer .logo-mark { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(234, 237, 235, 0.5);
}

.footer-credit { font-style: italic; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: var(--transition);
}

.wa-float:hover { transform: scale(1.1); }

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SELECTION ============ */
::selection {
  background: var(--petrol-700);
  color: var(--cream);
}

/* ============ NEUTRALIZAÇÃO DE ITÁLICO (vence por ordem) ============ */
/* Kurye e Arquitecta não possuem variante itálica real. */
em,
.gold,
.section-title em,
.section-title.light em,
.hero-title em,
.hero-photo-quote p,
.sobre-experience strong,
.step-num,
.area-number,
.hero-card-label,
.metric strong { font-style: normal !important; }
