/**
 * Paz Eterna — tema WordPress
 * Componentes BEM com prefixo pe-
 */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
  --pe-brand: #3f4194;
  --pe-secondary: #42c0f0;
  --pe-plan-muted: #e9ebf5;
  --pe-muted-fg: #5c5f8a;
  --pe-border: #e4e7f0;
  --pe-white: #ffffff;
  --pe-lime: #42c0f0;
  --pe-lime-fg: #3f4194;
  --pe-brand-fg: #ffffff;
  --pe-amber-bg: #fef3c7;
  --pe-amber-fg: #78350f;
  --pe-amber-icon: #f59e0b;
  --pe-radius-sm: 0.5rem;
  --pe-radius-md: 1rem;
  --pe-radius-lg: 1.25rem;
  --pe-radius-xl: 1.5rem;
  --pe-radius-2xl: 2rem;
  --pe-radius-full: 9999px;
  --pe-shadow-sm: 0 1px 3px rgba(63, 65, 148, 0.08);
  --pe-shadow-md: 0 4px 14px rgba(63, 65, 148, 0.12);
  --pe-shadow-lg: 0 10px 40px rgba(63, 65, 148, 0.18);
  --pe-container: 72rem;
  --pe-container-wide: 80rem;
  --pe-header-h: 4rem;
  --pe-topbar-h: 2.25rem;
  --pe-font: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --pe-transition: 0.2s ease;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pe-font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--pe-brand);
  background-color: var(--pe-white);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--pe-secondary);
  outline-offset: 2px;
}

/* ==========================================================================
   Site layout
   ========================================================================== */

.pe-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pe-site__main {
  flex: 1 0 auto;
}

/* ==========================================================================
   Container
   ========================================================================== */

.pe-container {
  width: 100%;
  max-width: var(--pe-container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .pe-container {
    padding-inline: 2rem;
  }
}

.pe-container--wide {
  max-width: var(--pe-container-wide);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.pe-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;
}

.pe-text-center {
  text-align: center;
}

.pe-text-muted {
  color: var(--pe-muted-fg);
}

.pe-hidden {
  display: none !important;
}

.pe-grid {
  display: grid;
  gap: 1.5rem;
}

.pe-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pe-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pe-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pe-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pe-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pe-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pe-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pe-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pe-section {
  padding-block: 3rem;
}

@media (min-width: 768px) {
  .pe-section {
    padding-block: 4rem;
  }
}

.pe-section--muted {
  background-color: var(--pe-plan-muted);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.pe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--pe-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transition: transform var(--pe-transition), background-color var(--pe-transition),
    color var(--pe-transition), border-color var(--pe-transition), opacity var(--pe-transition);
  white-space: nowrap;
}

.pe-btn:hover {
  transform: scale(1.02);
}

.pe-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.pe-btn--brand {
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
}

.pe-btn--brand:hover {
  background-color: #35377d;
}

.pe-btn--outline {
  background-color: var(--pe-white);
  color: var(--pe-brand);
  border: 2px solid var(--pe-brand);
}

.pe-btn--outline:hover {
  background-color: rgba(63, 65, 148, 0.05);
}

.pe-btn--secondary {
  background-color: var(--pe-secondary);
  color: var(--pe-brand);
}

.pe-btn--secondary:hover {
  background-color: #2eb8e8;
}

.pe-btn--lime {
  background-color: var(--pe-lime);
  color: var(--pe-lime-fg);
}

.pe-btn--lime:hover {
  background-color: #2eb8e8;
}

.pe-btn--block {
  width: 100%;
}

.pe-btn--sm {
  padding: 0.625rem 1rem;
  font-size: 0.6875rem;
}

.pe-btn--lg {
  padding: 1rem 2rem;
  font-size: 0.8125rem;
}

.pe-btn__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.pe-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}

.pe-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
  font-size: 0.75rem;
}

.pe-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--pe-topbar-h);
  padding-block: 0.375rem;
}

.pe-topbar__start {
  display: flex;
  align-items: center;
  min-width: 0;
}

.pe-topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: inherit;
  white-space: nowrap;
}

.pe-topbar__phone:hover {
  color: var(--pe-secondary);
}

.pe-topbar__phone svg {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

.pe-topbar__social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

.pe-topbar__social-link {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--pe-radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: inherit;
  transition: background-color var(--pe-transition), color var(--pe-transition);
}

.pe-topbar__social-link:hover {
  background-color: var(--pe-secondary);
  color: var(--pe-brand);
}

.pe-topbar__a11y {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-left: auto;
}

.pe-topbar__a11y-label {
  font-weight: 600;
  white-space: nowrap;
}

.pe-topbar__a11y-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.pe-topbar__a11y-btn {
  min-width: 2rem;
  height: 1.75rem;
  padding: 0 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--pe-radius-sm);
  background-color: transparent;
  font-size: 0.6875rem;
  font-weight: 700;
  color: inherit;
  transition: background-color var(--pe-transition), border-color var(--pe-transition);
}

.pe-topbar__a11y-btn:hover,
.pe-topbar__a11y-btn[aria-pressed="true"] {
  border-color: var(--pe-secondary);
  background-color: rgba(66, 192, 240, 0.2);
}

.pe-topbar__a11y-btn--contrast {
  padding-inline: 0.625rem;
}

@media (max-width: 767px) {
  .pe-topbar__a11y-label {
    display: none;
  }

  .pe-topbar__inner {
    gap: 0.5rem;
  }

  .pe-topbar__a11y {
    margin-left: auto;
  }
}

/* Acessibilidade — preferências do visitante */
html.pe-a11y-font--1 {
  font-size: 93.75%;
}

html.pe-a11y-font-1 {
  font-size: 106.25%;
}

html.pe-a11y-font-2 {
  font-size: 118.75%;
}

html.pe-a11y-contrast {
  --pe-brand: #000000;
  --pe-secondary: #ffff00;
  --pe-plan-muted: #ffffff;
  --pe-muted-fg: #000000;
  --pe-border: #000000;
  --pe-white: #ffffff;
  --pe-lime: #ffff00;
  --pe-lime-fg: #000000;
  --pe-brand-fg: #ffffff;
}

html.pe-a11y-contrast .pe-topbar {
  background-color: #000;
  border-bottom-color: #ffff00;
}

html.pe-a11y-contrast .pe-header {
  background-color: #fff;
  border-bottom-color: #000;
}

html.pe-a11y-contrast .pe-btn--brand {
  background-color: #000;
  color: #ffff00;
  border: 2px solid #000;
}

