/* ==========================================================================
   Pereira & Pimentel — estilos principais
   ========================================================================== */

@font-face {
  font-family: 'Kanit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/kanit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Kanit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/kanit-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/syne-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/syne-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/rubik-400.woff2') format('woff2');
}

:root {
  /* Cores - Pereira & Pimentel */
  --brand-base: #2B303A; /* Dark Slate */
  --brand-complementary: #F4F1ED; /* Off White */
  --brand-support: #A39B92; /* Warm Grey */
  --action-primary: #D4AF37; /* Classic Gold */
  --accent-gold: #D4AF37; /* Classic Gold */
  --neutral-80: #5C6270; /* Slate Grey */
  --neutral-40: #D5CABF; /* Champagne */
  --neutral-gray-50: #9B8C80;
  --neutral-gray-30: #D5CABF;
  --shield-mask: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"%3E%3Cpath d="M 10 0 L 90 0 Q 100 0 100 5 L 100 70 Q 100 80 90 85 L 55 98 Q 50 100 45 98 L 10 85 Q 0 80 0 70 L 0 5 Q 0 0 10 0 Z" fill="black" /%3E%3C/svg%3E');

  /* Fontes */
  --font-heading: 'Playfair Display', serif;
  --font-action: 'Montserrat', sans-serif;
  --font-meta: 'Montserrat', sans-serif;

  /* Espaçamento */
  --space-micro: 4px;
  --space-small: 8px;
  --space-medium: 16px;
  --space-large: 24px;
  --space-xl: 32px;
  --space-session-gap: 48px;
  --space-session-padding: 84px;

  --container-width: 1250px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-action);
  color: var(--brand-base);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-title {
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 16px;
  color: var(--brand-base);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-small);
  padding: var(--space-medium) var(--space-large);
  border-radius: 9999px;
  font-family: var(--font-action);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}
.btn img { width: 16px; height: 16px; }
.btn--primary { background: #fff; color: var(--brand-base); }
.btn--dark { background: var(--brand-base); color: var(--brand-complementary); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  height: 102px;
}
.site-header__logo img { height: 64px; width: auto; }
.site-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-medium);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav a {
  display: flex;
  align-items: center;
  padding: var(--space-medium);
  border-radius: var(--space-micro);
  font-family: var(--font-action);
  font-weight: 600;
  font-size: 12px;
  color: var(--action-primary);
}
.site-header__nav .current-menu-item a,
.site-header__nav a:hover { background: rgba(140, 140, 140, 0.2); }
.site-header__social {
  display: flex;
  align-items: center;
  gap: var(--space-medium);
}
.site-header__social img { width: 16px; height: 16px; }
.site-header__toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}
.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-base);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero / Banner
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero__slide {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.2)),
    linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 24px 56px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__content--controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}
