:root {
  --pd-sobre-green: var(--pd-color-green);
  --pd-sobre-green-2: #345b41;
  --pd-sobre-gold: #cda788;
  --pd-sobre-cream: #fbfaf4;
  --pd-sobre-soft: #f3f1e9;
  --pd-sobre-text: #183d37;
  --pd-sobre-white: #ffffff;
  --pd-sobre-border: rgba(6, 73, 63, 0.12);
  --pd-sobre-shadow: 0 18px 50px rgba(27, 61, 55, 0.08);
  --pd-sobre-shadow-strong: 0 26px 80px rgba(14, 45, 40, 0.22);
  --pd-sobre-radius-small: 9px;
  --pd-sobre-radius-medium: 16px;
  --pd-sobre-radius-large: 24px;
  --pd-sobre-content-width: 1320px;
  --pd-sobre-hero-image: url("../images/about/banner-sobre-mim-sarita.jpg");
}

.pd-sobre-page,
.pd-sobre-page * {
  box-sizing: border-box;
}

.pd-sobre-page {
  width: 100%;
  overflow-x: hidden;
  background: var(--pd-sobre-cream);
  color: var(--pd-sobre-text);
  font-family: var(--pd-font-sans);
}

.pd-sobre-page img {
  max-width: 100%;
}

.pd-sobre-page button,
.pd-sobre-page a {
  font: inherit;
}

.pd-sobre-page button {
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}

.pd-sobre-inner {
  width: min(100%, var(--pd-sobre-content-width));
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.pd-sobre-page a:focus-visible,
.pd-sobre-page button:focus-visible {
  outline: 3px solid rgba(205, 167, 136, 0.78);
  outline-offset: 4px;
}

body.pd-sobre-scroll-locked {
  overflow: hidden !important;
}

.pd-sobre-primary-button {
  min-height: 50px;
  padding: 12px 23px;
  border-radius: 7px;
  background: var(--pd-sobre-green);
  color: var(--pd-sobre-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 9px 20px rgba(6, 73, 63, 0.15);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.pd-sobre-primary-button:hover {
  background: #033f36;
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(6, 73, 63, 0.2);
}

.pd-sobre-primary-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.pd-sobre-title-divider,
.pd-sobre-heading-detail,
.pd-sobre-modal-divider {
  display: flex;
  align-items: center;
}

.pd-sobre-title-divider span,
.pd-sobre-heading-detail span,
.pd-sobre-modal-divider span {
  height: 1px;
  background: var(--pd-sobre-gold);
}

.pd-sobre-title-divider img,
.pd-sobre-heading-detail img,
.pd-sobre-modal-divider img {
  object-fit: contain;
  display: block;
}

/* =========================================================
   HERO
========================================================= */

.pd-sobre-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  height: 630px;
  align-items: center;
  overflow: hidden;
  background-color: #345b4d;
  background-image: var(--pd-sobre-hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pd-sobre-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: rgba(18, 63, 55, 0.08);
  pointer-events: none;
}

.pd-sobre-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--pd-sobre-content-width));
  height: 100%;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
  align-items: center;
}

.pd-sobre-hero-copy {
  width: 520px;
  max-width: 45%;
  min-width: 0;
  padding: 64px 0 64px 72px;
}

