/* ============================================================
   PÁGINAS DE PRODUTO (MENTORIAS) — AUGĒ ACADEMY
   ============================================================ */

/* HERO PRODUTO */
.p-hero {
  min-height: 90vh;
  position: relative;
  background:
    linear-gradient(180deg, rgba(5,0,50,0.78) 0%, rgba(5,0,50,0.95) 100%),
    url('../img/posts/fundo-hd-1.png') center/cover no-repeat;
  color: var(--veu);
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.p-hero--variant {
  background:
    linear-gradient(180deg, rgba(5,0,50,0.78) 0%, rgba(5,0,50,0.95) 100%),
    url('../img/posts/fundo-hd-2.png') center/cover no-repeat;
}
.p-hero--variant-3 {
  background:
    linear-gradient(180deg, rgba(5,0,50,0.78) 0%, rgba(5,0,50,0.95) 100%),
    url('../img/posts/padrao.png') center/cover no-repeat;
}
.p-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px circle at 70% 50%, rgba(235, 190, 120, 0.18), transparent 60%);
}
.p-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.p-hero__breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 220, 0.5);
  margin-bottom: 24px;
}
.p-hero__breadcrumb a { color: var(--aurora); }
.p-hero h1 {
  color: var(--veu);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 400;
}
.p-hero h1 em { font-style: italic; color: var(--aurora); }
.p-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--aurora);
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 28px;
}
.p-hero__lead {
  color: rgba(245, 240, 220, 0.85);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
}
.p-hero__chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.p-hero__chips span {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(235, 190, 120, 0.1);
  border: 1px solid rgba(235, 190, 120, 0.4);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--aurora);
}
.p-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.p-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(235, 190, 120, 0.3);
}
.p-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.p-hero__price-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--aurora);
  color: var(--noite);
  padding: 12px 22px;
  border-radius: 12px;
  text-align: right;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.p-hero__price-tag small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.p-hero__price-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 980px) {
  .p-hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .p-hero__visual { max-width: 420px; margin: 0 auto; }
}

/* SOBRE A MENTORIA */
.p-sobre { padding: clamp(80px, 9vw, 120px) 0; background: var(--veu); }
.p-sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.p-sobre__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.p-sobre__image img { width: 100%; height: 100%; object-fit: cover; }
.p-sobre__text h2 { font-size: clamp(28px, 3.8vw, 44px); }
.p-sobre__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--texto);
  margin-bottom: 18px;
}
.p-sobre__text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 58px;
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--bronze);
  font-weight: 500;
}
@media (max-width: 880px) {
  .p-sobre__grid { grid-template-columns: 1fr; gap: 50px; }
}

/* PROFESSORES NO PRODUTO */
.p-profs { padding: clamp(60px, 8vw, 100px) 0; background: var(--branco); }
.p-profs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}
.p-prof {
  background: var(--veu);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 26px;
  align-items: flex-start;
}
.p-prof__img {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--aurora);
}
.p-prof__img img { width: 100%; height: 100%; object-fit: cover; }
.p-prof h3 {
  margin-bottom: 4px;
  font-size: 24px;
}
.p-prof small {
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.p-prof p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--texto-suave);
  margin: 0;
}
@media (max-width: 880px) {
  .p-profs__grid { grid-template-columns: 1fr; }
  .p-prof { grid-template-columns: 1fr; text-align: center; }
  .p-prof__img { margin: 0 auto; }
}

/* CONTEÚDO PROGRAMÁTICO */
.p-programa {
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--noite);
  color: var(--veu);
  position: relative;
  overflow: hidden;
}
.p-programa::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(95, 60, 190, 0.25), transparent 70%);
  border-radius: 50%;
}
.p-programa__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.p-programa__header h2 { color: var(--veu); }
.p-programa__header p { color: rgba(245, 240, 220, 0.75); }

