:root {
  --p: #c37b67;
  --p-dk: #a86551;
  --sec: #f4e1e6;
  --cr: #fffbf0; /* fundo quente */
  --td: #2d2a2a;
  --tm: #5e5959;
  --a: #3f4c18; /* olive — CTAs, badges, investimento */
  --a-dk: #2d3711;
  --bronze: #bc8652; /* caramelo — texto de destaque */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--td);
  -webkit-font-smoothing: antialiased;
  background: var(--cr);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
[x-cloak] {
  display: none !important;
}

/* Pulse animation for primary CTA buttons */
@keyframes pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(63, 76, 24, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(63, 76, 24, 0);
  }
}
.btn-pulse {
  animation: pulse-ring 2.6s ease-in-out infinite;
}

/* Module number circle */
.mod-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  align-self: flex-start;
  flex-shrink: 0;
}

/* Section chip / badge */
.chip {
  display: inline-block;
  background: var(--sec);
  color: var(--bronze);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Headline serif delicada */
.headline-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #5c4a3a;
}

/* Primary CTA button */
.btn-primary {
  display: inline-block;
  background: var(--a);
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--a-dk);
}

/* Sticky mobile bar */
#sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--a);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#sticky-bar.show {
  transform: translateY(0);
}

/* FAQ button */
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  background: #fff;
  color: var(--td);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.faq-btn.open {
  background: var(--sec);
  color: var(--p);
}
.faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.3rem;
  transition: transform 0.25s;
}
.faq-btn.open .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--tm);
  background: #fff;
}

/* Section rhythm */
section {
  padding: 4.5rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

/* Hero height */
#hero {
  min-height: 100vh;
}
@media (min-width: 768px) {
  #hero {
    min-height: 80vh;
  }
}

/* Scroll offset para o header fixo */
html {
  scroll-padding-top: 108px;
}

/* Nav links com underline deslizante */
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tm);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover {
  color: var(--p);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--p);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Nav CTA small */
.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--a);
  border-radius: 9999px;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--a-dk);
}

/* Mobile menu slide */
.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--sec);
}

/* Image placeholder box */
.img-placeholder {
  background: var(--sec);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--p);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  min-height: 320px;
}
.img-placeholder span {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

/* ---- Animações premium de hover ---- */

/* Scroll hint hero */
@keyframes bounce-y {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
  }
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce-y 2s ease-in-out infinite;
  color: var(--p);
  cursor: pointer;
  z-index: 2;
}

/* Lift genérico */
.card-hover {
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(195, 123, 103, 0.18);
}

/* Zoom da imagem dentro do card */
.card-img-wrap {
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover .card-img-wrap img {
  transform: scale(1.07);
}

/* Módulo badge escala no hover do card */
.mod-num {
  transition: transform 0.25s ease;
}
.card-hover:hover .mod-num {
  transform: scale(1.18);
}

/* Ícone dos diferenciais gira e muda de cor */
.diff-icon {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.diff-icon .icon-card {
  stroke: var(--a);
}
.card-hover:hover .diff-icon {
  transform: rotate(-8deg) scale(1.15);
  background: var(--a) !important;
}
.card-hover:hover .diff-icon .icon-card {
  stroke: #fff;
}

/* Para quem é — desliza para a direita */
.pq-item {
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.pq-item:hover {
  transform: translateX(6px);
  background: var(--sec) !important;
}
.pq-item:hover .icon-bullet {
  transform: scale(1.2);
}

/* Botão CTA escala suave */
.btn-primary {
  transition:
    background 0.2s,
    transform 0.18s ease,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(63, 76, 24, 0.38);
}

/* Card de preço */
.price-card-hover {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.price-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.13);
}

/* FAQ hover sutil */
.faq-btn:not(.open):hover {
  background: var(--cr);
}

/* Imagem da Vivi e FAQ */
.img-hover {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.img-hover:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(195, 123, 103, 0.2);
}

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 100;
  background: #25d366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* Lucide icon sizes */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2;
}
.icon-card {
  width: 22px;
  height: 22px;
  stroke: var(--p);
}
.icon-bullet {
  width: 17px;
  height: 17px;
  stroke: var(--p);
  flex-shrink: 0;
  margin-top: 3px;
}
.icon-check {
  width: 14px;
  height: 14px;
  stroke: var(--p);
  flex-shrink: 0;
  stroke-width: 2.5;
}
.icon-inline {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  vertical-align: -2px;
}

/* Galeria das alunas — masonry com CSS columns */
.aluna-grid {
  column-count: 3;
  column-gap: 1rem;
}
.aluna-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}
.aluna-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .aluna-grid {
    column-count: 2;
  }
}