.pd-sobre-hero-copy h1 {
  width: 100%;
  max-width: 520px;
  margin: 0 0 28px;
  color: #ffffff;
  font-family: var(--pd-font-serif);
  font-size: clamp(36px, 3.7vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.pd-sobre-hero-copy>p {
  max-width: 410px;
  margin: 0 0 32px;
  color: #ffffff;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.75;
  font-weight: 600;
}

/* =========================================================
   PRINCÍPIOS
========================================================= */

.pd-sobre-principles {
  padding: 26px 0 42px;
  background: var(--pd-sobre-cream);
}

.pd-sobre-principles-grid {
  min-height: 150px;
  padding: 27px 45px;
  border-radius: var(--pd-sobre-radius-large);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.92));
  box-shadow: 0 12px 36px rgba(27, 61, 55, 0.035);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pd-sobre-principle-item {
  min-width: 0;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
}

.pd-sobre-principle-item+.pd-sobre-principle-item {
  border-left: 1px solid rgba(6, 73, 63, 0.15);
}

.pd-sobre-principle-icon {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 50%;
  background: rgba(238, 244, 234);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-sobre-principle-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.pd-sobre-principle-icon-large {
  width: 102px;
  height: 102px;
  flex-basis: 102px;
  border-radius: 0;
  background: transparent;
}

.pd-sobre-principle-icon-large img {
  width: 86px;
  height: 96px;
}

.pd-sobre-principle-copy h2 {
  margin: 0 0 7px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.12;
  font-weight: 600;
}

.pd-sobre-principle-copy p {
  margin: 0;
  color: var(--pd-sobre-text);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================================
   HISTÓRIA
========================================================= */

.pd-sobre-history {
  padding: 34px 0 40px;
}

.pd-sobre-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.94fr);
  gap: clamp(58px, 7vw, 110px);
  align-items: stretch;
}

.pd-sobre-history-content {
  padding: 3px 0 0 8px;
}

.pd-sobre-history-content h2 {
  margin: 0;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.pd-sobre-heading-detail {
  width: 130px;
  gap: 11px;
  margin: 17px 0 25px;
}

.pd-sobre-heading-detail span {
  flex: 1;
}

.pd-sobre-heading-detail img {
  width: 17px;
  height: 17px;
}

.pd-sobre-history-excerpt {
  color: var(--pd-sobre-text);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 500;
}

.pd-sobre-history-excerpt p {
  margin: 0 0 20px;
}

.pd-sobre-history-button {
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
  padding: 10px 17px;
  border: 1px solid rgba(205, 167, 136, 0.7);
  border-radius: 8px;
  background: rgba(239, 239, 230);
  color: var(--pd-sobre-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: var(--pd-font-serif);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
  transition:
    background-color 200ms ease,
    border-color 200ms ease;
}

.pd-sobre-history-button:hover {
  background: var(--pd-sobre-soft);
  border-color: var(--pd-sobre-gold);
}

.pd-sobre-history-button img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.pd-sobre-quote-card {
  position: relative;
  min-height: 0;
  height: auto;
  padding: 58px 61px 58px;
  border-radius: 24px;
  background: #efefe6;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(27, 61, 55, 0.045);
}

.pd-sobre-quote-mark {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: 78px;
  line-height: 0.65;
  font-weight: 700;
}

.pd-sobre-quote-card blockquote {
  position: relative;
  z-index: 2;
  margin: 30px 0 0;
}

.pd-sobre-quote-card blockquote p {
  max-width: 420px;
  margin: 0;
  color: var(--pd-sobre-text);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  font-weight: 600;
}

.pd-sobre-quote-card blockquote footer {
  margin-top: 42px;
  color: var(--pd-sobre-green);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.pd-sobre-quote-decoration-top {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -2px;
  width: 185px;
  opacity: 0.9;
}

.pd-sobre-quote-woman {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 42px;
  width: 160px;
}

.pd-sobre-quote-decoration-bottom {
  position: absolute;
  z-index: 0;
  right: 144px;
  bottom: 0;
  width: 145px;
  opacity: 0.84;
}

/* =========================================================
   CARTÃO PROFISSIONAL
========================================================= */

.pd-sobre-professional {
  padding: 0 0 14px;
}

.pd-sobre-professional-card {
  min-height: 255px;
  padding: 30px 36px;
  border-radius: 24px;
  background: linear-gradient(90deg,
      rgba(251, 250, 244, 0.95),
      rgba(246, 243, 234, 0.8),
      rgba(251, 250, 244, 0.95));
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 1fr);
  align-items: center;
}

.pd-sobre-profile-block {
  min-width: 0;
  padding-right: 32px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.pd-sobre-page img.pd-sobre-profile-photo {
  width: 142px;
  height: 142px;
  min-width: 142px;
  flex: 0 0 142px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pd-sobre-profile-copy h2 {
  margin: 0 0 9px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.12;
  font-weight: 600;
}

.pd-sobre-profile-copy p {
  margin: 0;
  color: var(--pd-sobre-text);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.pd-sobre-profile-divider {
  width: 150px;
  max-width: 100%;
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pd-sobre-profile-divider span {
  flex: 1;
  height: 1px;
  background: rgba(6, 73, 63, 0.58);
}

.pd-sobre-profile-divider img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.pd-sobre-professional-item {
  min-height: 170px;
  padding: 5px 24px;
  border-left: 1px solid rgba(6, 73, 63, 0.13);
  text-align: center;
}

.pd-sobre-professional-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 13px;
  border-radius: 50%;
  background: rgba(205, 167, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-sobre-professional-icon img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  display: block;
}

.pd-sobre-professional-item h3 {
  margin: 0 0 10px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.pd-sobre-professional-item p {
  max-width: 160px;
  margin: 0 auto;
  color: var(--pd-sobre-text);
  font-size: 10.5px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   JORNADA
========================================================= */

.pd-sobre-journey {
  position: relative;
  padding: 24px 0 58px;
}

.pd-sobre-journey-header {
  margin-bottom: 24px;
  text-align: center;
}

.pd-sobre-journey-header h2 {
  margin: 0;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.1;
  font-weight: 600;
}

.pd-sobre-journey-heart {
  width: 22px;
  height: 22px;
  margin: 5px auto 3px;
}

.pd-sobre-journey-heart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-sobre-journey-header p {
  margin: 0;
  color: var(--pd-sobre-text);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.pd-sobre-journey-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
}

.pd-sobre-journey-card {
  width: 100%;
  min-height: 77px;
  padding: 10px 18px;
  border: 1px solid rgba(6, 73, 63, 0.14) !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.93) !important;
  color: var(--pd-sobre-text) !important;
  display: grid;
  grid-template-columns: 49px 1fr 22px;
  gap: 15px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none !important;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.pd-sobre-journey-card:hover {
  transform: translateY(-2px);
  background: var(--pd-sobre-cream) !important;
  color: var(--pd-sobre-text) !important;
  border-color: var(--pd-sobre-gold) !important;
  box-shadow: 0 11px 30px rgba(27, 61, 55, 0.07) !important;
}

.pd-sobre-journey-card:active {
  transform: translateY(0);
  background: var(--pd-sobre-cream) !important;
  color: var(--pd-sobre-text) !important;
  border-color: var(--pd-sobre-gold) !important;
}

.pd-sobre-journey-card:focus-visible {
  outline: 3px solid rgba(205, 167, 136, 0.78) !important;
  outline-offset: 3px;
}

.pd-sobre-journey-card.pd-sobre-journey-card-active,
.pd-sobre-journey-card[aria-expanded="true"],
.pd-sobre-journey-card:focus {
  background: var(--pd-sobre-cream) !important;
  color: var(--pd-sobre-text) !important;
  border-color: var(--pd-sobre-gold) !important;
  box-shadow: 0 11px 30px rgba(27, 61, 55, 0.07) !important;
  outline: none;
}

.pd-sobre-journey-card-icon {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: rgba(205, 167, 136, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-sobre-journey-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.pd-sobre-journey-card-copy {
  min-width: 0;
  display: block;
}

.pd-sobre-journey-card-copy strong {
  margin-bottom: 4px;
  color: var(--pd-sobre-green);
  display: block;
  font-family: var(--pd-font-serif);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.pd-sobre-journey-card-copy small {
  color: var(--pd-sobre-text);
  display: block;
  font-size: 10.5px;
  line-height: 1.45;
  font-weight: 500;
}

.pd-sobre-journey-arrow {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 250ms ease;
}

.pd-sobre-journey-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pd-sobre-journey-card[aria-expanded="true"] .pd-sobre-journey-arrow {
  transform: rotate(180deg);
}

.pd-sobre-journey-spacer {
  height: 10px;
}

/* =========================================================
   CONTACTO FINAL
========================================================= */

.pd-sobre-contact {
  padding: 0 0 46px;
}

.pd-sobre-contact-card {
  position: relative;
  min-height: 154px;
  padding: 26px 110px 26px 42px;
  border-radius: 20px;
  background: linear-gradient(90deg,
      rgba(246, 242, 233, 0.88),
      rgba(251, 250, 244, 0.95));
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px 1.25fr 1px 1.2fr auto;
  gap: 28px;
  align-items: center;
}

.pd-sobre-contact-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(205, 167, 136, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-sobre-contact-icon img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.pd-sobre-contact-title {
  position: relative;
  z-index: 2;
}

.pd-sobre-contact-title h2 {
  margin: 0;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  font-weight: 600;
}

.pd-sobre-contact-divider {
  width: 1px;
  height: 72px;
  background: rgba(6, 73, 63, 0.18);
}

.pd-sobre-contact-description {
  position: relative;
  z-index: 2;
}

.pd-sobre-contact-description p {
  max-width: 290px;
  margin: 0;
  color: var(--pd-sobre-text);
  font-size: 11.5px;
  line-height: 1.75;
  font-weight: 600;
}

.pd-sobre-contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.pd-sobre-contact-actions .pd-sobre-primary-button {
  min-width: 190px;
  min-height: 43px;
  padding: 10px 18px;
  font-size: 12px;
}

.pd-sobre-contact-email {
  color: var(--pd-sobre-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.pd-sobre-contact-email img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.pd-sobre-contact-decoration {
  position: absolute;
  z-index: 0;
  right: -5px;
  bottom: -18px;
  width: 150px;
  opacity: 0.72;
}

/* =========================================================
   MODAL DE HISTÓRIA
========================================================= */

.pd-sobre-modal {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.pd-sobre-modal.pd-sobre-modal-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.pd-sobre-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 32, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pd-sobre-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(800px, 100%);
  max-height: min(850px, calc(100vh - 64px));
  border-radius: 24px;
  background: var(--pd-sobre-cream);
  box-shadow: var(--pd-sobre-shadow-strong);
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  transition: transform 270ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pd-sobre-modal.pd-sobre-modal-open .pd-sobre-modal-dialog {
  transform: translateY(0) scale(1);
}

.pd-sobre-modal-close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0 !important;
  border-radius: 50%;
  background: var(--pd-sobre-white) !important;
  color: var(--pd-sobre-green) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 8px 22px rgba(6, 73, 63, 0.12) !important;
  font-size: 29px;
  line-height: 1;
}

.pd-sobre-modal-scroll {
  max-height: min(850px, calc(100vh - 64px));
  padding: 58px 72px 62px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 73, 63, 0.35) transparent;
}

.pd-sobre-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.pd-sobre-modal-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(6, 73, 63, 0.35);
}

.pd-sobre-modal-eyebrow {
  color: var(--pd-sobre-gold);
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pd-sobre-modal-scroll>h2 {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 600;
}

.pd-sobre-modal-divider {
  width: 180px;
  gap: 10px;
  margin: 22px 0 30px;
}

.pd-sobre-modal-divider span {
  flex: 1;
}

.pd-sobre-modal-divider img {
  width: 18px;
  height: 18px;
}

.pd-sobre-modal-content {
  color: var(--pd-sobre-text);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.pd-sobre-modal-content p {
  margin: 0 0 20px;
}

.pd-sobre-modal-content h3 {
  margin: 30px 0 13px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.pd-sobre-modal-back {
  margin-top: 25px;
  padding: 0;
  background: transparent;
  color: var(--pd-sobre-green);
  cursor: pointer;
  font-family: var(--pd-font-serif);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

/* =========================================================
   PAINÉIS CONTEXTUAIS
========================================================= */

.pd-sobre-popup-overlay {
  position: fixed;
  z-index: 2147482000;
  inset: 0;
  background: rgba(11, 43, 38, 0.22);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.pd-sobre-popup-overlay.pd-sobre-popup-overlay-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.pd-sobre-popup {
  position: fixed;
  z-index: 2147482500;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 40px));
  max-height: calc(100vh - 60px);
  padding: 48px 54px 46px;
  border: 1px solid rgba(205, 167, 136, 0.45);
  border-radius: 21px;
  background: #fbfaf4;
  box-shadow: var(--pd-sobre-shadow-strong);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 20px)) scale(0.98);
  transition: opacity 230ms ease, visibility 230ms ease, transform 230ms ease;
}

.pd-sobre-popup.pd-sobre-popup-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.pd-sobre-popup-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: 0 !important;
  border-radius: 50%;
  background: rgba(6, 73, 63, 0.06) !important;
  color: var(--pd-sobre-green) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.pd-sobre-popup-close:hover,
.pd-sobre-popup-close:focus-visible {
  background: rgba(6, 73, 63, 0.12) !important;
  outline: none;
}

.pd-sobre-popup-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
  object-fit: contain;
  display: block;
}

.pd-sobre-popup h3 {
  margin: 0 0 20px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 600;
}

.pd-sobre-popup-content {
  color: var(--pd-sobre-text);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.pd-sobre-popup-content p {
  margin: 0 0 18px;
}

.pd-sobre-popup-content h4 {
  margin: 26px 0 10px;
  color: var(--pd-sobre-green);
  font-family: var(--pd-font-serif);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.pd-sobre-modal-content ul,
.pd-sobre-popup-content ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pd-sobre-modal-content li,
.pd-sobre-popup-content li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 20px;
}

.pd-sobre-modal-content li::before,
.pd-sobre-popup-content li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--pd-sobre-green);
  font-weight: 700;
}

@media (max-width: 700px) {
  .pd-sobre-popup {
    width: calc(100% - 28px);
    max-height: calc(100vh - 28px);
    padding: 42px 26px 32px;
  }

  .pd-sobre-popup-content {
    font-size: 14px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
  .pd-sobre-hero {
    height: 465px;
    min-height: 465px;
    background-size: cover;
    background-position: center center;
  }

  .pd-sobre-hero-copy {
    width: 520px;
    max-width: 48%;
    min-width: 0;
    padding-left: 32px;
  }

  .pd-sobre-principles-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pd-sobre-principle-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pd-sobre-history-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 46px;
  }

  .pd-sobre-quote-card {
    padding-left: 43px;
    padding-right: 43px;
  }

  .pd-sobre-professional-card {
    grid-template-columns: 1.5fr repeat(2, 1fr);
    row-gap: 34px;
  }

  .pd-sobre-profile-block {
    grid-row: span 2;
  }

  .pd-sobre-professional-item:nth-child(4) {
    border-left: 0;
  }

  .pd-sobre-contact-card {
    padding-right: 80px;
    grid-template-columns: 75px 1.3fr 1px 1fr;
  }

  .pd-sobre-contact-actions {
    grid-column: 2 / 5;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

@media (max-width: 850px) {
  .pd-sobre-hero {
    height: 465px;
    min-height: 465px;
    background-size: cover;
    background-position: center center;
  }

  .pd-sobre-hero-copy {
    width: 100%;
    max-width: 58%;
    min-width: 0;
    padding: 60px 0 60px 10px;
  }

  .pd-sobre-principles-grid {
    grid-template-columns: 1fr;
    padding: 20px 30px;
  }

  .pd-sobre-principle-item {
    min-height: 120px;
    justify-content: flex-start;
  }

  .pd-sobre-principle-item+.pd-sobre-principle-item {
    border-top: 1px solid rgba(6, 73, 63, 0.13);
    border-left: 0;
  }

  .pd-sobre-history-grid {
    grid-template-columns: 1fr;
  }

  .pd-sobre-history-content {
    padding-left: 0;
  }

  .pd-sobre-quote-card {
    min-height: 540px;
  }

  .pd-sobre-professional-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-sobre-profile-block {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(6, 73, 63, 0.13);
  }

  .pd-sobre-professional-item {
    border-left: 0;
  }

  .pd-sobre-professional-item:nth-child(even) {
    border-left: 1px solid rgba(6, 73, 63, 0.13);
  }

  .pd-sobre-journey-grid {
    grid-template-columns: 1fr;
  }

  .pd-sobre-contact-card {
    padding: 30px 40px;
    grid-template-columns: 76px 1fr;
    gap: 24px;
  }

  .pd-sobre-contact-divider {
    display: none;
  }

  .pd-sobre-contact-description {
    grid-column: 1 / -1;
  }

  .pd-sobre-contact-description p {
    max-width: none;
  }

  .pd-sobre-contact-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .pd-sobre-hero-copy {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pd-sobre-hero-copy > p,
  .pd-sobre-primary-button {
    display: none;
  }

  .pd-sobre-hero-copy h1 {
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-size: 54px;
    font-style: italic;
    line-height: 1;
  }
}

/* =====================================================
   TELEMÓVEL
===================================================== */

@media (max-width: 640px) {

  .pd-sobre-inner,
  .pd-sobre-hero-content {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .pd-sobre-hero {
    height: 330px;
    min-height: 330px;
    align-items: center;
    background-size: cover;
    background-position: center center;
  }

  .pd-sobre-hero::before {
    background: rgba(18, 63, 55, 0.08);
  }

  .pd-sobre-hero-copy {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pd-sobre-hero-copy>p,
  .pd-sobre-primary-button {
    display: none;
  }

  .pd-sobre-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-family: var(--pd-font-serif);
    font-size: 42px;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .pd-sobre-title-divider {
    width: 220px;
    margin-top: 20px;
    margin-bottom: 22px;
  }

  .pd-sobre-hero-copy>p {
    max-width: 295px;
    font-size: 14px;
    line-height: 1.65;
  }

  .pd-sobre-primary-button {
    min-height: 47px;
    font-size: 13px;
  }

  .pd-sobre-principles {
    padding-top: 18px;
  }

  .pd-sobre-principles-grid {
    padding: 12px 20px;
    border-radius: 18px;
  }

  .pd-sobre-principle-item {
    min-height: 114px;
    padding: 16px 4px;
    gap: 17px;
  }

  .pd-sobre-principle-icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .pd-sobre-principle-icon img {
    width: 41px;
    height: 41px;
  }

  .pd-sobre-principle-icon-large {
    width: 72px;
    height: 78px;
    flex-basis: 72px;
  }

  .pd-sobre-principle-icon-large img {
    width: 62px;
    height: 72px;
  }

  .pd-sobre-principle-copy h2 {
    font-size: 21px;
  }

  .pd-sobre-principle-copy p {
    font-size: 12px;
  }

  .pd-sobre-history {
    padding-top: 16px;
  }

  .pd-sobre-history-content h2 {
    font-size: 32px;
  }

  .pd-sobre-history-excerpt {
    font-size: 13.5px;
    line-height: 1.68;
  }

  .pd-sobre-history-button {
    font-size: 13px;
  }

  .pd-sobre-quote-card {
    min-height: 540px;
    padding: 48px 28px 210px;
  }

  .pd-sobre-quote-card blockquote p {
    font-size: 14px;
    line-height: 1.65;
  }

  .pd-sobre-quote-woman {
    right: 20px;
    bottom: 35px;
    width: 135px;
  }

  .pd-sobre-quote-decoration-top {
    width: 135px;
  }

  .pd-sobre-quote-decoration-bottom {
    right: 110px;
    width: 115px;
  }

  .pd-sobre-professional-card {
    padding: 27px 20px;
    grid-template-columns: 1fr;
  }

  .pd-sobre-profile-block {
    flex-direction: column;
    text-align: center;
  }

  .pd-sobre-profile-photo {
    width: 125px;
    height: 125px;
    flex-basis: 125px;
  }

  .pd-sobre-profile-divider {
    margin-right: auto;
    margin-left: auto;
  }

  .pd-sobre-professional-item,
  .pd-sobre-professional-item:nth-child(even) {
    min-height: auto;
    padding: 25px 12px;
    border-top: 1px solid rgba(6, 73, 63, 0.13);
    border-left: 0;
  }

  .pd-sobre-professional-item p {
    max-width: 230px;
  }

  .pd-sobre-journey-header h2 {
    font-size: 30px;
  }

  .pd-sobre-journey-header p {
    font-size: 12.5px;
  }

  .pd-sobre-journey-card {
    min-height: 83px;
    padding: 11px 13px;
    grid-template-columns: 45px 1fr 18px;
    gap: 12px;
  }

  .pd-sobre-journey-card-icon {
    width: 45px;
    height: 45px;
  }

  .pd-sobre-journey-card-copy strong {
    font-size: 14px;
  }

  .pd-sobre-journey-card-copy small {
    font-size: 9.5px;
  }

  .pd-sobre-contact-card {
    padding: 30px 23px 35px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pd-sobre-contact-icon {
    margin: 0 auto;
  }

  .pd-sobre-contact-title h2 {
    font-size: 23px;
  }

  .pd-sobre-contact-description p {
    font-size: 11.5px;
  }

  .pd-sobre-contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .pd-sobre-contact-decoration {
    width: 100px;
    opacity: 0.42;
  }

  .pd-sobre-modal {
    padding: 10px;
  }

  .pd-sobre-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .pd-sobre-modal-scroll {
    max-height: calc(100vh - 20px);
    padding: 58px 24px 40px;
  }

  .pd-sobre-modal-close {
    top: 12px;
    right: 12px;
  }

  .pd-sobre-modal-content {
    font-size: 14px;
    line-height: 1.75;
  }

  .pd-sobre-popup {
    width: calc(100% - 24px);
    max-height: calc(100vh - 30px);
    padding: 43px 25px 33px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pd-sobre-page *,
  .pd-sobre-page *::before,
  .pd-sobre-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}