:root {
  /* Identidade visual */
  --navy: #0F2747;
  --navy-deep: #081B35;
  --gold: #C8A24D;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #f4f6f8;

  /* Tipografia */
  --text: #223448;
  --muted: #627182;

  /* Interface */
  --border: rgba(15, 39, 71, .10);
  --gold-soft: rgba(200, 162, 77, .18);
  --shadow: 0 16px 40px rgba(15, 39, 71, .10);
  --shadow-md: 0 12px 30px rgba(15, 39, 71, .08);

  /* Layout */
  --radius: 18px;
  --radius-md: 18px;
  --radius-lg: 24px;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #faf9f6;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid rgba(200, 162, 77, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: 96px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(15, 39, 71, 0.08);
  border-bottom: 1px solid rgba(15, 39, 71, 0.08);
}

.site-header {
  position: sticky;

  z-index: 30;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid rgba(15, 39, 71, 0.08);

}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  padding: 0.8rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 0 0.75rem 0;
  z-index: 50;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
  min-height: 95px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--navy);
}

.brand img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.brand strong {
  color: var(--gold);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.site-nav a.is-active {
  color: var(--navy);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.footer-link:hover {
  color: var(--navy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  line-height: 1.13;
  margin: 0 0 0.8rem;
}

h1 {

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(2.8rem, 5vw, 4.3rem);

  font-weight: 700;

  line-height: 1.05;

  letter-spacing: -.02em;

  margin-bottom: 1rem;

  color: var(--navy);

}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.section-heading p,
.card p,

.hero {
  padding: 3rem 0 4rem;
}

.hero-subtitle {

  max-width: 620px;

  font-size: 1.18rem;

  line-height: 1.9;

  color: var(--muted);

  margin-top: .5rem;

  margin-bottom: 2rem;

}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 1rem 2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 39, 71, .18);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 39, 71, 0.16);
}

.btn-primary:hover {

  background: var(--gold);

  color: var(--navy);

  transform: translateY(-4px);

  box-shadow: 0 22px 45px rgba(200, 162, 77, .30);

}

.btn-secondary:hover {

  border-color: var(--gold);

  color: var(--navy);

  box-shadow: 0 18px 35px rgba(15, 39, 71, .12);

}

.btn-small {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.header-cta {
  white-space: nowrap;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
}

.hero-highlights li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.16);
}

.hero-visual {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  gap: 24px;

  width: 100%;

}

.hero-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(15, 39, 71, .08);
  box-shadow: var(--shadow);
}

.hero-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: var(--surface-alt);
  border: 1px solid rgba(15, 39, 71, .08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-main-button {

  padding: 1.15rem 2.3rem;

  font-size: 1rem;

  border-radius: 14px;

  letter-spacing: .02em;

}

.hero-main-button:hover {

  transform: translateY(-3px);

}

.hero-image-card {

  overflow: hidden;

  border-radius: 28px;

  background: white;

  box-shadow: 0 30px 70px rgba(15, 39, 71, .10);

  border: 1px solid rgba(15, 39, 71, .08);

}

.hero-image-card img {

  width: 100%;

  display: block;

  transition: .45s;

}

.hero-image-card:hover img {

  transform: scale(1.03);

}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.differential-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.image-card {
  padding: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1.5rem;
  border-radius: 20px;
  transition: .3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(15, 39, 71, .08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

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

/* SEÇÃO: O ESCRITÓRIO */
.about-section {
  max-width: 960px;
}

.about-content {
  display: grid;
  gap: 1.2rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-content p {
  color: var(--muted);
  margin: 0;
}

.about-content strong {
  color: var(--navy);
  font-weight: 600;
}

/* SEÇÃO: DIFERENCIAIS */
.differentials-section {
  max-width: 1160px;
}

.differential-card {
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  transition: .35s ease;
}

.differential-card:hover {
  transform: translateY(-6px);
}

.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  color: var(--gold);
  stroke-width: 1.5;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.differential-card h3 {
  margin-top: 0.5rem;
}

/* SEÇÃO: ÁREAS DE ATUAÇÃO */
.areas-section {
  max-width: 1160px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.4rem;
  position: relative;
  transition: .3s ease;
}

.area-card:hover {
  transform: translateY(-6px);
}

.area-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  stroke-width: 1.5;
}

.area-icon svg {
  width: 100%;
  height: 100%;
}

.area-card h3 {
  margin-top: 0;
}

.area-card a {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
}

/* SEÇÃO: COMO FUNCIONA */
.process-section {
  max-width: 1160px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  transition: .3s ease;
}

.step-item:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(200, 162, 77, 0.20);
}

.step-item h4 {
  font-size: 1.05rem;
  margin: 0.8rem 0 0.5rem;
  color: var(--navy);
}

.step-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.step-connector {
  display: none;
}

/* SEÇÃO: PERGUNTAS FREQUENTES */
.faq-section {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 22, 45, 0.04);
  transition: .3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '+ ';
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

.faq-item[open] summary::before {
  content: '− ';
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--gold);
}

/* SEÇÃO: CONTATO */
.contact-section {
  width: 100%;
}

.contact-section > .container,
.contact-form {
  width: min(760px, calc(100% - 3rem));
  margin-left: auto;
  margin-right: auto;
}

.contact-form h3 {

  margin-top: 0;

  margin-bottom: 1.8rem;

  text-align: center;

  font-size: 2rem;
}

.contact-form ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-form {

  display: grid;

  gap: 1.2rem;

  padding: 2.8rem;

  background: #ffffff;

  border-radius: 24px;

  border: 1px solid rgba(15, 39, 71, .08);

  box-shadow:
    0 20px 60px rgba(15, 39, 71, .08);

}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
}