/* ================================================================
   LINKS PAGE — links.html
   ================================================================ */

/* Reset adicional */
a {
  text-decoration: none;
}

/* Background decorativo (orbs) */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.32;
  animation: orb-float 12s ease-in-out infinite;
}

.orb-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #f4e1e6, #c37b6720);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #bc865225, #fffbf0);
  bottom: 80px;
  left: -60px;
  animation-delay: -5s;
}

.orb-3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #3f4c1818, #fffbf0);
  top: 45%;
  left: 60%;
  animation-delay: -9s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.05);
  }
}

/* Layout */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 5rem;
  overflow-x: hidden;
}

.links-card {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero banner */
.hero-banner {
  width: 100%;
  height: 200px;
  border-radius: 0 0 1.75rem 1.75rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253, 250, 251, 0) 0%,
    rgba(253, 250, 251, 0.1) 55%,
    rgba(255, 251, 240, 0.88) 100%
  );
}

/* Inner content */
.links-card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}

/* Avatar */
.avatar-wrap {
  position: relative;
  margin-top: -52px;
  margin-bottom: 1.1rem;
  z-index: 2;
}

.avatar-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--p) 0%,
    var(--bronze) 35%,
    var(--sec) 60%,
    var(--p) 100%
  );
  animation: ring-spin 6s linear infinite;
  z-index: 0;
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.avatar-inner {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cr);
  background: var(--sec);
}

.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Header text */
.brand-logo {
  margin-bottom: 0.4rem;
  height: 48px;
  width: auto;
}

.links-handle {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--p);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.links-bio {
  font-size: 0.83rem;
  color: var(--tm);
  text-align: center;
  line-height: 1.65;
  max-width: 330px;
  margin-bottom: 1.5rem;
}

.links-bio strong {
  color: var(--td);
}

/* Social strip */
.social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.8rem;
  border-radius: 9999px;
  border: 1.5px solid var(--sec);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--tm);
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.social-pill:hover {
  background: var(--sec);
  border-color: var(--p);
  color: var(--p);
  transform: translateY(-2px);
}

.social-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Section label */
.section-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.section-label span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tm);
  white-space: nowrap;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sec);
}

/* Links list */
.links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

/* Link button — base */
.link-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  border: 1.5px solid var(--sec);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(195, 123, 103, 0.06);
  transition:
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.26s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}

.link-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(195, 123, 103, 0.17);
  border-color: var(--p);
  background: rgba(255, 255, 255, 0.96);
}

.link-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.link-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.link-btn:hover .link-btn-icon {
  transform: rotate(-8deg) scale(1.12);
}

.link-btn-icon svg {
  width: 19px;
  height: 19px;
}

.link-btn-text {
  flex: 1;
  text-align: left;
}

.link-btn-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--td);
  line-height: 1.3;
}

.link-btn-subtitle {
  font-size: 0.7rem;
  color: var(--tm);
  margin-top: 0.12rem;
  line-height: 1.4;
}

