/* ==========================================================================
   WORKSHOP DESTRAVE SUA AUTOESTIMA - 100% FAITHFUL REPLICA
   Pure Vanilla CSS - Pixel Perfect & High Visual Fidelity
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-white: #FFFFFF;
  --bg-cream: #FDFBE4;
  --bg-light-rose: #FFF5F6;
  --bg-terracotta: #D6B29A;
  
  --color-green-btn-1: #659152;
  --color-green-btn-2: #74BF54;
  --color-primary-pink: #F66370;
  --color-primary-burgundy: #B93B46;
  --color-rose: #C5606E;
  --color-terracotta: #D6B29A;
  
  --text-dark: #222121;
  --text-black: #000000;
  --text-body: #333333;
  --text-muted: #555555;
  --text-white: #FFFFFF;
  
  --card-gradient-pink: linear-gradient(148deg, #F66370 0%, #B93B46 100%);
  --btn-gradient-green: linear-gradient(to right, #659152 0%, #74BF54 51%, #659152 100%);
  --banner-gradient: linear-gradient(90deg, #EB5663 0%, #CB687A 62.32%, #EB5663 124.64%);
  
  /* Typography */
  --font-heading: 'Poppins', Sans-serif;
  --font-body: 'Lato', Sans-serif;
  
  /* Spacing & Borders */
  --container-max-width: 1140px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 22px 30px rgba(0, 0, 0, 0.24);
  --shadow-pink: 0 12px 28px rgba(246, 99, 112, 0.35);
  --shadow-green: 0 8px 25px rgba(101, 145, 82, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-white);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.color1, .color-rose {
  color: var(--color-rose) !important;
}

.color-green {
  color: var(--color-green-btn-1) !important;
}

/* ==========================================================================
   BUTTONS & CTAs (.btn-grad)
   ========================================================================== */

.btn-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: var(--btn-gradient-green);
  background-size: 200% auto;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 18px 45px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.36);
  cursor: pointer;
  box-shadow: var(--shadow-green);
  transition: all 0.4s ease;
  text-align: center;
}

.btn-grad:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(101, 145, 82, 0.6);
}

.btn-grad:active {
  transform: translateY(0);
}

.btn-pulse {
  animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 191, 84, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(116, 191, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(116, 191, 84, 0);
  }
}

.divider {
  width: 100%;
  height: 1px;
  background: #E5E5E5;
  margin: 25px 0;
}

/* ==========================================================================
   SECTION 1: HERO SECTION (LIGHT WARM PEACH BACKGROUND #D6B29A)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  background-color: #D6B29A;
  background-image: url('../images/111604.webp');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 60px;
  border-top: 4px solid #EB5663;
  border-image: linear-gradient(90deg, #EB5663 0%, #CB687A 62.32%, #EB5663 124.64%) 4;
}

.hero-content {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 2;
}

/* Tag Box Top */
.hero-tag-box {
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-tag-text {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Date / Time / Live Capsule */
.hero-meta-capsule {
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-black);
}

.hero-meta-divider {
  color: rgba(0, 0, 0, 0.35);
  font-weight: 300;
  font-size: 1.1rem;
}

.hero-meta-item .meta-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Headline */
.hero-headline {
  font-family: var(--font-body);
  font-size: 1.95rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: var(--text-black);
  margin-top: 5px;
}

.hero-headline strong {
  font-weight: 800;
  color: var(--text-black);
}

/* Subheadline */
.hero-subheadline {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-black);
}

.hero-subheadline strong {
  font-weight: 800;
  color: var(--text-black);
}

.hero-cta-wrapper {
  margin-top: 10px;
}

/* ==========================================================================
   SECTION 2: POR QUE VOCÊ TEM BAIXA AUTOESTIMA (VIBRANT PINK GRADIENT CARD)
   ========================================================================== */

.section-reasons {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.reasons-box {
  background-image: var(--card-gradient-pink);
  border-radius: var(--radius-md);
  padding: 55px 50px;
  box-shadow: var(--shadow-pink);
  color: var(--text-white);
}

.reasons-tag {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFE6E9;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reasons-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  margin-bottom: 35px;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.reasons-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.18rem;
  line-height: 1.6;
  color: #FFFFFF;
}

.reasons-item strong {
  color: #FFF2A6;
  font-weight: 800;
}

.item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ==========================================================================
   SECTION 3: SPOILER (WARM LIGHT ACCENT)
   ========================================================================== */

.section-spoiler {
  background-color: var(--bg-white);
  padding: 30px 0;
}

.spoiler-box {
  background: #FFF5F6;
  border-left: 5px solid var(--color-primary-pink);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 25px 30px;
  max-width: 950px;
  margin: 0 auto;
}

.spoiler-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.6;
}

.spoiler-text em {
  font-style: italic;
  color: var(--color-primary-burgundy);
  font-weight: 700;
}