html.pe-a11y-contrast .pe-btn--outline {
  border-color: #000;
  color: #000;
}

html.pe-a11y-contrast a:focus-visible,
html.pe-a11y-contrast button:focus-visible {
  outline: 3px solid #ffff00;
  outline-offset: 2px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.pe-header {
  width: 100%;
  border-bottom: 1px solid var(--pe-border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.pe-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: var(--pe-header-h);
  max-width: var(--pe-container-wide);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .pe-header__inner {
    gap: 1rem;
    height: 4rem;
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pe-header__inner {
    padding-inline: 2rem;
  }
}

.pe-header__logo {
  flex-shrink: 0;
  display: inline-flex;
}

.pe-header__logo img {
  width: auto;
  height: 2rem;
}

@media (min-width: 640px) {
  .pe-header__logo img {
    height: 2.5rem;
  }
}

@media (max-width: 1023px) {
  .pe-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .pe-header__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .pe-header__actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .pe-header__nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .pe-header__inner {
    display: flex;
  }

  .pe-header__logo {
    justify-self: auto;
  }

  .pe-header__actions {
    grid-column: auto;
    grid-row: auto;
  }
}

.pe-header__nav {
  display: none;
  flex: 1;
  min-width: 0;
  justify-content: center;
  padding-inline: 0.5rem;
}

@media (min-width: 1024px) {
  .pe-header__nav {
    display: flex;
  }
}

.pe-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

.pe-header__nav-link {
  display: block;
  padding: 0.5rem 0.625rem;
  border-radius: var(--pe-radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(63, 65, 148, 0.8);
  transition: background-color var(--pe-transition), color var(--pe-transition);
}

@media (min-width: 1280px) {
  .pe-header__nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

.pe-header__nav-link:hover,
.pe-header__nav-link--active {
  background-color: rgba(63, 65, 148, 0.05);
  color: var(--pe-brand);
  font-weight: 600;
}

.pe-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .pe-header__actions {
    gap: 0.75rem;
  }
}

.pe-header__cta {
  display: none;
}

@media (min-width: 640px) {
  .pe-header__cta {
    display: inline-flex;
  }
}

.pe-header__cta-short {
  display: inline;
}

.pe-header__cta-full {
  display: none;
}

@media (min-width: 1024px) {
  .pe-header__cta-short {
    display: none;
  }

  .pe-header__cta-full {
    display: inline;
  }
}

.pe-header__menu-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(63, 65, 148, 0.2);
  border-radius: var(--pe-radius-sm);
  color: var(--pe-brand);
}

@media (min-width: 1024px) {
  .pe-header__menu-btn {
    display: none;
  }
}

/* Mobile drawer */
.pe-header__drawer {
  visibility: hidden;
  pointer-events: none;
}

.pe-header__drawer--open {
  visibility: visible;
  pointer-events: auto;
}

.pe-header__drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(63, 65, 148, 0.4);
  opacity: 0;
  transition: opacity var(--pe-transition);
}

.pe-header__drawer--open .pe-header__drawer-overlay {
  opacity: 1;
}

.pe-header__drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 51;
  display: flex;
  flex-direction: column;
  width: min(100vw, 20rem);
  max-width: 20rem;
  height: 100%;
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.pe-header__drawer--open .pe-header__drawer-panel {
  transform: translateX(0);
}

.pe-header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  padding-right: 3.5rem;
  border-bottom: 1px solid var(--pe-border);
}

.pe-header__drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--pe-radius-sm);
  color: var(--pe-muted-fg);
}

.pe-header__drawer-close:hover {
  background-color: var(--pe-plan-muted);
}

.pe-header__drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
}

.pe-header__drawer-nav .pe-header__nav-link {
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
}

.pe-header__drawer-footer {
  padding: 1rem;
  border-top: 1px solid var(--pe-border);
}

.pe-header__drawer-footer .pe-btn {
  width: 100%;
}

body.pe-menu-open {
  overflow: hidden;
}

/* ==========================================================================
   Hero carousel
   ========================================================================== */

.pe-hero-section {
  padding-top: 0;
  padding-bottom: 2.5rem;
  background-color: var(--pe-white);
}

@media (max-width: 767px) {
  .pe-hero-section > .pe-container.pe-container--wide {
    padding-inline: 0;
  }

  .pe-hero__intro {
    padding-inline: 1rem;
  }

  .pe-hero__carousel {
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .pe-hero-section {
    padding-bottom: 3.5rem;
  }
}

.pe-hero {
  background-color: var(--pe-white);
}

.pe-hero__wrap {
  position: relative;
}

.pe-hero__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 2rem;
}

@media (min-width: 768px) {
  .pe-hero__carousel {
    border-radius: 0 0 2.75rem;
  }
}

.pe-hero__track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.pe-hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

/* Full banner slide */
.pe-hero__slide--full {
  display: block;
  overflow: hidden;
  line-height: 0;
  background-color: var(--pe-brand);
}

.pe-hero__slide--full img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(520px, 75vh);
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .pe-hero__slide--full img {
    max-height: min(360px, 52vh);
    min-height: 12rem;
    object-fit: cover;
  }
}

/* Split slide with curved panel */
.pe-hero__slide--split {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background-color: var(--pe-brand);
}

@media (min-width: 640px) {
  .pe-hero__slide--split {
    min-height: 420px;
  }
}

@media (min-width: 768px) {
  .pe-hero__slide--split {
    min-height: 480px;
  }
}

.pe-hero__slide--split > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pe-hero__slide-deco {
  pointer-events: none;
  position: absolute;
  border-radius: 55%;
  background-color: var(--pe-secondary);
}

.pe-hero__slide-deco--1 {
  left: -3rem;
  top: -2.5rem;
  width: 13rem;
  height: 9rem;
}

@media (min-width: 768px) {
  .pe-hero__slide-deco--1 {
    width: 16rem;
    height: 11rem;
  }
}

.pe-hero__slide-deco--2 {
  display: none;
  bottom: 1.5rem;
  right: 42%;
  width: 5rem;
  height: 3.5rem;
  border-radius: var(--pe-radius-full);
}

@media (min-width: 768px) {
  .pe-hero__slide-deco--2 {
    display: block;
  }
}

.pe-hero__panel {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
  background-color: var(--pe-brand);
}