.link-btn-arrow {
  flex-shrink: 0;
  color: var(--p);
  opacity: 0.55;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.link-btn:hover .link-btn-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* Link button — featured (CTA olive) */
.link-btn-featured {
  background: var(--a);
  border-color: var(--a);
  animation: pulse-olive 2.6s ease-in-out infinite;
}

@keyframes pulse-olive {
  0%,
  100% {
    box-shadow:
      0 4px 16px rgba(63, 76, 24, 0.28),
      0 0 0 0 rgba(63, 76, 24, 0.35);
  }
  50% {
    box-shadow:
      0 4px 16px rgba(63, 76, 24, 0.28),
      0 0 0 9px rgba(63, 76, 24, 0);
  }
}

.link-btn-featured:hover {
  background: var(--a-dk);
  border-color: var(--a-dk);
  box-shadow: 0 12px 32px rgba(63, 76, 24, 0.35);
}

.link-btn-featured .link-btn-title {
  color: #fff;
}
.link-btn-featured .link-btn-subtitle {
  color: rgba(255, 255, 255, 0.76);
}
.link-btn-featured .link-btn-arrow {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.link-btn-featured:hover .link-btn-arrow {
  color: #fff;
}

/* Link button — rose */
.link-btn-rose {
  border-color: rgba(195, 123, 103, 0.4);
  background: rgba(244, 225, 230, 0.35);
}

.link-btn-rose:hover {
  background: rgba(244, 225, 230, 0.7);
  border-color: var(--p-dk);
}

/* Link button — bronze */
.link-btn-bronze {
  border-color: rgba(188, 134, 82, 0.35);
}

.link-btn-bronze:hover {
  border-color: var(--bronze);
  background: rgba(188, 134, 82, 0.07);
}

/* Icon bg helpers */
.ibg-olive {
  background: rgba(63, 76, 24, 0.12);
}
.ibg-rose {
  background: rgba(195, 123, 103, 0.13);
}
.ibg-bronze {
  background: rgba(188, 134, 82, 0.13);
}
.ibg-green {
  background: rgba(37, 211, 102, 0.13);
}
.ibg-pink {
  background: var(--sec);
}
.ibg-white {
  background: rgba(255, 255, 255, 0.22);
}
.ibg-fb {
  background: rgba(24, 119, 242, 0.1);
}
.ibg-yt {
  background: rgba(255, 0, 0, 0.1);
}
.ibg-tt {
  background: rgba(0, 0, 0, 0.07);
}

/* Icon stroke helpers */
.ic-olive {
  stroke: var(--a);
  fill: none;
}
.ic-rose {
  stroke: var(--p);
  fill: none;
}
.ic-bronze {
  stroke: var(--bronze);
  fill: none;
}
.ic-white {
  stroke: rgba(255, 255, 255, 0.92);
  fill: none;
}
.ic-fb {
  fill: #1877f2;
}
.ic-yt {
  fill: #ff0000;
}

/* Links footer */
.links-footer {
  margin-top: 2.25rem;
  text-align: center;
}

.links-footer img {
  height: 26px;
  width: auto;
  margin: 0 auto 0.55rem;
  opacity: 0.65;
}

.links-footer p {
  font-size: 0.68rem;
  color: var(--tm);
  line-height: 1.65;
}

.links-footer a {
  color: var(--bronze);
  font-weight: 600;
}

.links-footer a:hover {
  text-decoration: underline;
}

/* Stagger fade-up animation */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  opacity: 0;
  animation: fade-up 0.48s ease forwards;
}
.anim:nth-child(1) {
  animation-delay: 0.04s;
}
.anim:nth-child(2) {
  animation-delay: 0.1s;
}
.anim:nth-child(3) {
  animation-delay: 0.16s;
}
.anim:nth-child(4) {
  animation-delay: 0.22s;
}
.anim:nth-child(5) {
  animation-delay: 0.28s;
}
.anim:nth-child(6) {
  animation-delay: 0.34s;
}
.anim:nth-child(7) {
  animation-delay: 0.4s;
}
.anim:nth-child(8) {
  animation-delay: 0.46s;
}
.anim:nth-child(9) {
  animation-delay: 0.52s;
}
.anim:nth-child(10) {
  animation-delay: 0.58s;
}
.anim:nth-child(11) {
  animation-delay: 0.64s;
}
.anim:nth-child(12) {
  animation-delay: 0.7s;
}
.anim:nth-child(13) {
  animation-delay: 0.76s;
}
.anim:nth-child(14) {
  animation-delay: 0.82s;
}
.anim:nth-child(15) {
  animation-delay: 0.88s;
}
.anim:nth-child(16) {
  animation-delay: 0.94s;
}
.anim:nth-child(17) {
  animation-delay: 1s;
}
.anim:nth-child(18) {
  animation-delay: 1.06s;
}
.anim:nth-child(19) {
  animation-delay: 1.12s;
}
.anim:nth-child(20) {
  animation-delay: 1.18s;
}

/* Responsive — links page */
@media (max-width: 520px) {
  .page-wrapper {
    padding: 0 0 4rem;
  }
  .hero-banner {
    height: 158px;
    border-radius: 0;
  }
  .avatar-inner {
    width: 90px;
    height: 90px;
  }
  .brand-logo {
    height: 42px;
  }
}

/* ================================================================
   CURSOS PAGE — cursos.html
   ================================================================ */

/* Site header (cursos page) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 251, 240, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 225, 230, 0.7);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  height: 36px;
  width: auto;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tm);
  border: 1.5px solid var(--sec);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.btn-back:hover {
  color: var(--p);
  border-color: var(--p);
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-2px);
}

.btn-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Hero (cursos page) */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fffbf0 0%, #fdf0f3 50%, #f8f2e8 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(195, 123, 103, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 60% at 20% 80%,
      rgba(188, 134, 82, 0.1) 0%,
      transparent 70%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-block;
  background: var(--sec);
  color: var(--bronze);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--td);
  margin-bottom: 1rem;
}

