/* ============================================================
   COMPONENTS.CSS — Header, footer, cards, botões, forms
   Guimarães & Coriolano Advocacia
   ============================================================ */

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-navy);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-white);
  line-height: 1.2;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
}

/* Nav desktop */
.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-gold);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

/* CTA header */
.header__cta {
  display: none;
}

.btn-header-cta {
  background-color: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  animation: slideDown 0.3s ease;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--color-gold);
}

.mobile-menu__cta {
  margin-top: var(--space-4);
  background-color: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-lg);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   SECTION MAP
   ============================================================ */
.section-map {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-navy-mid);
}

.section-map__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12) var(--space-8);
  background-color: var(--color-navy);
}

.section-map__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.section-map__address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.section-map__link {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity var(--transition);
}

.section-map__link:hover {
  opacity: 0.75;
}

.section-map__embed {
  min-height: 300px;
}

.section-map__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  border: 0;
}

@media (min-width: 768px) {
  .section-map {
    grid-template-columns: 360px 1fr;
    min-height: 380px;
  }

  .section-map__embed {
    min-height: 380px;
  }

  .section-map__embed iframe {
    min-height: 380px;
  }
}

@media (min-width: 1024px) {
  .section-map {
    grid-template-columns: 420px 1fr;
    min-height: 420px;
  }

  .section-map__info {
    padding: var(--space-16) var(--space-12);
  }

  .section-map__embed iframe {
    min-height: 420px;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-navy);
  padding: var(--space-16) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer__col-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.footer__brand-slogan {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-4);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--color-gold);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  background-color: rgba(201,168,76,0.1);
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6) 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-base);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

/* Botão primário — gold */
.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

.btn--primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* Botão ghost — contorno branco */
.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Botão liquid glass — efeito vidro fosco */
.btn--liquid-glass {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(3px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Highlight especular no topo */
.btn--liquid-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.20) 0%,
    rgba(255, 255, 255, 0.00) 100%
  );
  pointer-events: none;
}

/* Shimmer ao hover */
.btn--liquid-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.btn--liquid-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10);
}

.btn--liquid-glass:hover::after {
  opacity: 1;
}

/* Botão ghost navy — contorno navy */
.btn--ghost-navy {
  background-color: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
}

.btn--ghost-navy:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* Botão small */
.btn--sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

/* ============================================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: pulse 2s ease-in-out infinite;
  transition: transform var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.whatsapp-btn__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-btn__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--color-navy);
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
}

/* ============================================================
   CARDS — DIFERENCIAIS
   ============================================================ */
.card-diff {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.card-diff:hover {
  border-left-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-diff__icon-wrap {
  width: 80px;
  height: 80px;
  background-color: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.card-diff__icon-wrap svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
}

.card-diff__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.card-diff__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   CARDS — ÁREAS (fundo navy)
   ============================================================ */
.card-area {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card-area:hover {
  background-color: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.card-area__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.card-area__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.card-area__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.card-area__line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.card-area__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-6);
}

.card-area__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition);
}

.card-area__link:hover {
  text-decoration: underline;
  gap: var(--space-3);
}

/* ============================================================
   CARDS — EQUIPE
   ============================================================ */
.card-team {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.card-team:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-team__avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.card-team__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.1);
}

.card-team__avatar--sm {
  width: 80px;
  height: 80px;
}

.card-team__avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-navy-mid);
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: rgba(201,168,76,0.6);
}

.card-team__avatar-placeholder--sm {
  width: 80px;
  height: 80px;
  font-size: var(--text-xl);
}

.card-team__oab {
  display: inline-block;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
}

.card-team__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.card-team__name--sm {
  font-size: var(--text-xl);
}

.card-team__gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
  margin: var(--space-3) auto;
}

.card-team__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}

.card-team__spec {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================================
   SEÇÃO HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* header height */
  background-image: url('../hero.webp');
  background-size: cover;
  background-position: top center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 70%;
  padding: var(--space-20) 0;
}

/* Tablet: hero full-width centered */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__inner {
    width: 100%;
  }

  .hero__content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .hero__label {
    justify-content: center;
  }

  .hero__btns {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero__inner .container {
    padding-left: var(--space-4);
  }
}

.hero__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__label-line {
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
}

.hero__label-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, var(--text-6xl));
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero__content {
  max-width: 750px;
}