@media (min-width: 640px) {
  .pe-hero__panel {
    padding: 2rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .pe-hero__panel {
    inset: 0;
    inset-inline: auto 0;
    left: auto;
    width: 46%;
    max-width: 540px;
    padding: 3rem 2.5rem;
    border-top-left-radius: 100% 38%;
    border-bottom-left-radius: 100% 38%;
  }
}

@media (min-width: 1024px) {
  .pe-hero__panel {
    width: 42%;
    padding: 3rem 3.5rem;
  }
}

.pe-hero__badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pe-secondary);
}

@media (min-width: 768px) {
  .pe-hero__badge {
    font-size: 0.875rem;
  }
}

.pe-hero__headline {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--pe-secondary);
}

@media (min-width: 640px) {
  .pe-hero__headline {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .pe-hero__headline {
    font-size: 2.25rem;
  }
}

.pe-hero__subtitle {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 640px) {
  .pe-hero__subtitle {
    font-size: 1rem;
  }
}

.pe-hero__cta-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pe-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pe-hero__cta-link:hover {
  opacity: 0.9;
}

/* Hero navigation — barra inferior + setas */
.pe-hero__nav {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .pe-hero__nav {
    right: 0.75rem;
    bottom: 0.625rem;
    left: 0.75rem;
    gap: 0.5rem;
    padding: 0.375rem 0.25rem;
    border-radius: var(--pe-radius-full);
    background-color: rgba(63, 65, 148, 0.35);
    backdrop-filter: blur(4px);
  }

  .pe-hero__carousel--light .pe-hero__nav {
    background-color: rgba(255, 255, 255, 0.82);
  }

  .pe-hero__arrow {
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--pe-brand);
  }

  .pe-hero__carousel--light .pe-hero__arrow {
    background-color: rgba(63, 65, 148, 0.08);
  }

  .pe-hero__dots {
    max-width: none;
    flex: 1;
  }
}

@media (min-width: 768px) {
  .pe-hero__nav {
    right: 1.5rem;
    bottom: 1.25rem;
    left: 1.5rem;
    gap: 1rem;
  }
}

.pe-hero__arrow {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: var(--pe-radius-full);
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: background-color var(--pe-transition), transform var(--pe-transition);
}

.pe-hero__arrow:hover {
  background-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.05);
}

.pe-hero__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

.pe-hero__dots {
  display: flex;
  flex: 1;
  gap: 0.25rem;
  max-width: 14rem;
  height: 0.375rem;
  padding: 0;
  border-radius: var(--pe-radius-full);
  background-color: rgba(66, 192, 240, 0.45);
  overflow: hidden;
}

.pe-hero__dot {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  transition: background-color var(--pe-transition), flex-grow var(--pe-transition);
}

.pe-hero__dot--active {
  flex-grow: 1.6;
  background-color: #fff;
  transform: none;
}

.pe-hero__dot:hover:not(.pe-hero__dot--active) {
  background-color: rgba(255, 255, 255, 0.35);
}

.pe-hero__carousel--light .pe-hero__arrow {
  background-color: rgba(63, 65, 148, 0.08);
  color: var(--pe-brand);
}

.pe-hero__carousel--light .pe-hero__arrow:hover {
  background-color: rgba(63, 65, 148, 0.14);
}

.pe-hero__carousel--light .pe-hero__dots {
  background-color: rgba(63, 65, 148, 0.12);
}

.pe-hero__carousel--light .pe-hero__dot--active {
  background-color: var(--pe-brand);
}

.pe-hero__carousel--light .pe-hero__dot:hover:not(.pe-hero__dot--active) {
  background-color: rgba(63, 65, 148, 0.22);
}

/* Hero intro below carousel */
.pe-hero__intro {
  margin-top: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .pe-hero__intro {
    margin-top: 3rem;
  }
}

.pe-hero__intro-title {
  max-width: 56rem;
  margin-inline: auto;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-hero__intro-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .pe-hero__intro-title {
    font-size: 2.75rem;
  }
}

.pe-hero__intro-highlight {
  position: relative;
  display: inline-block;
}

.pe-hero__intro-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 4px;
  background-color: var(--pe-secondary);
}

.pe-hero__intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pe-hero__intro-link {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pe-brand);
}

.pe-hero__intro-link:hover {
  color: var(--pe-secondary);
  text-decoration: underline;
}

.pe-hero__intro .pe-stats {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(63, 65, 148, 0.12);
}

@media (min-width: 768px) {
  .pe-hero__intro .pe-stats {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
  }
}

/* ==========================================================================
   Stats bar
   ========================================================================== */

.pe-stats {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pe-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pe-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pe-stats__item {
  text-align: center;
}

@media (min-width: 768px) {
  .pe-stats__item {
    text-align: left;
  }
}

.pe-stats__value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-stats__value {
    font-size: 2.25rem;
  }
}

.pe-stats__label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-muted-fg);
}

.pe-stats--dark .pe-stats__value {
  color: var(--pe-secondary);
}

.pe-stats--dark .pe-stats__label {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Benefits tabs
   ========================================================================== */

.pe-benefits {
  background-color: var(--pe-plan-muted);
}

.pe-benefits__tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  border-bottom: 1px solid rgba(63, 65, 148, 0.1);
  padding-bottom: 0;
}

.pe-benefits__tab {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-muted-fg);
  transition: color var(--pe-transition), border-color var(--pe-transition);
  cursor: pointer;
}

@media (min-width: 768px) {
  .pe-benefits__tab {
    font-size: 0.875rem;
  }
}

.pe-benefits__tab:hover {
  color: var(--pe-brand);
}

.pe-benefits__tab--active {
  border-bottom-color: var(--pe-brand);
  color: var(--pe-brand);
}

.pe-benefits__tab-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-sm);
  color: var(--pe-brand);
}

.pe-benefits__tab-icon svg {
  width: 1rem;
  height: 1rem;
}

.pe-benefits__tab-icon-img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.pe-benefits__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pe-benefits__image-placeholder .pe-benefits__tab-icon-img,
.pe-benefits__image-placeholder svg {
  width: 3rem;
  height: 3rem;
}

.pe-benefits__panels {
  margin-top: 2.5rem;
}

.pe-benefits__panel {
  display: none;
}

.pe-benefits__panel--active {
  display: block;
}

.pe-benefits__content {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pe-benefits__content {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.pe-benefits__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-benefits__title {
    font-size: 2.25rem;
  }
}

.pe-benefits__desc {
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--pe-muted-fg);
}

.pe-benefits__features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pe-benefits__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pe-benefits__feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-sm);
}