.hero__text { max-width: 750px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__title {
  font-family: var(--font-action);
  font-weight: 500;
  font-size: 36px;
  color: var(--accent-gold);
  margin: 0 0 var(--space-large);
}
.hero__desc {
  font-size: 24px;
  color: var(--brand-complementary);
  margin: 0 0 var(--space-large);
}
.hero__controls { justify-content: center; margin: 0 auto; 
  display: flex;
  align-items: center;
  gap: var(--space-small);
  max-width: 750px;
  pointer-events: auto;
}
.hero__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--brand-complementary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  position: static !important;
  margin: 0 !important;
  flex: 0 0 auto;
}
.hero__arrow::after { display: none !important; }
.hero__arrow img { width: 16px; height: 16px; }
.hero__arrow:hover { opacity: 1; }
.hero__dots { 
  display: flex; 
  align-items: center; 
  gap: var(--space-small);
  position: static !important;
  width: auto !important;
  transform: none !important;
  flex: 0 0 auto;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.4);
  padding: 0;
}
.hero__dot.is-active { background: #d9d9d9; height: 16px; }

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre { padding: var(--space-session-padding) 0; }
.sobre__row {
  display: flex;
  gap: var(--space-session-padding);
  align-items: center;
}
.sobre__row + .sobre__row { margin-top: var(--space-xl); }
.sobre__text { flex: 1; }
.sobre__text h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--brand-base);
  margin: 0 0 var(--space-large);
}
.sobre__text p {
  font-size: 16px;
  color: var(--brand-base);
  text-align: justify;
  margin: 0 0 var(--space-large);
}
.sobre__collage {
  flex: 1;
  display: flex;
  align-items: center;
}
.sobre__collage-item {
  position: relative;
  width: 195px;
  height: 400px;
  background: #fff;
  padding: 6px;
  -webkit-mask-image: var(--shield-mask);
  -webkit-mask-size: 100% 100%;
  mask-image: var(--shield-mask);
  mask-size: 100% 100%;
  filter: drop-shadow(15px 15px 25px rgba(0, 0, 0, 0.4));
  margin-left: -32px;
}
.sobre__collage-item:first-child { margin-left: 0; }
.sobre__collage-item:nth-child(1) { z-index: 3; }
.sobre__collage-item:nth-child(2) { z-index: 2; }
.sobre__collage-item:nth-child(3) { z-index: 1; }
.sobre__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: var(--shield-mask);
  -webkit-mask-size: 100% 100%;
  mask-image: var(--shield-mask);
  mask-size: 100% 100%;
}
.sobre__photo { flex: 1; }
.sobre__photo img {
  display: block;
  width: 100%;
  height: 274px;
  object-fit: cover;
  border-radius: 16px;
}

/* ==========================================================================
   Áreas de atuação
   ========================================================================== */
.areas {
  padding: var(--space-session-padding) 0 300px;
  color: var(--brand-base);
  background:
    linear-gradient(-16deg, rgb(70, 66, 59) 0%, rgba(102, 102, 102, 0) 74.58%),
    #868686;
}
.areas__head { margin-bottom: var(--space-xl); max-width: 700px; }
.areas__head h2 { font-size: 40px; font-weight: 400; margin: 0 0 var(--space-medium); }
.areas__head p { font-size: 16px; margin: 0; }
.areas__viewport { position: relative; }
.areas-swiper { overflow: hidden; }
.areas-swiper .swiper-slide { height: auto; }
.area-card {
  height: 100%;
  background: #fff;
  border-radius: var(--space-large);
  overflow: hidden;
  box-shadow: 0 4px 42px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.area-card__media {
  position: relative;
  height: 238px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-large);
}
.area-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 3%, rgba(0,0,0,0) 100%);
}
.area-card__media h3 {
  position: relative;
  z-index: 1;
  color: var(--accent-gold);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.area-card__body {
  padding: var(--space-large);
  display: flex;
  flex-direction: column;
  gap: var(--space-large);
  flex: 1;
}
.area-card__body p {
  margin: 0;
  font-size: 16px;
  color: var(--neutral-gray-50);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.area-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-small);
  font-family: var(--font-action);
  font-weight: 600;
  font-size: 12px;
  color: #323c81;
}
.area-card__link img { width: 16px; height: 16px; }
.areas__nav {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  z-index: 2;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}
.areas__nav--prev { left: -60px; transform: translateY(-50%) rotate(180deg); }
.areas__nav--next { right: -60px; }

@media (max-width: 1400px) {
  .areas__nav--prev { left: -20px; }
  .areas__nav--next { right: -20px; }
}
@media (max-width: 1024px) {
  .areas__nav { display: none; }
}
.areas__nav.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
.areas__pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-small);
  margin-top: var(--space-xl);
}
.areas__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.areas__pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 16px;
}

/* ==========================================================================
   Profissionais
   ========================================================================== */