.contact-form label span {
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {

  width: 100%;

  padding: 16px 18px;

  border-radius: 14px;

  border: 1px solid #d9dee8;

  background: #fafbfd;

  transition: .30s;

  font-size: 1rem;

}

.contact-form input:focus,
.contact-form textarea:focus {

  outline: none;

  border-color: var(--gold);

  background: #fff;

  box-shadow: 0 0 0 4px rgba(200, 162, 77, .12);

}

.contact-form textarea {
  resize: vertical;
}

.contact-header {

  text-align: center;

  max-width: 680px;

  margin: 0 auto 40px;
}

.contact-header h2 {

  margin: .6rem 0 1rem;

  font-size: 2.2rem;

  color: var(--navy);

}

.contact-header p {

  color: var(--muted);

  line-height: 1.8;

}

.contact-header-icon {

  width: 82px;

  height: 82px;

  margin: 0 auto 22px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,
      rgba(200, 162, 77, .12),
      rgba(200, 162, 77, .24));

  border: 1px solid rgba(200, 162, 77, .30);

  box-shadow:
    0 10px 30px rgba(200, 162, 77, .12);

}

.contact-header-icon svg {

  width: 36px;

  height: 36px;

  color: var(--gold);

}

.form-description {

  text-align: center;

  color: var(--muted);

  margin-bottom: 2rem;

  line-height: 1.7;

}

.form-section {

  margin-bottom: 2rem;

}

.form-section h4 {

  margin-bottom: 1rem;

  color: var(--navy);

  font-size: 1.05rem;

  border-left: 4px solid var(--gold);

  padding-left: 12px;

}

.contact-form select {

  width: 100%;

  padding: 16px;

  border-radius: 14px;

  border: 1px solid rgba(15, 39, 71, .15);

  background: #fff;

  font-size: 1rem;

}

.contact-form select:focus {

  outline: none;

  border-color: var(--gold);

  box-shadow: 0 0 0 4px rgba(200, 162, 77, .12);

}

.form-message {
  min-height: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.5rem;
}

.form-submit {

  width: 100%;

  padding: 18px;

  font-size: 1rem;

  border-radius: 14px;
}

.site-footer {

  background: var(--navy);

  color: #fff;

  padding: 50px 0 0;

}

.site-footer .eyebrow,
.site-footer h3,
.site-footer .brand span {
  color: var(--gold-soft);
}