.pe-benefits__feature-icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-plan-muted);
  color: var(--pe-brand);
}

.pe-benefits__feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pe-benefits__feature-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pe-brand);
}

.pe-benefits__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pe-benefits__image-area {
  position: relative;
}

.pe-benefits__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0 1.5rem 0 3rem;
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-md);
}

.pe-benefits__image-wrap img,
.pe-benefits__image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pe-benefits__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(63, 65, 148, 0.1), rgba(66, 192, 240, 0.15));
  color: rgba(63, 65, 148, 0.2);
}

.pe-benefits__image-placeholder svg {
  width: 8rem;
  height: 8rem;
}

.pe-benefits__image-wave {
  pointer-events: none;
  position: absolute;
  left: -0.25rem;
  top: 1.5rem;
  display: none;
  height: 80%;
  width: 1.5rem;
  color: var(--pe-secondary);
}

@media (min-width: 1024px) {
  .pe-benefits__image-wave {
    display: block;
  }
}

.pe-benefits__image-caption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-align: right;
  color: var(--pe-muted-fg);
}

/* ==========================================================================
   Plans grid & plan card
   ========================================================================== */

.pe-plans__header {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.pe-plans__eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pe-secondary);
}

.pe-plans__title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-plans__title {
    font-size: 2.25rem;
  }
}

.pe-plans__desc {
  margin-top: 1rem;
  color: var(--pe-muted-fg);
}

.pe-plans__grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pe-plans__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pe-plan-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-lg);
}

.pe-plan-card__head {
  padding: 2rem 1.5rem 1.25rem;
  text-align: center;
}

.pe-plan-card__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-lime);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pe-brand);
}

.pe-plan-card__logo {
  margin-top: 0;
}

.pe-plan-card__logo img,
.pe-plan-card__logo .pe-plan-logo__image {
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: 3.5rem;
  max-height: 5.5rem;
  object-fit: contain;
}

.pe-plan-card__beneficiaries,
.pe-plan-card__highlights {
  padding: 1.5rem;
  background-color: var(--pe-plan-muted);
}

.pe-plan-card__beneficiaries-title,
.pe-plan-card__highlights-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-brand);
}

.pe-plan-card__list {
  margin-top: 1.25rem;
}

.pe-plan-card__list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(63, 65, 148, 0.9);
}

.pe-plan-card__list li:last-child {
  margin-bottom: 0;
}

.pe-plan-card__check {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-lime);
  color: var(--pe-brand);
}

.pe-plan-card__check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.pe-plan-card__footer {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
  text-align: center;
}

.pe-plan-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.pe-plans__footnote {
  margin-top: 2rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--pe-muted-fg);
}

.pe-plans__link {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--pe-brand);
}

.pe-plans__link:hover {
  color: var(--pe-secondary);
  text-decoration: underline;
}

.pe-plans__link a {
  color: inherit;
  font-weight: inherit;
}

.pe-plans__link a:hover {
  color: var(--pe-secondary);
  text-decoration: underline;
}

/* Plan logo component */
.pe-plan-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.pe-plan-logo__brand {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pe-brand);
  letter-spacing: -0.02em;
}

.pe-plan-logo__sub {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--pe-secondary);
}

.pe-plan-logo__image {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: 2.75rem;
  object-fit: contain;
}

.pe-plan-logo--sm .pe-plan-logo__image {
  height: 2.25rem;
}

.pe-plan-logo--lg .pe-plan-logo__image {
  height: 3.5rem;
  max-height: 5.5rem;
}

.pe-plan-logo--sm .pe-plan-logo__brand {
  font-size: 1rem;
}

/* ==========================================================================
   Modal (plan & conveniado)
   ========================================================================== */

.pe-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  pointer-events: none;
}

.pe-modal--open {
  visibility: visible;
  pointer-events: auto;
}

.pe-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(63, 65, 148, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pe-modal--open .pe-modal__overlay {
  opacity: 1;
}

.pe-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem);
  max-width: 32rem;
  max-height: 90vh;
  overflow: hidden;
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-lg);
  transform: scale(0.96) translateY(8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pe-modal--open .pe-modal__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.pe-modal__dialog--lg {
  max-width: 42rem;
}

.pe-modal__dialog--legal {
  max-width: 48rem;
}

.pe-modal__header {
  position: relative;
  flex-shrink: 0;
  padding: 1.5rem;
  background-color: var(--pe-white);
}

.pe-modal__logo-wrap {
  display: flex;
  justify-content: center;
}

.pe-modal__logo-wrap .pe-plan-logo__image {
  width: auto;
  max-width: 100%;
  height: 3.5rem;
  max-height: 5.5rem;
  object-fit: contain;
}

.pe-modal__footer .pe-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pe-modal__footer .pe-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

.pe-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-plan-muted);
  color: var(--pe-muted-fg);
  transition: background-color var(--pe-transition);
}

.pe-modal__close:hover {
  background-color: var(--pe-border);
}

.pe-modal__title {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-brand);
}

.pe-modal__title--lg {
  margin-top: 0;
  padding-right: 2.5rem;
  font-size: 1.25rem;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}

.pe-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background-color: var(--pe-plan-muted);
}

.pe-modal__section-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-modal__section--extra {
  margin-top: 2rem;
}

.pe-modal__extra-content {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pe-brand);
}

.pe-modal__extra-content p {
  margin: 0 0 0.75rem;
}

.pe-modal__extra-content p:last-child {
  margin-bottom: 0;
}

.pe-modal__section + .pe-modal__section {
  margin-top: 2rem;
}

.pe-modal__list {
  margin-top: 1rem;
}

.pe-modal__list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pe-brand);
}

.pe-modal__list .pe-plan-card__check {
  margin-top: 0.125rem;
}

.pe-modal__footer {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--pe-border);
  background-color: var(--pe-white);
}

.pe-modal__meta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pe-brand);
}

.pe-modal__meta--muted {
  margin-top: 0.25rem;
  font-weight: 400;
  color: var(--pe-muted-fg);
}

.pe-modal__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--pe-muted-fg);
}

.pe-modal__address {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pe-modal__tag {
  padding: 0.25rem 0.625rem;
  border-radius: var(--pe-radius-sm);
  background-color: var(--pe-plan-muted);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pe-muted-fg);
}

.pe-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .pe-modal__actions {
    flex-direction: row;
  }
}

.pe-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  padding: 0.125rem 0.625rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-amber-bg);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-amber-fg);
}

.pe-modal__badge svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--pe-amber-icon);
  color: var(--pe-amber-icon);
}

