@font-face {
  font-family: 'Raleway';
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/static/Raleway-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Raleway';
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/static/Raleway-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Le Major';
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Le_Major/LeMajor-Regular.woff') format('woff'),
    url('../fonts/Le_Major/LeMajor-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Photograph Signature';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Photograph_Signature.ttf') format('truetype');
}

:root {
  --bg: #f1f1f1;
  --paper: #fffdfa;
  --stroke: #e5e1d8;
  --text: #464543;
  --muted: #6c6c68;
  --accent: #57b637;
  --accent-soft: #a4bf9b;
  --brand: #d6b480;
  --shadow: 0 8px 25px rgba(70, 69, 67, 0.12);
  --radius: 14px;
  --orbit-duration: 20s;
  --orbit-radius: 240px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #f2f2f2;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Photograph Signature', 'Raleway', serif;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 18px;
}

h1 {
  font-size: 46px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 24px;
}

.hero-title-bold {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

.container {
  width: min(1084px, 94vw);
  margin: 0 auto;
  padding: 0 15px;
}

.narrow {
  width: min(900px, 94vw);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.cta-section {
  text-align: center;
}

.section.alt {
  background: var(--paper);
  box-shadow: inset 0 1px 0 var(--stroke);
}

.section-header {
  margin-bottom: 32px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  display: inline-block;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.muted {
  color: var(--muted);
}

.note {
  font-size: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

#feedbacks h2 {
  text-align: center;
}

.feedback-slider {
  margin-top: 24px;
  overflow: hidden;
}

.feedback-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: feedback-scroll 40s linear infinite;
  will-change: transform;
}

.feedback-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.feedback-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 240px;
}

@keyframes feedback-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.feedback-item img {
  display: block;
  width: 100%;
  height: auto;
}

.align-start {
  align-items: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--accent-soft);
}

.button:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero {
  background: url('../images/banner.jpg') center top/cover no-repeat;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-height: inherit;
  padding: 110px 0 90px;
}

.hero-copy {
  text-align: left;
  width: min(50%, 560px);
}

.hero-actions {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.hero-form {
  display: grid;
  gap: 12px;
}

.hero-form label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
}

.hero-form input {
  border-radius: 10px;
  border: 1px solid var(--stroke);
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'Raleway', Arial, sans-serif;
}

.hero-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-secondary .meta-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper);
  background: rgba(58, 57, 55, .47);
  font-size: clamp(13px, 1vw, 15px);
  padding: 8px 10px;
  border-radius: 9px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .09);
  width: fit-content;
  margin: 4px 0;
}

.button.full {
  width: 100%;
}

.cta-text {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}

#lead-popup {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.52);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#lead-popup .popup-inner {
  background: var(--paper);
  width: min(92vw, 380px);
  margin: auto;
  padding: 32px 26px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

#lead-popup h2 {
  font-size: 20px;
  margin: 0 0 16px;
}

#lead-popup input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 15px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
}

#lead-popup button {
  background: var(--accent);
  color: #fff;
  padding: 11px 24px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

#lead-popup button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#lead-popup .close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  padding: 0 8px;
  color: var(--muted);
}

.hero-text h1 {
  font-size: 32px;
}

.hero-text .lead {
  font-size: 18px;
}

.meta-grid {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.meta-card {
  padding: 14px 16px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(70, 69, 67, 0.08);
}

.meta-card .label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.meta-card .value {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

#metodologia .cta-row {
  justify-content: center;
  margin-top: 28px;
  flex-wrap: nowrap;
  transform: translateX(-10px);
}

#metodologia h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

#faq h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

#metodologia .cta-row .button {
  width: 280px;
  justify-content: center;
  white-space: nowrap;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}

.bonus-card h3 {
  font-size: 18px;
  margin: 0;
}

.bonus-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.bonus-icon {
  font-size: 24px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(87, 182, 55, 0.12);
  color: var(--accent);
}

.bonus-note {
  margin: 14px 0 12px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  font-size: 18px;
}

.bonus-note.highlight {
  font-weight: 700;
  text-align: center;
}

.bonus-center {
  text-align: center;
}

.bonus-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.bonus-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  width: 100%;
}

.panel {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.panel .tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(87, 182, 55, 0.12);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.panel-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 14px 0 8px;
}

.panel-body {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.mini-list span {
  font-size: 14px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}

.mini-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.card {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: var(--shadow);
}

.testimonial .quote {
  font-size: 16px;
  color: var(--text);
}

.testimonial .author {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.stack {
  display: grid;
  gap: 14px;
}

.stack-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  position: relative;
}

.stack-item::after {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent-soft);
}

.item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(87, 182, 55, 0.18), rgba(164, 191, 155, 0.24));
  border: 1px solid rgba(87, 182, 55, 0.3);
}

.item-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin: 0 0 6px;
}

.item-body {
  margin: 0;
  color: var(--muted);
}

.bullets {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.bullets.tight {
  gap: 6px;
}

.dash-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.dash-list li {
  color: var(--text);
}

.checklist {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 6px;
}

#para-quem {
  text-align: center;
}

#para-quem h2 {
  text-align: center;
}

#para-quem .checklist,
#para-quem p {
  text-align: left;
  display: inline-block;
}

#para-quem .checklist {
  margin: 0 auto 14px;
}

#para-quem p {
  margin-left: auto;
  margin-right: auto;
}