.spoiler-text strong {
  font-weight: 800;
  color: var(--color-primary-burgundy);
  text-decoration: underline;
  text-decoration-color: var(--color-primary-pink);
  text-underline-offset: 4px;
}

/* ==========================================================================
   SECTION 4: CRUCIAL PARA ALCANÇAR AUTOESTIMA SAUDÁVEL (CLEAN WHITE & CITATIONS)
   ========================================================================== */

.section-crucial {
  background-color: var(--bg-white);
  padding: 60px 0 80px;
}

.crucial-box {
  background: var(--bg-white);
  border: 1px solid #EFEFEF;
  border-radius: var(--radius-md);
  padding: 50px 45px;
  box-shadow: var(--shadow-md);
}

.crucial-title {
  font-family: var(--font-body);
  font-size: 1.85rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 25px;
}

.crucial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-body);
}

.crucial-content p strong {
  color: var(--text-dark);
  display: block;
}

.citation-card {
  background: #FFF5F6;
  border-left: 4px solid var(--color-primary-pink);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 6px 0 12px;
}

.citation-card .quote {
  font-style: italic;
  color: var(--color-primary-burgundy);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.citation-card .source {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 5: O MÉTODO EM 6 PASSOS (COLORFUL PINK GRADIENT CARDS)
   ========================================================================== */

.section-method {
  background-color: var(--bg-white);
  padding: 80px 0;
  position: relative;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.method-title {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-dark);
}

.method-title span {
  color: var(--color-rose);
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.step-card {
  background-image: var(--card-gradient-pink);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(246, 99, 112, 0.25);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(246, 99, 112, 0.4);
}

.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
  color: #FFFFFF;
  text-transform: uppercase;
}

.step-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 15px 0 18px;
}

.step-card-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #FFFFFF;
}

.method-result-box {
  background: var(--bg-white);
  border: 2px solid var(--color-primary-pink);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}

/* Testimonials Carousel */
.testimonials-wrapper {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #EEEEEE;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-rose);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 0 35px;
}

.carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 17px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #EFEFEF;
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-btn {
  background: var(--color-green-btn-1);
  border: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(101, 145, 82, 0.3);
}

.carousel-btn:hover {
  background: var(--color-green-btn-2);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D5D8DC;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-green-btn-1);
  width: 24px;
  border-radius: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--color-primary-pink);
}

/* ==========================================================================
   SECTION 6: NESSE WORKSHOP VOCÊ VAI APRENDER E PRATICAR (GREEN HEADER & WHITE BODY)
   ========================================================================== */

.section-learn {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.learn-wrapper {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #EAEAEA;
}

.learn-header-green {
  background-color: var(--color-green-btn-1);
  color: #FFFFFF;
  padding: 40px 30px;
  text-align: center;
}

.learn-icon-top {
  max-width: 90px;
  margin: 0 auto 15px;
}

.learn-title {
  font-family: var(--font-body);
  font-size: 1.95rem;
  font-weight: 700;
  font-style: italic;
  color: #FFFFFF;
}

.learn-body {
  background-color: #FFFFFF;
  padding: 45px 40px;
}

.learn-list {
  display: flex;
  flex-direction: column;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #000000;
  padding: 18px 0;
  border-bottom: 1px solid #EAEAEA;
}

.learn-item:last-child {
  border-bottom: none;
}

.learn-item strong {
  color: var(--text-dark);
  font-weight: 700;
}

.learn-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #EAEAEA;
}

.learn-footer-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.learn-footer-cta {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-green-btn-1);
  margin-top: 5px;
}

/* ==========================================================================
   SECTION 7: COMO SERÁ O WORKSHOP (CLEAN WHITE WITH HIGHLIGHTS)
   ========================================================================== */

.section-format {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.format-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.format-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.format-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.format-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333333;
}

.format-item .color1 {
  color: var(--color-rose);
  font-weight: 700;
}

/* ==========================================================================
   SECTION 8: BANNER BORDÔ (VIBRANT PINK GRADIENT)
   ========================================================================== */

.section-banner-viver {
  background: var(--banner-gradient);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.banner-viver-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.banner-viver-desc {
  font-size: 1.25rem;
  line-height: 1.65;
  color: #ffffff;
  max-width: 880px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 9: OFERTA & INGRESSOS (WARM TERRACOTTA BG & WHITE CARDS)
   ========================================================================== */

.section-pricing {
  background-color: var(--bg-terracotta);
  background-image: url('../images/125604-copy.webp');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 85px 0 95px;
}

.pricing-heading {
  font-family: var(--font-body);
  font-size: 2.15rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  color: #000000;
  margin-bottom: 45px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  max-width: 1020px;
  margin: 0 auto 50px;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--color-rose);
  margin-bottom: 25px;
  text-align: center;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #333333;
}

.pricing-price-box {
  text-align: center;
  margin-bottom: 25px;
}

.price-prefix {
  font-size: 1.15rem;
  color: #666666;
  margin-bottom: 5px;
}

.price-installments {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-green-btn-1);
}