body.pe-modal-open {
  overflow: hidden;
}

/* Modal — texto contratual dos planos */
.pe-modal-legal {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--pe-brand);
}

.pe-modal-legal__section + .pe-modal-legal__section {
  margin-top: 0;
}

.pe-modal-legal__heading {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--pe-brand);
}

.pe-modal-legal__number {
  margin-right: 0.25rem;
}

.pe-modal-legal__list {
  margin-top: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.pe-modal-legal__item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.pe-modal-legal__item:last-child {
  margin-bottom: 0;
}

.pe-modal-legal__item-number {
  flex-shrink: 0;
  min-width: 2rem;
  font-weight: 700;
}

.pe-modal-legal__observation {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(63, 65, 148, 0.12);
}

.pe-modal-legal__observation-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-modal-legal__observation-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.pe-modal-legal__observation-list li {
  margin-bottom: 0.5rem;
}

.pe-modal-legal__attention {
  padding-top: 0.25rem;
}

.pe-modal-legal__attention-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-modal-legal__attention-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.pe-modal-legal__attention-list li {
  margin-bottom: 0.5rem;
}

.pe-modal-legal__extra-section {
  padding-top: 1rem;
  border-top: 1px solid rgba(63, 65, 148, 0.12);
}

.pe-modal-legal__extra-content {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--pe-brand);
}

.pe-modal-legal__extra-content p {
  margin-bottom: 0.75rem;
}

.pe-modal-legal__extra-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Services carousel
   ========================================================================== */

.pe-services-carousel {
  overflow: hidden;
  background-color: var(--pe-secondary);
}

.pe-services-carousel__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
  .pe-services-carousel__inner {
    padding: 4rem 2rem;
  }
}

.pe-services-carousel__header {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.pe-services-carousel__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pe-white);
}

.pe-services-carousel__eyebrow::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 1px;
  margin: 0.75rem auto 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.pe-services-carousel__title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-services-carousel__title {
    font-size: 2.75rem;
  }
}

.pe-services-carousel__viewport {
  margin-top: 3rem;
  margin-inline: -1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pe-services-carousel__viewport {
    margin-inline: -2rem;
  }
}

.pe-services-carousel__track {
  display: flex;
  gap: 1rem;
  padding-inline: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pe-services-carousel__track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .pe-services-carousel__track {
    gap: 1.5rem;
    padding-inline: 2rem;
  }
}

.pe-services-carousel__card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  text-align: center;
  box-shadow: var(--pe-shadow-md);
}

@media (min-width: 640px) {
  .pe-services-carousel__card {
    flex: 0 0 55%;
  }
}

@media (min-width: 768px) {
  .pe-services-carousel__card {
    flex: 0 0 42%;
  }
}

@media (min-width: 1024px) {
  .pe-services-carousel__card {
    flex: 0 0 32%;
  }
}

@media (min-width: 1280px) {
  .pe-services-carousel__card {
    flex: 0 0 24%;
  }
}

.pe-services-carousel__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--pe-brand);
}

.pe-services-carousel__card-icon svg,
.pe-services-carousel__card-icon-img {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.pe-services-carousel__card-title {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--pe-brand);
}

.pe-services-carousel__card-sub {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pe-brand);
}

.pe-services-carousel__card-text {
  flex: 1;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(63, 65, 148, 0.85);
}

.pe-services-carousel__footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .pe-services-carousel__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pe-services-carousel__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pe-services-carousel__arrow {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--pe-brand);
  transition: opacity var(--pe-transition);
}

.pe-services-carousel__arrow:hover:not(:disabled) {
  opacity: 0.7;
}

.pe-services-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pe-services-carousel__arrow svg {
  width: 1.75rem;
  height: 1.75rem;
}

.pe-services-carousel__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pe-services-carousel__ctas {
    justify-content: flex-end;
    flex: 1;
  }
}

.pe-services-carousel__link-cta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pe-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pe-services-carousel__link-cta:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Page header
   ========================================================================== */

.pe-page-header {
  background-color: var(--pe-white);
  border-bottom: 1px solid var(--pe-border);
}

.pe-page-header--flush {
  border-bottom: none;
}

.pe-page-header--brand {
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
  border-bottom: none;
}

.pe-page-header__inner {
  padding-block: 2.5rem;
}

@media (min-width: 768px) {
  .pe-page-header__inner {
    padding-block: 3rem;
  }
}

.pe-page-header__breadcrumb {
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-page-header__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.pe-page-header__breadcrumb a:hover {
  color: var(--pe-brand);
}

.pe-page-header__breadcrumb-current {
  font-weight: 500;
  color: var(--pe-brand);
}

.pe-page-header__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pe-secondary);
}

.pe-page-header__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-page-header--brand .pe-page-header__title {
  color: var(--pe-brand-fg);
}

.pe-page-header__title--spaced {
  margin-top: 1.5rem;
}

.pe-page-header__breadcrumb + .pe-page-header__title {
  margin-top: 1.5rem;
}

.pe-page-header__desc {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pe-muted-fg);
}

@media (min-width: 768px) {
  .pe-page-header__desc {
    font-size: 1.125rem;
  }
}

.pe-page-header--brand .pe-page-header__desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   CTA section
   ========================================================================== */

.pe-cta {
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
}

.pe-cta__inner {
  max-width: 64rem;
  margin-inline: auto;
  padding: 5rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .pe-cta__inner {
    padding-inline: 2rem;
  }
}

.pe-cta__title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .pe-cta__title {
    font-size: 3rem;
  }
}

.pe-cta__desc {
  margin-top: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
}

.pe-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.pe-footer {
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
}

.pe-footer__grid {
  display: grid;
  gap: 3rem;
  max-width: var(--pe-container-wide);
  margin-inline: auto;
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .pe-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    padding-inline: 2rem;
  }
}

.pe-footer__brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .pe-footer__brand {
    grid-column: span 2;
  }
}

.pe-footer__logo img {
  height: 3rem;
  width: auto;
}

.pe-footer__tagline {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.pe-footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pe-secondary);
}

.pe-footer__links {
  margin-top: 1rem;
}

.pe-footer__links li {
  margin-bottom: 0.5rem;
}

.pe-footer__links a:hover {
  color: var(--pe-secondary);
}

.pe-footer__links,
.pe-footer__contact {
  font-size: 0.875rem;
}

.pe-footer__contact li {
  margin-bottom: 0.5rem;
}