.hero__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: var(--space-8);
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  align-items: center;
}

.hero__stats-item {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__stats-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-gold);
  opacity: 0.6;
}

/* Elemento decorativo G&C */
.hero__deco {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}

.hero__deco-outer {
  width: 340px;
  height: 380px;
  border: 1px solid rgba(201,168,76,0.25);
  transform: rotate(6deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__deco-inner {
  width: 300px;
  height: 340px;
  background-color: rgba(201,168,76,0.05);
  transform: rotate(-6deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__deco-initials {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 8rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  user-select: none;
}

.hero__deco-year {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(201,168,76,0.25);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  animation: bounce 2s ease-in-out infinite;
  color: rgba(201,168,76,0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
  background-color: var(--color-navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero .texture-overlay {
  opacity: 0.5;
}

.page-hero__breadcrumb {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-gold);
}

.page-hero__breadcrumb-sep {
  font-size: var(--text-xs);
  opacity: 0.4;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SEÇÃO MVV
   ============================================================ */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.mvv-item {
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.mvv-item + .mvv-item {
  border-top: 1px solid var(--color-border);
}

.mvv-item__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin: 0 auto var(--space-4);
}

.mvv-item__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.mvv-item__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.mvv-item__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   SEÇÃO SOBRE (quote)
   ============================================================ */
.sobre-quote-block {
  background-color: var(--color-navy);
  padding: var(--space-12) var(--space-10);
  position: relative;
}

.sobre-quote-mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 0.5;
  display: block;
  margin-bottom: var(--space-6);
}

.sobre-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: var(--space-6);
}

.sobre-quote-attr {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
}

.sobre-quote-attr-line {
  width: 30px;
  height: 1px;
  background-color: var(--color-gold);
}

/* ============================================================
   FORMULÁRIO DE CONTATO
   ============================================================ */
.form-group {
  position: relative;
  margin-bottom: var(--space-8);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6475' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}

.field-error {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  min-height: 18px;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-bottom-color: var(--color-error);
}

.form-input.valid,
.form-select.valid,
.form-textarea.valid {
  border-bottom-color: var(--color-success);
}

/* Mensagem de sucesso */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10) var(--space-8);
  animation: slideUp 0.5s ease;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background-color: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--color-gold);
}

.form-success__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.form-success__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   CONTATO INFO
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--color-navy);
  transition: color var(--transition);
}

.contact-info-value a:hover {
  color: var(--color-gold);
}

/* Mapa placeholder */
.map-placeholder {
  width: 100%;
  height: 220px;
  background-color: var(--color-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  margin-top: var(--space-6);
  border: 1px solid rgba(201,168,76,0.15);
}

.map-placeholder a {
  color: var(--color-gold);
  font-weight: 500;
  text-decoration: underline;
}

/* ============================================================
   TIMELINE (sobre.html)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(201,168,76,0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) - 5px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-gold);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.timeline-year {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.timeline-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   LISTA DE SERVIÇOS (areas.html)
   ============================================================ */
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.service-list-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bloco decorativo de área */
.area-deco {
  background-color: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.area-deco__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9rem;
  color: rgba(201,168,76,0.08);
  position: absolute;
  line-height: 1;
}

.area-deco__icon {
  width: 80px;
  height: 80px;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
}

.area-deco__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin-top: var(--space-4);
  position: relative;
  z-index: 1;
}

/* ============================================================
   RESPONSIVIDADE DOS COMPONENTES
   ============================================================ */
@media (min-width: 768px) {
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mvv-item + .mvv-item {
    border-top: none;
    border-left: 1px solid var(--color-border);
  }

  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  /* === Header mobile — hidden === */
  .header {
    display: none;
  }

  /* === Hero mobile — conteúdo no topo, foto nas faces abaixo === */
  .hero {
    background-image: url('../hero-mobile.webp');
    background-position: top center;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100dvh;
  }

  .hero__inner {
    width: 100%;
    padding-top: var(--space-10);
    padding-bottom: 0;
    /* limita o conteúdo à metade superior */
    max-height: 50dvh;
    overflow: visible;
  }

  .hero__inner .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__label {
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .hero__text {
    max-width: 100%;
    font-size: var(--text-base);
  }

  .hero__btns {
    justify-content: center;
  }

  /* === Footer mobile — single column === */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: block;
  }

  .header__hamburger {
    display: none;
  }
}