.profissionais { padding: var(--space-session-padding) 0; overflow-x: clip; overflow-y: visible; position: relative; }
.profissionais .container { position: relative; }
.profissionais__head {
  display: flex;
  gap: var(--space-session-padding);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-session-padding);
}
.profissionais__head > div:first-child { 
  flex: 1; 
  max-width: 600px;
}
.profissionais__head h2 { font-size: 40px; font-weight: 400; color: var(--brand-base); margin: 0 0 var(--space-large); }
.profissionais__head p { font-size: 16px; color: var(--brand-base); text-align: justify; margin: 0; }
.profissionais__watermark {
  position: absolute;
  top: -250px;
  right: -50px;
  z-index: 10;
  pointer-events: none;
}
.profissionais__grid {
  display: flex;
  gap: var(--space-medium);
  flex-wrap: wrap;
}
.profissionais__grid > .adv-card {
  flex: 1;
  min-width: 250px;
}
.profissionais__grid + .profissionais__grid { margin-top: var(--space-medium); }
.adv-card {
  position: relative;
  height: 616px;
  -webkit-mask-image: var(--shield-mask);
  -webkit-mask-size: 100% 100%;
  mask-image: var(--shield-mask);
  mask-size: 100% 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-small);
  padding: var(--space-session-gap) var(--space-medium);
  background: var(--brand-base);
  text-align: center;
}
.adv-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.adv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(2deg, rgba(0,0,0,.8) 4%, rgba(0,0,0,0) 100%);
}
.adv-card__name, .adv-card__role, .adv-card__plus {
  position: relative;
  z-index: 1;
}
.adv-card__name {
  font-size: 16px;
  color: var(--accent-gold);
  margin: 0;
  line-height: 1.3;
}
.adv-card__role {
  font-size: 12px;
  color: var(--brand-complementary);
  margin: 0;
}
.adv-card__oab {
  font-size: 11px;
  color: var(--brand-support);
  margin: 2px 0 0;
}
.adv-card__plus {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--brand-complementary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.6;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.adv-card__plus img {
  position: static;
  inset: auto;
  width: 18px;
  height: 18px;
  display: block;
  margin: 0;
}
.adv-card--empty { background: linear-gradient(2deg, rgba(0,0,0,.8) 4%, rgba(0,0,0,0) 100%), #3a3a3a; }

/* ==========================================================================
   Guia de Investidores
   ========================================================================== */
.investidores {
  background: var(--brand-base);
  color: var(--brand-complementary);
  padding: var(--space-session-padding) 0;
}
.investidores__row {
  display: flex;
  gap: var(--space-session-padding);
  align-items: center;
}
.investidores__text { flex: 1; }
.investidores__text h2 { font-size: 40px; font-weight: 400; margin: 0 0 var(--space-large); }
.investidores__text p { font-size: 16px; color: var(--brand-base); text-align: justify; margin: 0 0 var(--space-large); }
.investidores__image { flex: 1; }
.investidores__image img {
  width: 100%;
  height: 432px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 20px 18px 32px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Contato
   ========================================================================== */
.contato {
  background: var(--brand-complementary);
  padding: var(--space-session-padding) 0;
}
.contato__row {
  display: flex;
  gap: 51px;
}
.contato__info { flex: 1; max-width: 453px; }
.contato__info h2 { font-size: 40px; font-weight: 400; color: var(--brand-base); margin: 0 0 var(--space-large); }
.contato__info p { font-size: 16px; color: var(--brand-base); text-align: justify; margin: 0 0 var(--space-large); }
.contato__info strong { display: block; color: var(--brand-base); font-weight: 700; }
.contato-form { flex: 1; display: flex; flex-direction: column; gap: var(--space-xl); }
.contato-form__row { display: flex; gap: var(--space-medium); }
.form-field { flex: 1; display: flex; flex-direction: column; gap: var(--space-micro); }
.form-field label {
  font-family: var(--font-meta);
  font-size: 14px;
  color: var(--brand-base);
  line-height: 1.5;
}
.form-field input,
.form-field textarea {
  font-family: var(--font-meta);
  font-size: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: var(--space-micro);
  padding: 10px 15px;
  resize: none;
}
.form-field textarea { min-height: 110px; }

.contato-form button[type="submit"] {
  align-self: flex-start;
}

.form-field--honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contato-form__feedback { font-family: var(--font-meta); font-size: 14px; padding: var(--space-medium); border-radius: var(--space-micro); }
.contato-form__feedback--success { background: #dff3e3; color: #1e6b32; }
.contato-form__feedback--error { background: #fbe3e0; color: #8a2c1f; }

/* ==========================================================================
   Mapa
   ========================================================================== */
.mapa { line-height: 0; }
.mapa iframe { width: 100%; height: 376px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--brand-base);
  color: var(--brand-complementary);
  padding: var(--space-xl) 24px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-session-gap);
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-large);
}
.site-footer__copy p { margin: 0; font-size: 16px; }
.site-footer__credit { font-size: 12px; text-align: right; }
.site-footer__compliance {
  width: 100%;
  border-top: 1px solid rgba(217, 217, 217, 0.2);
  padding-top: var(--space-large);
  font-size: 12px;
  color: var(--neutral-40);
  line-height: 1.6;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 960px) {
  :root {
    --space-session-padding: 48px;
    --space-session-gap: 32px;
  }
  .site-header .container { flex-wrap: wrap; height: auto; padding-block: var(--space-medium); }
  .site-header__toggle { display: flex; order: 2; margin-left: auto; }
  .site-header__social { display: none; }
  .site-header__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 4;
    gap: 0;
    margin-top: var(--space-medium);
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav a {
    width: 100%;
    padding: 12px var(--space-medium);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .sobre__row,
  .investidores__row,
  .contato__row,
  .profissionais__head { flex-direction: column; text-align: center; }
  .profissionais__head > div:first-child { width: 100%; }
  .profissionais__head p { text-align: center; }
  .profissionais__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .profissionais__watermark { display: none; }
  .areas__viewport { padding-inline: 40px; }
  .contato-form__row { flex-direction: column; }
  .sobre__collage { justify-content: center; margin-top: 32px; }
  .sobre__collage-item { width: 140px; height: 280px; margin-left: -20px; }
  .sobre__text p, .investidores__text p, .contato__info p { text-align: center; }
  .investidores__image, .contato-form, .contato__info { width: 100%; max-width: 100%; }
  .contato-form { text-align: left; }
  .contato-form button[type="submit"] { align-self: stretch; justify-content: center; }
}

@media (max-width: 600px) {
  .hero__slide { min-height: 450px; }
  .hero__content { padding-bottom: 120px; }
  .hero__content--controls { padding-bottom: 32px; }
  .hero__title { font-size: 26px; }
  .hero__desc { font-size: 18px; }
  .sobre__text h2, .areas__head h2, .profissionais__head h2, .section-title { font-size: 28px; line-height: 1.2; }
  .profissionais__grid { display: grid; grid-template-columns: 1fr; }
  .adv-card { height: 420px; }
  .site-footer .container { flex-direction: column; align-items: flex-start; gap: 24px; }
  .site-footer__credit { text-align: left; }
  .sobre__collage-item { width: 110px; height: 230px; margin-left: -16px; }
  .investidores__image img { height: 280px; }
  .mapa iframe { height: 250px; }
  .areas { padding-bottom: 64px; }
  .areas__viewport { padding-inline: 0; }
  .prof-modal__container { padding: 40px 24px; }
  .prof-modal__media img { max-height: 420px; }
}

/* ==========================================================================
   Modal de Áreas de Atuação
   ========================================================================== */
.area-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
.area-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.area-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.area-modal__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 42.7px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.area-modal.is-open .area-modal__content {
  transform: translateY(0);
}
.area-modal__header {
  position: relative;
  height: 238px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.area-modal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.area-modal__header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 2;
}
.area-modal__title {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}
.area-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.area-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.area-modal__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.area-modal__text {
  margin: 0;
  font-family: var(--font-action);
  font-size: 16px;
  color: #111;
  line-height: 1.6;
  text-align: justify;
}
.area-modal__cta {
  align-self: flex-start;
  padding: 16px 24px;
  border-radius: 4px;
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.area-modal__cta:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Modal de Profissionais (Full Screen)
   ========================================================================== */
.prof-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: var(--neutral-white, #fff);
  overflow-y: auto;
}

.prof-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.prof-modal__container {
  position: relative;
  width: 100%;
  max-width: var(--container-width, 1250px);
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
}

.prof-modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl, 40px);
}
@media (min-width: 960px) {
  .prof-modal__grid {
    grid-template-columns: 304px 1fr;
    gap: 84px;
  }
}

.prof-modal__media img {
  width: 100%;
  height: 100%;
  max-height: 616px;
  object-fit: cover;
  -webkit-mask-image: var(--shield-mask);
  -webkit-mask-size: 100% 100%;
  mask-image: var(--shield-mask);
  mask-size: 100% 100%;
}

.prof-modal__content {
  display: flex;
  flex-direction: column;
}

.prof-modal__content h3 {
  font-size: 40px;
  font-weight: 400;
  color: var(--brand-base, #1c1c1c);
  margin: 0 0 var(--space-small, 8px);
}

.prof-modal__role {
  font-size: 18px;
  color: var(--accent-gold, #8a7a5f);
  margin: 0 0 var(--space-xl, 40px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prof-modal__bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-gray-80, #333);
  margin-bottom: var(--space-xl, 40px);
}
.prof-modal__bio p {
  margin-bottom: var(--space-medium, 16px);
}

.prof-modal__close-top {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.prof-modal__close-top:hover {
  opacity: 0.8;
}

.prof-modal__close-bottom {
  align-self: flex-start;
  margin-top: auto;
}

.adv-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.adv-card:hover > img {
  transform: scale(1.05);
}
.adv-card:hover .adv-card__plus {
  transform: scale(1.1) rotate(90deg);
  opacity: 1;
}

.prof-modal__bio ul {
  list-style: none;
  padding: 0;
  margin: var(--space-medium, 16px) 0 0 0;
}
.prof-modal__bio ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.prof-modal__bio ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold, #8a7a5f);
  border-radius: 50%;
}
.prof-modal__bio strong {
  color: var(--brand-base, #1c1c1c);
  font-weight: 600;
}

/* Acessibilidade */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; background: var(--brand-base); color: #fff; padding: 10px; display: block; z-index: 10000; text-align: center; }


.prof-modal__list {
  margin: 16px 0;
  padding-left: 20px;
  list-style: none;
}
.prof-modal__list li {
  position: relative;
  margin-bottom: 8px;
  font-family: var(--font-action);
  font-size: 15px;
  color: var(--brand-support);
  line-height: 1.4;
}
.prof-modal__list li::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: var(--accent-gold);
  font-size: 20px;
  line-height: 1.1;
}


.prof-modal__areas-title {
  margin-top: 24px;
  margin-bottom: -8px;
  font-family: var(--font-action);
  font-size: 16px;
  color: var(--brand-base);
}


/* Animações de Entrada do Modal de Profissionais (Efeito Parallax/Fade-up) */
.prof-modal {
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.prof-modal__container {
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.prof-modal[aria-hidden="false"] .prof-modal__container {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.05s;
}

.prof-modal__media {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.prof-modal__content > * {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.prof-modal[aria-hidden="false"] .prof-modal__media { transition-delay: 0.1s; transform: translateY(0); opacity: 1; }
.prof-modal[aria-hidden="false"] .prof-modal__content h3 { transition-delay: 0.15s; transform: translateY(0); opacity: 1; }
.prof-modal[aria-hidden="false"] .prof-modal__role { transition-delay: 0.2s; transform: translateY(0); opacity: 1; }
.prof-modal[aria-hidden="false"] .prof-modal__bio { transition-delay: 0.25s; transform: translateY(0); opacity: 1; }
.prof-modal[aria-hidden="false"] .prof-modal__close-bottom { transition-delay: 0.3s; transform: translateY(0); opacity: 1; }


.adv-card.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