.pe-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pe-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  max-width: var(--pe-container-wide);
  margin-inline: auto;
  padding: 1.5rem 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.pe-footer__legal-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--pe-transition);
}

.pe-footer__legal-link:hover {
  color: var(--pe-secondary);
}

@media (min-width: 768px) {
  .pe-footer__bottom-inner {
    padding-inline: 2rem;
  }
}

.pe-footer__group {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 1rem 2rem;
  text-align: center;
}

.pe-footer__group-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: opacity var(--pe-transition), transform var(--pe-transition);
}

.pe-footer__group-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.pe-footer__group-logo {
  display: block;
  width: auto;
  height: 3.5rem;
  max-width: min(100%, 12.5rem);
}

.pe-footer__group-fallback {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .pe-footer__group {
    padding-inline: 2rem;
    padding-block: 1.75rem 2.25rem;
  }

  .pe-footer__group-logo {
    height: 4rem;
    max-width: 14rem;
  }
}

/* ==========================================================================
   Unit card
   ========================================================================== */

.pe-unit-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-sm);
  transition: box-shadow var(--pe-transition);
}

.pe-unit-card:hover {
  box-shadow: var(--pe-shadow-md);
}

.pe-unit-card.is-hidden {
  display: none;
}

.pe-unit-card__gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: var(--pe-plan-muted);
}

.pe-unit-card__gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.pe-unit-card__gallery-slide {
  flex: 0 0 100%;
  height: 100%;
}

.pe-unit-card__gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pe-unit-card__gallery-dots {
  position: absolute;
  right: 0;
  bottom: 0.75rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}

.pe-unit-card__gallery-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--pe-radius-full);
  background-color: rgba(255, 255, 255, 0.55);
  transition: background-color var(--pe-transition), transform var(--pe-transition);
}

.pe-unit-card__gallery-dot--active {
  background-color: var(--pe-white);
  transform: scale(1.15);
}

.pe-unit-card__body {
  padding: 1.5rem;
}

.pe-unit-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-plan-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-brand);
}

.pe-unit-card__title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-unit-card__addresses,
.pe-unit-card__phones {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pe-unit-card__address {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pe-muted-fg);
}

.pe-unit-card__address svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--pe-brand);
}

.pe-unit-card__phones {
  margin-top: 0.5rem;
}

.pe-unit-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pe-brand);
  transition: color var(--pe-transition);
}

.pe-unit-card__phone:hover {
  color: var(--pe-secondary);
}

/* ==========================================================================
   Conveniado card
   ========================================================================== */

.pe-conveniado-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-sm);
  transition: box-shadow var(--pe-transition);
}

.pe-conveniado-card:hover {
  box-shadow: var(--pe-shadow-md);
}

.pe-conveniado-card.is-hidden {
  display: none;
}

.pe-conveniado-card__head {
  display: flex;
  gap: 1rem;
}

.pe-conveniado-card__logo {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-sm);
  background-color: var(--pe-plan-muted);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-conveniado-card__photo {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-sm);
  object-fit: cover;
  background-color: #fff;
}

.pe-notice {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--pe-radius-sm);
  font-size: 0.9375rem;
}

.pe-notice--error {
  border: 1px solid #f5c2c7;
  background-color: #f8d7da;
  color: #842029;
}

.pe-conveniados-empty {
  margin: 1.5rem 0;
  text-align: center;
  color: var(--pe-muted);
}

.pe-conveniados-intro {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  border: 1px dashed var(--pe-border);
  border-radius: var(--pe-radius-md);
  background-color: var(--pe-surface-muted);
  text-align: center;
  color: var(--pe-muted);
}

.pe-conveniados-results {
  margin-top: 1.5rem;
}

.pe-conveniados-count {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pe-brand);
}

.pe-required {
  color: #c0392b;
}

.pe-filters__hint {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: #c0392b;
}

.pe-filters__buscar.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.pe-filters__select-wrap .ts-wrapper {
  width: 100%;
}

.pe-filters__select-wrap .ts-control {
  min-height: 3rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-sm);
  background-color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  box-shadow: none;
}

.pe-filters__select-wrap .ts-wrapper.single.input-active .ts-control,
.pe-filters__select-wrap .ts-wrapper.multi.input-active .ts-control,
.pe-filters__select-wrap .ts-control:focus {
  border-color: var(--pe-accent);
  box-shadow: 0 0 0 3px rgb(66 192 240 / 20%);
}

.pe-filters__select-wrap .ts-dropdown {
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-sm);
  box-shadow: var(--pe-shadow-md);
  font-family: inherit;
}

.pe-filters__select-wrap .ts-dropdown .option.active {
  background-color: var(--pe-brand);
  color: #fff;
}

.pe-filters__select-wrap .ts-dropdown .option:hover,
.pe-filters__select-wrap .ts-dropdown .option.active:hover {
  background-color: var(--pe-accent);
  color: #fff;
}

.pe-filters__select-wrap .plugin-dropdown_input .dropdown-input-wrap {
  padding: 0.5rem;
}

.pe-filters__select-wrap .plugin-dropdown_input .dropdown-input {
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-sm);
  font-family: inherit;
}

.pe-modal__media {
  margin-bottom: 1rem;
}

.pe-modal__photo {
  display: block;
  max-width: 100%;
  max-height: 8rem;
  border-radius: var(--pe-radius-sm);
  object-fit: contain;
}

.pe-conveniado-card__meta {
  flex: 1;
  min-width: 0;
}

.pe-conveniado-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.pe-conveniado-card__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--pe-brand);
}

.pe-conveniado-card__badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.625rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-amber-bg);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-amber-fg);
}

.pe-conveniado-card__badge svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--pe-amber-icon);
}

.pe-conveniado-card__category {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-conveniado-card__address {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pe-muted-fg);
}

.pe-conveniado-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pe-conveniado-card__tag {
  padding: 0.25rem 0.625rem;
  border-radius: var(--pe-radius-sm);
  background-color: var(--pe-plan-muted);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pe-muted-fg);
}

.pe-conveniado-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.pe-conveniado-card__actions .pe-btn {
  flex: 1;
  border-radius: var(--pe-radius-sm);
  text-transform: none;
  font-size: 0.875rem;
  letter-spacing: 0;
}

.pe-conveniado-card__actions .pe-btn--outline {
  border-color: rgba(63, 65, 148, 0.3);
}

/* Conveniados sections */
.pe-conveniados-section.is-hidden {
  display: none;
}

.pe-conveniados-section__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-conveniados-section__title {
    font-size: 1.25rem;
  }
}