.para-quem-highlight {
  font-weight: 700;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.objeccoes-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border: 0.5px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

.objeccoes-left,
.objeccoes-right {
  display: grid;
  gap: 0;
  grid-auto-rows: 1fr;
}

.objeccoes-right {
  border-left: 0.5px solid var(--stroke);
}

.objeccoes-left p,
.objeccoes-right p {
  margin: 0;
  padding: 12px 16px;
  border-bottom: 0.5px solid var(--stroke);
  text-align: center;
}

.objeccoes-left p:last-child,
.objeccoes-right p:last-child {
  border-bottom: 0;
}

#objeccoes h2 {
  text-align: center;
}

#objeccoes h2,
#comprar h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.title-raleway {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-box {
  margin-top: 22px;
  padding: 28px 22px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 6px 6px, 9px 9px;
  background-position: 0 0, 3px 3px;
  text-align: center;
  width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 10px;
  text-align: left;
  font-size: 15px;
}

.price-total {
  margin: 10px 0 6px;
  font-weight: 700;
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
}

.price-final {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
}

.price-box .button {
  width: min(320px, 100%);
}

#comprar h2 {
  text-align: center;
}

#comprar {
  scroll-margin-top: 90px;
}

.cta-row {
  justify-content: center;
}

.hero .cta-row {
  justify-content: flex-start;
}

#bonus,
#objeccoes {
  text-align: center;
}

#bonus .cta-row,
#objeccoes .cta-row {
  justify-content: center;
}

.centered-text {
  display: inline-block;
  text-align: left;
}

#bonus .centered-text {
  margin-left: 24px;
}

#objeccoes .centered-text {
  margin-left: 24px;
}

.intro-center {
  text-align: center;
  margin-bottom: 24px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.intro-text {
  text-align: left;
}

.lifestyle-photo {
  margin: 0;
}

.lifestyle-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lifestyle-photo.small img {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.note-box {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.note-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(87, 182, 55, 0.08), rgba(255, 255, 255, 0.9));
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-title {
  margin: 0 0 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.cta-body {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.accordion-trigger .chevron {
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 16px;
}

.accordion-panel.open {
  max-height: 220px;
  padding: 0 16px 14px;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

.methodology-3d {
  position: relative;
  margin-top: 24px;
  padding: 48px 0 32px;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.scene {
  width: 260px;
  height: 360px;
  perspective: 1000px;
  position: relative;
  margin: 8px auto 16px;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
}

.methodology-3d.dragging .scene {
  cursor: grabbing;
}

.carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  pointer-events: none;
}

.card-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

.method-card {
  width: 240px;
  height: 340px;
  background-color: var(--paper);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backface-visibility: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  pointer-events: none;
}

.card-wrapper:nth-child(odd) .method-card {
  border-top: 6px solid #000;
}

.card-wrapper:nth-child(even) .method-card {
  border-top: 6px solid #000;
}

.method-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.method-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--stroke);
  margin: 10px auto 0;
  border-radius: 2px;
}

.method-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.card-footer {
  margin-top: auto;
  font-size: 12px;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 1px;
}

.methodology-note {
  text-align: center;
  margin-top: 18px;
}

.faq-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  border: 1px solid var(--stroke);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.faq-card .question {
  font-weight: 700;
  margin: 0 0 10px;
}

.faq-card .answer {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.no-js .card-wrapper {
  position: relative;
  animation: none;
}

.no-js .method-card {
  width: 100%;
  height: auto;
  animation: none;
}

.no-js .carousel {
  position: relative;
  transform: none;
  display: grid;
  gap: 12px;
}

@media (max-width: 720px) {
  .scene {
    width: 100%;
    height: auto;
    perspective: none;
  }

  .carousel {
    position: relative;
    transform: none;
    display: grid;
    gap: 12px;
    height: auto;
    pointer-events: auto;
  }

  .card-wrapper {
    position: relative;
    animation: none;
    height: auto;
    transform: none !important;
    pointer-events: auto;
  }

  .method-card {
    width: 100%;
    height: auto;
    animation: none;
    transform: none !important;
    pointer-events: auto;
  }

  .hero-form input {
    width: 100%;
  }

  .hero-secondary {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 70px 0 60px;
  }

  .feedback-item {
    flex-basis: 220px;
  }

  .feedback-group {
    padding-right: 14px;
    gap: 14px;
  }

  .hero-copy {
    width: 100%;
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .methodology-carousel {
    height: auto;
    display: grid;
    gap: 12px;
  }

  .method-card {
    position: relative;
    left: 0;
    top: 0;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text .lead {
    font-size: 16px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .accordion-panel.open {
    max-height: 400px;
  }

  .feedback-item {
    flex-basis: 80%;
  }

  .feedback-group {
    padding-right: 12px;
    gap: 12px;
  }

  .feedback-slider {
    overflow: hidden;
    height: 70vh;
    max-height: 520px;
  }

  .feedback-track {
    animation: feedback-scroll-vertical 48s linear infinite;
    flex-direction: column;
    width: 100%;
  }

  .feedback-group {
    flex-direction: column;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .feedback-item {
    flex: none;
    width: min(260px, 100%);
    margin: 0 auto;
  }
}

@keyframes feedback-scroll-vertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.mentor-photo {
  width: min(320px, 100%);
  min-height: 460px;
  aspect-ratio: 3 / 4;
  justify-self: center;
  border-radius: 32px;
  background: url('../images/a-tua-mentora-opt.jpg') center/cover no-repeat,
    linear-gradient(160deg, rgba(87, 182, 55, 0.35), rgba(87, 182, 55, 0.1)), linear-gradient(220deg, #fff, #f6f2ed);
  box-shadow: var(--shadow);
}

.mentor-list {
  margin: 16px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.mentor-list li::marker {
  color: var(--accent);
}