.modulos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.modulo {
  border: 1px solid rgba(235, 190, 120, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: rgba(245, 240, 220, 0.03);
  transition: all var(--t-base);
}
.modulo:hover {
  border-color: var(--aurora);
  background: rgba(235, 190, 120, 0.05);
}
.modulo__head {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.modulo__num {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--aurora);
  line-height: 1;
  font-weight: 500;
  min-width: 72px;
}
.modulo__head h3 {
  color: var(--veu);
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.modulo__head p {
  color: rgba(245, 240, 220, 0.65);
  font-size: 14px;
  margin: 0;
}
.modulo__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  padding-left: 96px;
}
.modulo__bloco h4 {
  color: var(--aurora);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.modulo__bloco ul li {
  font-size: 14px;
  color: rgba(245, 240, 220, 0.85);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.55;
}
.modulo__bloco ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--aurora);
}
@media (max-width: 700px) {
  .modulo { padding: 30px 22px; }
  .modulo__head { flex-direction: column; gap: 8px; }
  .modulo__num { font-size: 40px; }
  .modulo__body { padding-left: 0; }
}

/* CRONOGRAMA */
.p-cronograma {
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--veu);
}
.p-cronograma__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.crono {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border-top: 4px solid var(--aurora);
}
.crono__day {
  font-family: var(--font-display);
  color: var(--bronze);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.crono__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--noite);
  margin-bottom: 14px;
}
.crono__desc {
  font-size: 14px;
  color: var(--texto-suave);
  line-height: 1.65;
  margin-bottom: 22px;
}
.crono__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--noite);
  color: var(--aurora);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.p-cronograma__local {
  margin-top: 48px;
  padding: 30px 36px;
  background: var(--noite);
  color: var(--aurora);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
}
.p-cronograma__local svg { width: 24px; height: 24px; vertical-align: middle; margin-right: 10px; }
@media (max-width: 880px) { .p-cronograma__grid { grid-template-columns: 1fr; } }

/* EXTRAS */
.p-extras {
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--branco);
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.extra {
  text-align: center;
  padding: 36px 24px;
  background: var(--veu);
  border-radius: var(--radius);
  transition: all var(--t-base);
}
.extra:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.extra__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--aurora);
  color: var(--noite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.extra__icon svg { width: 28px; height: 28px; }
.extra h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.extra p { font-size: 13px; color: var(--texto-suave); line-height: 1.6; margin: 0; }
@media (max-width: 980px) { .extras-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .extras-grid { grid-template-columns: 1fr; } }

/* INVESTIMENTO */
.p-invest {
  padding: clamp(80px, 9vw, 120px) 0;
  background: linear-gradient(180deg, var(--veu) 0%, var(--pergaminho) 100%);
}
.invest-box {
  max-width: 880px;
  margin: 60px auto 0;
  background: var(--noite);
  color: var(--veu);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.invest-box::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--aurora-50), transparent 70%);
  border-radius: 50%;
}
.invest-box__header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.invest-box__header h3 {
  color: var(--aurora);
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 8px;
}
.invest-box__header p { color: rgba(245, 240, 220, 0.7); margin: 0; }
.invest-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}
.invest-row {
  padding: 24px;
  background: rgba(245, 240, 220, 0.05);
  border: 1px solid rgba(235, 190, 120, 0.2);
  border-radius: var(--radius);
  text-align: center;
}
.invest-row__label {
  color: var(--aurora);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.invest-row__value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--veu);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}
.invest-row__sub {
  color: rgba(245, 240, 220, 0.6);
  font-size: 12px;
}
.invest-box__cta {
  text-align: center;
  position: relative;
}
@media (max-width: 780px) {
  .invest-box { padding: 40px 28px; }
  .invest-rows { grid-template-columns: 1fr; }
}

/* GALERIA */
.p-galeria {
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--branco);
}
.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
  grid-template-rows: 280px 280px;
}
.galeria-grid > div {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.galeria-grid > div:nth-child(1) { grid-row: 1 / 3; }
.galeria-grid > div img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.galeria-grid > div:hover img { transform: scale(1.08); }
@media (max-width: 700px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .galeria-grid > div:nth-child(1) { grid-row: 1 / 2; grid-column: 1 / 3; }
}