.pe-conveniados-section__title svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fbbf24;
  color: #fbbf24;
}

.pe-conveniados-section__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .pe-conveniados-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .pe-conveniados-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pe-conveniados-count {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-conveniados-empty {
  margin-top: 3rem;
  text-align: center;
  color: var(--pe-muted-fg);
}

/* ==========================================================================
   Filters bar
   ========================================================================== */

.pe-filters {
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-sm);
}

.pe-filters--muted {
  background-color: var(--pe-plan-muted);
  border-color: var(--pe-border);
}

.pe-filters__inner {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .pe-filters__inner {
    padding: 2rem;
  }
}

.pe-filters--card .pe-filters__inner {
  padding: 1rem;
}

@media (min-width: 768px) {
  .pe-filters--card .pe-filters__inner {
    padding: 1.5rem;
  }
}

.pe-filters__title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pe-brand);
}

.pe-filters__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .pe-filters__grid--2 {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

.pe-filters__grid--4 {
  gap: 1rem;
}

@media (min-width: 640px) {
  .pe-filters__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pe-filters__grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    align-items: end;
  }
}

.pe-filters__field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pe-muted-fg);
}

.pe-filters__field--brand label {
  font-weight: 600;
  color: var(--pe-brand);
}

.pe-filters__select-wrap {
  position: relative;
}

.pe-filters__select {
  width: 100%;
  padding: 0.625rem 2rem 0.625rem 0.75rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-sm);
  background-color: var(--pe-white);
  font-size: 0.875rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c5f8a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.pe-filters__select:focus {
  outline: none;
  border-color: var(--pe-brand);
  box-shadow: 0 0 0 2px rgba(63, 65, 148, 0.15);
}

.pe-filters__clear-city {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pe-muted-fg);
}

.pe-filters__clear-city:hover {
  color: var(--pe-brand);
}

.pe-filters__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.pe-filters__grid--4 .pe-filters__actions {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .pe-filters__grid--4 .pe-filters__actions {
    margin-top: 0;
  }
}

.pe-filters__buscar {
  width: 100%;
  padding: 0.75rem 2rem;
  border-radius: var(--pe-radius-sm);
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color var(--pe-transition);
}

@media (min-width: 1024px) {
  .pe-filters__buscar {
    min-width: 7.5rem;
    width: auto;
  }
}

.pe-filters__buscar:hover {
  background-color: #35377d;
}

.pe-units-count {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-units-empty {
  margin-top: 3rem;
  text-align: center;
  color: var(--pe-muted-fg);
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.pe-timeline {
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
}

.pe-timeline__line {
  position: absolute;
  left: 50%;
  top: 4rem;
  bottom: 0;
  display: none;
  width: 2px;
  transform: translateX(-50%);
  background-color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-timeline__line {
    display: block;
  }
}

.pe-timeline__start {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pe-timeline__start {
    margin-bottom: 4rem;
  }
}

.pe-timeline__start-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
  box-shadow: var(--pe-shadow-md);
  outline: 4px solid var(--pe-white);
}

.pe-timeline__start-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.pe-timeline__list {
  position: relative;
}

.pe-timeline__item {
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .pe-timeline__item {
    margin-bottom: 5rem;
  }
}

.pe-timeline__item:last-child {
  margin-bottom: 0;
}

/* Mobile layout */
.pe-timeline__mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .pe-timeline__mobile {
    display: none;
  }
}

.pe-timeline__dot {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-brand);
  outline: 4px solid var(--pe-white);
}

/* Desktop alternating */
.pe-timeline__desktop {
  display: none;
  grid-template-columns: 1fr 3rem 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .pe-timeline__desktop {
    display: grid;
  }
}

.pe-timeline__side {
  display: flex;
  align-items: center;
}

.pe-timeline__side--left {
  justify-content: flex-end;
  padding-right: 0.25rem;
}

.pe-timeline__side--right {
  justify-content: flex-start;
  padding-left: 0.25rem;
}

.pe-timeline__center {
  display: flex;
  justify-content: center;
}

.pe-timeline__content {
  max-width: 28rem;
}

.pe-timeline__content--left {
  text-align: right;
}

.pe-timeline__content--left .pe-timeline__desc {
  margin-left: auto;
}

.pe-timeline__content--right {
  text-align: left;
}

.pe-timeline__content--right .pe-timeline__desc {
  margin-right: auto;
}

.pe-timeline__year-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-timeline__year-title {
    font-size: 1.25rem;
  }
}

.pe-timeline__desc {
  margin-top: 0.5rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--pe-muted-fg);
}

@media (min-width: 768px) {
  .pe-timeline__desc {
    font-size: 0.9375rem;
  }
}

.pe-timeline__bracket {
  flex-shrink: 0;
  width: 1.25rem;
  height: 5.5rem;
  color: var(--pe-lime);
}

.pe-timeline__bracket--left {
  transform: scaleX(-1);
}

/* ==========================================================================
   About intro
   ========================================================================== */

.pe-about-intro__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pe-about-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .pe-about-intro__grid {
    gap: 5rem;
  }
}

.pe-about-intro__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-about-intro__title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .pe-about-intro__title {
    font-size: 2.35rem;
    line-height: 1.2;
  }
}

.pe-about-intro__highlight {
  position: relative;
  display: inline-block;
}

.pe-about-intro__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 0.75rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q50 2 100 8 T198 6' fill='none' stroke='%2342c0f0' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center / 100% 100%;
}

.pe-about-intro__text {
  margin-top: 2rem;
}

.pe-about-intro__text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pe-muted-fg);
}

.pe-about-intro__text p:last-child {
  margin-bottom: 0;
}

.pe-rich-text > * + * {
  margin-top: 1.25rem;
}

.pe-rich-text p {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--pe-muted-fg);
}

.pe-rich-text a {
  color: var(--pe-brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pe-rich-text a:hover {
  color: var(--pe-secondary);
}

.pe-rich-text ul,
.pe-rich-text ol {
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--pe-muted-fg);
}

.pe-rich-text li + li {
  margin-top: 0.5rem;
}

.pe-rich-text strong {
  font-weight: 700;
  color: var(--pe-brand);
}

.pe-about-intro__visual {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .pe-about-intro__visual {
    max-width: none;
  }
}

.pe-about-intro__watermark {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 85%;
  max-width: 28rem;
  transform: translate(-50%, -50%);
  opacity: 0.07;
}

.pe-about-intro__image-mask {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 48% 52% 40% 60% / 55% 45% 52% 48%;
}

@media (min-width: 1024px) {
  .pe-about-intro__image-mask {
    max-width: 32rem;
  }
}

.pe-about-intro__image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.pe-about-intro__image-fade {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 7rem;
  background: linear-gradient(to top, var(--pe-white), rgba(255, 255, 255, 0.6), transparent);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.pe-contact__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .pe-contact__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.pe-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-plan-muted);
}

