/* ── Estilos específicos da página Plenitude ── */

#plenitude-hero-left {
  max-width: 1100px;
}

#plenitude-hero-title {
  font-size: clamp(40px, 5vw, 80px);
}

#plenitude-hero-sub {
  max-width: 1200px;
}

.tr-sobre--reversed .tr-sobre-inner {
  flex-direction: row-reverse;
}

/* ─── SEÇÃO 4: CARDS ─── */
.pln-cards {
  background: var(--branco);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.pln-cards-header,
.pln-cards-grid {
  position: relative;
  z-index: 1;
}

.pln-cards-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pln-cards-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 20px;
}

.pln-cards-title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--fw-display);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pln-cards-sub {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--cinza);
  margin-top: 16px;
}

.pln-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pln-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.pln-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.pln-card.visible::before {
  transform: scaleX(1);
}

.pln-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
}

.pln-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(241,90,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
  flex-shrink: 0;
}

.pln-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--laranja);
}

.pln-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pln-card-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--cinza);
  flex: 1;
}

.pln-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pln-card-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--marrom);
  background: var(--amarelo);
  border-radius: 100px;
  padding: 4px 14px;
}

@media (max-width: 1728px) {
  #plenitude-hero-title { font-size: 68px; }
  #plenitude-hero-left { max-width: 930px; }
  .br-desktop { display: none; }
}

@media (max-width: 1350px) {
  #plenitude-hero-title { font-size: 60px; }
  #plenitude-hero-left { max-width: 870px; }
}

@media (max-width: 900px) {
  .pln-cards { padding: 80px 24px; }
  .pln-cards-grid { grid-template-columns: 1fr; }
}

.pln-title--mobile { display: none; }
.pln-sub--mobile { display: none; }

@media (max-width: 768px) {
  #plenitude-hero-left { max-width: 100%; }
  .pln-title--desktop { display: none; }
  .pln-title--mobile { display: block; }
  .pln-sub--desktop { display: none; }
  .pln-sub--mobile { display: block; }
}

/* ─── SEÇÃO COMO FUNCIONA ─── */
#pln-como-funciona {
  padding-top: 60px;
}

/* ─── CTA: sobrescreve imagem do potencialize.css ─── */
.section-cta .cta-bg-img {
  background: url('../img/background_cta.webp') center/cover no-repeat;
}