.price-installments span {
  color: var(--color-green-btn-1);
  font-weight: 800;
}

.price-cash {
  font-size: 1.15rem;
  color: #555555;
  margin-top: 4px;
}

.pricing-card .btn-grad {
  width: 100%;
}

/* ==========================================================================
   SECTION 10: QUEM É A SUA MENTORA (BRIGHT WHITE BG & CLEAN CARD)
   ========================================================================== */

.section-mentor {
  background-color: var(--bg-white);
  padding: 40px 0 30px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mentor-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: auto;
}

.mentor-image-col {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 15px;
}

.mentor-img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  object-position: left top;
  display: block;
}

.mentor-content-col {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 40px 30px 50px;
}

.mentor-content {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentor-title {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.mentor-title .color1 {
  color: var(--color-rose);
  font-weight: 700;
}

.mentor-quote-box {
  border-left: 3px solid #EB5663;
  padding-left: 15px;
  margin: 5px 0;
}

.mentor-quote-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
}

.mentor-quote-text strong {
  font-weight: 800;
}

.mentor-desc {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #333333;
}

.mentor-desc strong,
.mentor-desc .color1 {
  color: var(--color-rose);
  font-weight: 700;
}

/* ==========================================================================
   SECTION 11: PERGUNTAS FREQUENTES (WARM CREAM BG & VIBRANT ROSE ACCORDION)
   ========================================================================== */

.section-faq {
  background-color: var(--bg-cream);
  background-image: url('../images/105425.webp');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 85px 0;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 45px;
}

.faq-title span {
  color: var(--color-rose);
  font-weight: 700;
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-header {
  background-color: var(--color-rose);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.faq-header:hover {
  background-color: #ba5462;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #FFFFFF;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  background-color: #FFFFFF;
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 20px 24px 24px;
}

.faq-body p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #000000;
}

.faq-body a {
  color: var(--color-primary-burgundy);
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   SECTION 12: FOOTER (PINK/ROSE GRADIENT)
   ========================================================================== */

.site-footer {
  background: var(--banner-gradient);
  padding: 22px 0;
  text-align: center;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .format-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .carousel-slide {
    flex: 0 0 calc(50% - 13px);
  }

  .mentor-content-col {
    padding: 40px 25px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    background-color: #D6B29A;
    background-image: url('../images/100505.webp');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-top: 25px;
    padding-bottom: 95vw; /* Perfectly exposes Neusa's photo at the bottom */
    padding-left: 12px;
    padding-right: 12px;
    min-height: auto;
    display: block;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
    max-width: 100%;
    gap: 15px;
  }
  
  .hero-tag-box {
    padding: 10px 18px;
    border-radius: 8px;
  }

  .hero-tag-text {
    font-size: 1.15rem;
    line-height: 1.25;
  }
  
  .hero-meta-capsule {
    justify-content: center;
    padding: 8px 14px;
    gap: 8px;
    border-radius: 50px;
  }
  
  .hero-meta-item {
    font-size: 0.86rem;
    gap: 5px;
  }

  .hero-meta-item .meta-icon {
    width: 17px;
    height: 17px;
  }
  
  .hero-headline {
    font-size: 1.35rem;
    line-height: 1.3;
    text-align: start;
    margin-top: 5px;
  }
  
  .hero-subheadline {
    font-size: 1.05rem;
    line-height: 1.45;
    text-align: start;
  }
  
  .hero-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .btn-grad {
    width: 85%;
    max-width: 320px;
    padding: 15px 20px;
    font-size: 1.05rem;
    border-radius: 8px;
  }
  
  .reasons-box,
  .crucial-box,
  .learn-body {
    padding: 30px 20px;
  }
  
  .reasons-title,
  .crucial-title,
  .method-title,
  .learn-title,
  .banner-viver-title,
  .pricing-heading,
  .mentor-title,
  .faq-title {
    font-size: 1.55rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 35px 22px;
  }
  
  .section-mentor {
    padding: 0 0 35px 0;
  }

  .mentor-wrapper {
    flex-direction: column;
    min-height: auto;
    width: 100%;
  }

  .mentor-image-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .mentor-img {
    width: 100%;
    max-height: none;
    display: block;
    margin: 0;
  }

  .mentor-content-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .mentor-content {
    position: relative;
    z-index: 2;
    margin: -70px 14px 0 14px;
    width: calc(100% - 28px);
    max-width: 100%;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 30px 18px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .mentor-quote-box {
    border-left: 3px solid #EB5663;
    padding-left: 12px;
  }

  .mentor-quote-text {
    font-size: 1.05rem;
  }

  .mentor-desc {
    font-size: 1rem;
  }
}