.hero-title em {
  color: var(--bronze);
  font-style: italic;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--tm);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.hero-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--a);
  letter-spacing: 0.05em;
}

.hero-count::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--a);
}

/* Courses grid */
.courses-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Course card */
.course-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1.5px solid rgba(244, 225, 230, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px rgba(195, 123, 103, 0.06);
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.22s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(195, 123, 103, 0.16);
  border-color: rgba(195, 123, 103, 0.35);
}

/* Card thumb */
.card-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .card-thumb img {
  transform: scale(1.06);
}

/* Card thumb — gradient fallback */
.card-thumb-grad {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.card-thumb-grad svg {
  width: 56px;
  height: 56px;
  opacity: 0.55;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}

.course-card:hover .card-thumb-grad svg {
  transform: scale(1.14);
  opacity: 0.8;
}

/* Card badge */
.card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--a);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  z-index: 2;
}

/* Card body */
.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--td);
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--tm);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.card-desc strong {
  color: var(--td);
}

/* Card pills */
.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.card-pill {
  font-size: 0.62rem;
  font-weight: 600;
  background: var(--cr);
  color: var(--tm);
  border: 1px solid var(--sec);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
}

/* Card CTA */
.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--a);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.78rem 1rem;
  border-radius: 0.75rem;
  transition:
    background 0.2s,
    transform 0.18s ease,
    box-shadow 0.2s;
}

.card-cta:hover {
  background: var(--a-dk);
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(63, 76, 24, 0.32);
}

/* Card featured */
.course-card.is-featured {
  border-color: rgba(63, 76, 24, 0.3);
  background: linear-gradient(160deg, #fff 60%, rgba(63, 76, 24, 0.03) 100%);
}

/* Back strip */
.back-strip {
  text-align: center;
  padding: 0 1.5rem 4rem;
}

.back-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tm);
  border: 1.5px solid var(--sec);
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.back-strip a:hover {
  color: var(--p);
  border-color: var(--p);
  transform: translateX(-2px);
}

.back-strip svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Site footer */
.site-footer {
  border-top: 1px solid var(--sec);
  background: var(--cr);
  padding: 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-inner img {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer-inner p {
  font-size: 0.7rem;
  color: var(--tm);
}

.footer-inner a {
  color: var(--bronze);
  font-weight: 600;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* Responsive — cursos page */
@media (max-width: 640px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 2.5rem 1.25rem 2rem;
  }
  .courses-section {
    padding: 2rem 1.25rem 4rem;
  }
}