.pe-contact__info-item + .pe-contact__info-item {
  margin-top: 1.5rem;
}

.pe-contact__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--pe-radius-md);
  background-color: var(--pe-secondary);
  color: var(--pe-brand-fg);
}

.pe-contact__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pe-contact__info-title {
  font-weight: 700;
  color: var(--pe-brand);
}

.pe-contact__info-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-contact__form {
  padding: 2rem;
  border: 1px solid var(--pe-border);
  border-radius: 1.5rem;
  background-color: var(--pe-white);
  box-shadow: var(--pe-shadow-sm);
}

.pe-contact__form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pe-brand);
}

.pe-contact__form-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--pe-muted-fg);
}

.pe-contact__fields {
  margin-top: 1.5rem;
}

.pe-contact__field {
  margin-bottom: 1rem;
}

.pe-contact__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}

.pe-contact__field input,
.pe-contact__field textarea,
.pe-contact__field select {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-md);
  background-color: var(--pe-white);
  font-size: 0.875rem;
}

.pe-contact__field input:focus,
.pe-contact__field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(63, 65, 148, 0.2);
}

.pe-contact__success {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--pe-radius-lg);
  background-color: rgba(66, 192, 240, 0.15);
  border: 1px solid var(--pe-secondary);
  font-weight: 600;
  color: var(--pe-brand);
}

.pe-contact__error {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--pe-radius-lg);
  background-color: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.35);
  font-weight: 600;
  color: #b91c1c;
}

.pe-contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ==========================================================================
   Client shortcuts
   ========================================================================== */

.pe-shortcuts {
  padding: 2rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-plan-muted);
}

.pe-shortcuts__title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pe-brand);
}

.pe-shortcuts__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pe-shortcuts__pill {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--pe-brand);
  border-radius: var(--pe-radius-full);
  background-color: var(--pe-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pe-brand);
  transition: background-color var(--pe-transition), color var(--pe-transition);
}

.pe-shortcuts__pill:hover {
  background-color: var(--pe-brand);
  color: var(--pe-brand-fg);
}

/* ==========================================================================
   Form fields (shared)
   ========================================================================== */

.pe-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}

.pe-field input,
.pe-field textarea,
.pe-field select {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--pe-border);
  border-radius: var(--pe-radius-md);
  background-color: var(--pe-white);
  font-size: 0.875rem;
}

.pe-field input:focus,
.pe-field textarea:focus,
.pe-field select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(63, 65, 148, 0.2);
}

/* ==========================================================================
   Brand logo (standalone)
   ========================================================================== */

.pe-brand-logo {
  width: auto;
  height: 2rem;
}

.pe-brand-logo--md {
  height: 2.5rem;
}

.pe-brand-logo--lg {
  height: 3rem;
}

/* Sobre — vídeo */
.pe-about-video {
  margin: 3rem 0;
}

.pe-about-video__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-about-video__title {
    font-size: 1.5rem;
  }
}

.pe-about-video__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-brand);
  box-shadow: var(--pe-shadow-md);
}

.pe-about-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pe-about-timeline {
  margin-top: 3rem;
}

.pe-about-timeline .pe-timeline {
  margin-top: 2rem;
}

.pe-conveniados-section + .pe-conveniados-section {
  margin-top: 3rem;
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.pe-cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  padding: 1rem;
  border-top: 1px solid var(--pe-border);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -8px 30px rgba(63, 65, 148, 0.12);
  backdrop-filter: blur(8px);
}

.pe-cookie-banner--hidden {
  display: none !important;
}

.pe-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.pe-cookie-banner__content {
  flex: 1 1 18rem;
  min-width: 0;
}

.pe-cookie-banner__title {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pe-brand);
}

.pe-cookie-banner__text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--pe-muted-fg);
}

.pe-cookie-banner__text a {
  font-weight: 700;
  color: var(--pe-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pe-cookie-banner__text a:hover {
  color: var(--pe-secondary);
}

.pe-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pe-cookie-banner__btn {
  min-width: 8rem;
}

body.pe-cookie-open {
  padding-bottom: 5.5rem;
}

@media (max-width: 639px) {
  .pe-cookie-banner__actions {
    width: 100%;
  }

  .pe-cookie-banner__btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* ==========================================================================
   WhatsApp floating widget
   ========================================================================== */

.pe-wa-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  width: min(100% - 2rem, 22rem);
  border: 1px solid rgba(63, 65, 148, 0.12);
  border-radius: var(--pe-radius-lg);
  background-color: var(--pe-white);
  box-shadow: 0 12px 40px rgba(63, 65, 148, 0.18);
  animation: pe-wa-widget-in 0.35s ease-out;
}

.pe-wa-widget[hidden] {
  display: none !important;
}

@keyframes pe-wa-widget-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pe-wa-widget__close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--pe-muted-fg);
  cursor: pointer;
  transition: background-color var(--pe-transition), color var(--pe-transition);
}

.pe-wa-widget__close:hover {
  background-color: var(--pe-plan-muted);
  color: var(--pe-brand);
}

.pe-wa-widget__close svg {
  width: 1rem;
  height: 1rem;
}

.pe-wa-widget__link {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 2.25rem 1rem 1rem;
  color: var(--pe-foreground);
  text-decoration: none;
  transition: background-color var(--pe-transition);
}

.pe-wa-widget__link:hover {
  background-color: rgba(66, 192, 240, 0.08);
}

.pe-wa-widget__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.pe-wa-widget__text {
  padding-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--pe-brand);
}

@media (min-width: 768px) {
  .pe-wa-widget {
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(100% - 3rem, 24rem);
  }

  .pe-wa-widget__text {
    font-size: 0.875rem;
  }
}

body:has(.pe-cookie-banner:not(.pe-cookie-banner--hidden):not([hidden])) .pe-wa-widget {
  bottom: 7.5rem;
}

@media (max-width: 767px) {
  body:has(.pe-cookie-banner:not(.pe-cookie-banner--hidden):not([hidden])) .pe-wa-widget {
    bottom: 9.5rem;
  }
}