.site-footer p,
.site-footer .footer-link {
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {

  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 70px;

  align-items: flex-start;

}

.footer-content {

  max-width: 520px;

}

.footer-column h4 {

  color: var(--gold);

  margin-bottom: 20px;

  font-size: 1.05rem;

}

.footer-title {

  margin: 14px 0 2px;

  color: #fff;

  font-size: 1.6rem;

  font-family: "Cormorant Garamond", serif;

  line-height: 1;

}

.footer-subtitle {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  font-size: .97rem;
}

.footer-subtitle strong {

  color: var(--gold-soft);

  font-weight: 600;

}

.footer-logo {

  width: 90px;

  height: auto;

}

.footer-meta {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.footer-list {

  list-style: none;

  padding: 0;

  margin: 0;

}

.footer-list li {

  margin-bottom: 16px;

  color: rgba(255, 255, 255, .78);

  line-height: 1.7;

}

.footer-list li:last-child {

  margin-bottom: 0;

}

.footer-bottom {

  margin-top: 45px;

  border-top: 1px solid rgba(255, 255, 255, .12);

  text-align: center;

  padding: 22px;

  color: rgba(255, 255, 255, .55);

  font-size: .9rem;

}

.checklist {

  margin-top: 10px;

  padding-left: 18px;

}

.checklist li {

  margin: 4px 0;

}

/* BOTÕES DE ACESSO RÁPIDO */


.whatsapp-button {

  position: fixed;
  right: 24px;
  bottom: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 20px;

  border-radius: 14px;

  background: #25D366;

  color: #fff;

  text-decoration: none;

  font-size: .95rem;

  font-weight: 600;

  box-shadow: 0 12px 30px rgba(37, 211, 102, .22);

  border: 1px solid rgba(255, 255, 255, .15);

  transition: all .30s ease;

  z-index: 9999;

}

.whatsapp-button i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  transition: .30;
}

.whatsapp-button span {
  font-size: 0.98rem;
  line-height: 1.2;
}

.whatsapp-button:hover {

  background: #128C7E;

  transform: translateY(-3px);

  box-shadow: 0 18px 38px rgba(37, 211, 102, .35);

}

.whatsapp-button:hover i {

  transform: scale(1.12) rotate(-8deg);

}

.whatsapp-button i {
  width: 40px;
  height: 40px;
}

@media (max-width:768px) {
  .whatsapp-button {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
    justify-content: center;
    padding: 12px 18px;
    font-size: .9rem;
  }

  /* =========================================
   CABEÇALHO — AJUSTE PARA SMARTPHONE
   ========================================= */

@media (max-width: 680px) {

    .site-header {
        padding: 0.35rem 0;
    }

    .site-header .container {
        min-height: 52px;
    }

}

  .whatsapp-button span {
    text-align: center;
  }
}

.hero-shortcuts {
  margin-top: -20px;
  margin-bottom: 60px;
}

.shortcuts-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  grid-template-columns: 1fr;

}

.shortcut-card {

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(15, 39, 71, .08);

  border-radius: 22px;

  padding: 2rem;

  min-height: 310px;

  text-decoration: none;

  color: inherit;

  transition: all .35s ease;

  box-shadow: 0 18px 45px rgba(15, 39, 71, .06);

  position: relative;

  overflow: hidden;

}

.shortcut-card:hover {

  transform: translateY(-10px);

  border-color: var(--gold);

  box-shadow: 0 30px 60px rgba(15, 39, 71, .15);

}

.shortcut-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, var(--gold), #e8d4a6);

}

.shortcut-category {

  font-size: .72rem;

  letter-spacing: .20em;

  text-transform: uppercase;

  font-weight: 700;

  color: var(--gold);

  margin-bottom: 14px;

}

.shortcut-icon {

  width: 72px;
  height: 72px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: rgba(200, 162, 77, .10);

  color: var(--gold);

  margin-bottom: 1.4rem;

  transition: .35s;

}

.shortcut-icon svg {

  width: 38px;

  height: 38px;

}

.shortcut-card:hover .shortcut-icon {

  background: var(--gold);

  color: white;

  transform: rotate(-4deg) scale(1.08);

}

.shortcut-card h3 {

  margin: .2rem 0 1rem;

  font-size: 1.45rem;

  color: var(--navy);

  line-height: 1.2;

}

.shortcut-card p {

  color: var(--muted);

  line-height: 1.8;

  flex: 1;

  margin-bottom: 1.8rem;
}

.shortcut-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

  padding-top: 1rem;

  border-top: 1px solid rgba(15, 39, 71, .08);

  font-weight: 700;

  color: var(--navy);

  transition: .35s;

}

.shortcut-arrow {

  width: 22px;

  height: 22px;

  transition: .35s;

}

.shortcut-card:hover .shortcut-arrow {
  transform: translateX(6px);
}

.shortcut-card span {

  margin-top: auto;

  font-weight: 700;

  color: var(--gold);

}


@media (max-width: 860px) {

  .hero-grid,
  .contact-grid,
  .areas-grid,
  .process-steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-bar {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .process-steps {
    gap: 1rem;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-subtitle {
    margin: 0 auto;
  }

  .footer-logo {
    margin: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 2.4rem;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }

  .card,
  .info-panel {
    padding: 1.15rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}