/* ==========================================================================
   CBSE - Comer Bem Sem Estresse
   Complete Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. FONT FACE DECLARATIONS
   ========================================================================== */

@font-face {
  font-family: 'Factul';
  src: url('fonts/fractul-light-webfont.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Factul';
  src: url('fonts/fractul-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Factul';
  src: url('fonts/fractul-medium-webfont.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Factul';
  src: url('fonts/fractul-bold-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Primary Colors */
  --color-dark-green: #244030;
  --color-secondary-green: #4e8867;
  --color-light-green: #61CE70;
  --color-cta-green: #2d8050;
  --color-cta-green-hover: #25a75c;
  --color-badge-green: #42A456;
  --color-check-green: #6bb577;

  /* Gold / Amber */
  --color-gold: #feb45d;
  --color-gold-light: #fdd8ac;
  --color-gold-dark: #dbb953;
  --color-amber: #f89a2b;

  /* Backgrounds */
  --color-cream: #fef4df;
  --color-cream-light: #fcf9f2;
  --color-off-white: #fffefb;
  --color-warm-bg: #f5f1e9;

  /* Text */
  --color-text-dark: #1c3124;
  --color-text-black: #0f0f0f;
  --color-text-heading: #3b3b3b;
  --color-text-body: #584c4d;
  --color-text-body-alt: #535353;

  /* Neutrals */
  --color-white: #ffffff;
  --color-footer-bg: #272727;

  /* Accent */
  --color-red: #c93131;

  /* Typography */
  --font-heading: 'Factul', 'Inter', sans-serif;
  --font-body: 'Inter', 'Factul', sans-serif;

  /* Layout */
  --container-max: 1140px;
  --container-wide: 1280px;
  --container-narrow: 1080px;
  --section-padding: 60px 40px;
  --section-padding-mobile: 40px 20px;
  --border-radius-card: 10px;
  --border-radius-pill: 100px;
}

/* ==========================================================================
   3. CSS RESET / BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text-heading);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

s {
  opacity: 0.6;
}

video {
  display: block;
}

details {
  display: block;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
  content: '';
}

/* ==========================================================================
   4. GLOBAL ELEMENT STYLES
   ========================================================================== */

/* -- Container Utility ---------------------------------------------------- */

section,
footer {
  width: 100%;
}

section > *:not(.swiper):not(.methodology__phases):not(.testimonials__carousel) {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* -- Inline Spans & Utilities --------------------------------------------- */

.underline-inner {
  background-image: linear-gradient(var(--color-gold), var(--color-gold));
  background-size: 100% 3px;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 4px;
}

.underline-red {
  background-image: linear-gradient(var(--color-red), var(--color-red));
  background-size: 100% 3px;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 4px;
}

.underline-verde {
  background-image: linear-gradient(var(--color-cta-green-hover), var(--color-cta-green-hover));
  background-size: 100% 3px;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 4px;
}

.texto {
  font-weight: 600;
}

.aulas {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  font-family: var(--font-body);
}

.oculto {
  display: none;
}

/* Responsive visibility helpers */
.hidden-desktop {
  display: none;
}

.hidden-mobile {
  display: block;
}

@media screen and (max-width: 768px) {
  .hidden-desktop {
    display: block;
  }
  .hidden-mobile {
    display: none;
  }
}

.comprimido {
  font-size: 16px;
  line-height: 1.6;
}

/* -- Icon List Pattern ---------------------------------------------------- */

.icon-list__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-list__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon-list__text {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

/* -- CTA Button ----------------------------------------------------------- */

.cta-button {
  display: inline-block;
  background-image: linear-gradient(to right, #2d8050 0%, #1fbf63 51%, #2d8050 100%);
  background-size: 200% auto;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(45, 128, 80, 0.3);
}

.cta-button:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 167, 92, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* ==========================================================================
   5. SECTION STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   5.1 HERO SECTION
   -------------------------------------------------------------------------- */

.hero {
  background-color: #f0e9de;
  background-image: url('img/093713-copy.webp');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 20px 0 0;
  text-align: center;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
}

.hero__logo {
  margin-bottom: 40px;
}

.hero__logo img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: 43px;
  font-weight: 400;
  color: var(--color-text-heading);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #0f0f0f;
  margin-bottom: 40px;
  line-height: 1.4;
}

.hero__video {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__video {
  position: relative;
}

.hero__video video {
  width: 100%;
  border-radius: var(--border-radius-card);
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-card);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video-overlay::after {
  content: '';
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d8050'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.hero__video-overlay:hover::after {
  transform: scale(1.1);
}

.hero__video-overlay.hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   5.2 PROBLEM SECTION
   -------------------------------------------------------------------------- */

.problem {
  background-color: #fff;
  background-image: linear-gradient(180deg, transparent 0%, var(--color-cream) 100%);
  padding: 60px 40px;
}

.problem > * {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.problem__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.35;
  max-width: 81%;
  margin-left: auto;
  margin-right: auto;
}

.problem__list {
  max-width: 81%;
  margin: 0 auto 40px;
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-body);
}

.problem__list .icon-list__icon {
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.problem__followup {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-body);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.5;
}

.problem__conclusion {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   5.3 WITHOUT METHOD SECTION
   -------------------------------------------------------------------------- */

.without-method {
  background: linear-gradient(103deg, var(--color-dark-green) 0%, var(--color-secondary-green) 100%);
  padding: 0 40px;
  color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.without-method > * {
  max-width: var(--container-max);
}

.without-method__content {
  flex: 0 0 56%;
  min-width: 300px;
  padding: 60px 20px 60px 0;
}

.without-method__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 24px;
}

.without-method__content p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.without-method__images {
  flex: 0 0 44%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.without-method__images img {
  width: 100%;
  border-radius: var(--border-radius-card);
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   5.4 METHOD OVERVIEW SECTION
   -------------------------------------------------------------------------- */

.method-overview {
  background: #f9f9f9;
  padding: 80px 40px;
  color: var(--color-text-dark);
  text-align: center;
}

.method-overview > * {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.method-overview__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.method-overview__title img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
}

.method-overview__title h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.35;
  text-align: left;
  flex: 1;
  min-width: 280px;
}

.method-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.method-card {
  background: var(--color-white);
  background-image: url('img/142704-copy.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-card);
  padding: 30px 24px;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.method-card__icon {
  margin-bottom: 18px;
}

.method-card__icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  object-fit: contain;
}

.method-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.method-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

.method-overview__decoration {
  display: block;
  width: 120px;
  height: auto;
  margin: 30px auto;
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   5.5 COMPARISON SECTION
   -------------------------------------------------------------------------- */

.comparison {
  background: linear-gradient(90deg, #feb45d 0%, #fdd8ac 100%);
  padding: 70px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: left;
}

.comparison__col {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
  background: radial-gradient(at center center, var(--color-warm-bg) 0%, var(--color-white) 100%);
  border-radius: var(--border-radius-card);
  padding: 35px 30px;
}

.comparison__col h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  line-height: 1.35;
}

.comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-body);
}

.comparison__list .icon-list__icon {
  width: 28px;
  height: 28px;
  margin-top: 1px;
}

.comparison .cta-button {
  display: block;
  max-width: 420px;
  margin: 30px auto 20px;
  text-align: center;
  width: 100%;
}

.comparison__closing {
  text-align: center;
  font-size: 20px;
  color: var(--color-text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  width: 100%;
  flex-basis: 100%;
}

/* --------------------------------------------------------------------------
   5.6 METHODOLOGY SECTION
   -------------------------------------------------------------------------- */

.methodology {
  background: var(--color-cream);
  padding: 70px 40px;
  color: var(--color-text-dark);
  text-align: center;
}

.methodology__image {
  margin-bottom: 30px;
}

.methodology__image img {
  max-width: 350px;
  margin: 0 auto;
  border-radius: var(--border-radius-card);
}

.methodology__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.35;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.methodology__lottie-hint {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  opacity: 0.75;
}

.methodology__lottie-hint .e-lottie__container {
  width: 60px;
  height: 60px;
}

.methodology__lottie-hint p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
}

.methodology__phases {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 30px 20px;
  margin-bottom: 40px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.methodology__phases::-webkit-scrollbar {
  height: 6px;
}

.methodology__phases::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.methodology__phases::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.phase-card {
  background: radial-gradient(at center center, #5a866d 0%, var(--color-dark-green) 100%);
  border-radius: var(--border-radius-card);
  padding: 28px 22px;
  min-width: 260px;
  max-width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-align: center;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-3px);
}

.phase-card__number {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.phase-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 14px;
}

.phase-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.phase-card__image img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  border-radius: 8px;
}

/* --------------------------------------------------------------------------
   5.7 ABOUT SECTION
   -------------------------------------------------------------------------- */

.about {
  background: linear-gradient(304deg, #bb7d34 0%, #f8b361 100%);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.about__wrapper {
  background: var(--color-cream-light);
  border-radius: var(--border-radius-card);
  padding: var(--section-padding);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max);
}

.about__image {
  flex: 0 1 380px;
}

.about__image img {
  width: 100%;
  border-radius: var(--border-radius-card);
  object-fit: cover;
}

.about__content {
  flex: 1;
  min-width: 300px;
  max-width: 640px;
}

.about__header {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-secondary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about__name {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

.about__badge {
  margin-bottom: 20px;
}

.about__badge img {
  width: 100px;
  height: auto;
}

.about__bio p {
  color: var(--color-text-body);
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   5.8 CURRICULUM SECTION
   -------------------------------------------------------------------------- */

.curriculum {
  background: linear-gradient(157deg, var(--color-dark-green) 0%, var(--color-secondary-green) 100%);
  padding: 80px 0 0;
  color: var(--color-white);
  text-align: center;
}

.curriculum > * {
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.curriculum__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 10px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.curriculum__instruction {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.curriculum__accordion {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

/* -- Accordion Items ------------------------------------------------------ */

.accordion-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.accordion-item[open] {
  background: rgba(255, 255, 255, 0.12);
}

.accordion-title {
  padding: 22px 50px 22px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  list-style: none;
  user-select: none;
  line-height: 1.4;
}

.accordion-title::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-title::after {
  content: '\2212';
  transform: translateY(-50%);
}

.accordion-item__content {
  padding: 0 24px 24px;
}

.accordion-item__subtitle {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.accordion-item__description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.accordion-item__modules li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.accordion-item__modules .icon-list__icon {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

/* -- Curriculum Summary --------------------------------------------------- */

.curriculum__summary {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.curriculum__summary p {
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   5.9 BONUSES SECTION
   -------------------------------------------------------------------------- */

.bonuses {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  padding: 80px 40px;
  text-align: center;
}

.bonuses > * {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.bonuses__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.bonuses__subtitle {
  font-size: 19px;
  color: var(--color-text-body);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-card {
  background: var(--color-white);
  border-radius: var(--border-radius-card);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.bonus-card__image {
  margin-bottom: 16px;
}

.bonus-card__image img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.bonus-card__badge {
  display: inline-block;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 14px;
}

.bonus-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.bonus-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   5.10 TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */

.testimonials {
  background: linear-gradient(103deg, var(--color-dark-green) 0%, var(--color-secondary-green) 100%);
  padding: 80px 0 80px;
  text-align: center;
}

.testimonials__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials__carousel {
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}

.testimonials-swiper .swiper-slide a {
  display: block;
}

.testimonials-swiper .swiper-slide figure {
  margin: 0;
}

.testimonials-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--color-white);
}

/* --------------------------------------------------------------------------
   5.11 PRICING SECTION
   -------------------------------------------------------------------------- */

.pricing {
  background: linear-gradient(11deg, var(--color-dark-green) 0%, #39664c 100%);
  padding: 0 40px;
  text-align: center;
}

.pricing > * {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

.pricing__features {
  max-width: 600px;
  margin: 0 auto 40px;
}

.pricing__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.pricing__checklist {
  text-align: left;
}

.pricing__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 500;
}

.pricing__checklist .icon-list__icon {
  width: 30px;
  height: 30px;
}

.pricing__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 500px;
  margin: 0 auto 30px;
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.pricing__card > img {
  max-width: 320px;
  margin: 0 auto 20px;
}

.pricing__card h1 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 8px;
}

.pricing__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.pricing__amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing__installments {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  align-self: center;
  margin-right: 4px;
}

.pricing__value {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.pricing__cents {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

.pricing__full-price {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.pricing__card .cta-button {
  width: 100%;
  max-width: 380px;
  font-size: 18px;
  padding: 18px 36px;
}

.pricing__badges {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.pricing__badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
}

.pricing__badges .icon-list__icon {
  width: 30px;
  height: 30px;
}

/* --------------------------------------------------------------------------
   5.12 GUARANTEE SECTION
   -------------------------------------------------------------------------- */

.guarantee {
  background: linear-gradient(90deg, #feb45d 0%, #fdd8ac 100%);
  padding: 10px;
}

.guarantee__wrapper {
  background: var(--color-white);
  border-radius: var(--border-radius-card);
  padding: var(--section-padding);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.guarantee__image {
  flex: 0 1 280px;
}

.guarantee__image img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.guarantee__content {
  flex: 1;
  min-width: 280px;
  max-width: 540px;
}

.guarantee__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

.guarantee__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   5.13 CLOSING SECTION
   -------------------------------------------------------------------------- */

.closing {
  background: radial-gradient(at bottom center, #3b634c 0%, var(--color-dark-green) 100%);
  padding: 70px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--color-white);
}

.closing__image {
  flex: 0 1 350px;
}

.closing__image img {
  width: 100%;
  border-radius: var(--border-radius-card);
}

.closing__content {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
}

.closing__title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.closing__text {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

/* --------------------------------------------------------------------------
   5.14 FAQ SECTION
   -------------------------------------------------------------------------- */

.faq {
  background: var(--color-cream);
  padding: 70px 30px;
}

.faq__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item__question {
  padding: 20px 40px 20px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  line-height: 1.5;
  list-style: none;
  user-select: none;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-secondary-green);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
}

.faq-item__answer {
  padding: 0 0 20px;
}

.faq-item__answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   5.15 FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-footer-bg);
  padding: 40px 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copyright {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer__contact {
  font-size: 14px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --------------------------------------------------------------------------
   6.1 TABLET (max-width: 1024px)
   -------------------------------------------------------------------------- */

@media screen and (max-width: 1024px) {
  .hero__headline {
    font-size: 36px;
  }

  .problem__title {
    font-size: 30px;
  }

  .without-method__title {
    font-size: 30px;
  }

  .method-overview__title h1 {
    font-size: 30px;
  }

  .method-overview__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }

  .comparison__col h1 {
    font-size: 24px;
  }

  .methodology__title {
    font-size: 30px;
  }

  .curriculum__title {
    font-size: 32px;
  }

  .bonuses__title {
    font-size: 34px;
  }

  .testimonials__title {
    font-size: 30px;
  }

  .pricing__title {
    font-size: 30px;
  }

  .pricing__value {
    font-size: 54px;
  }

  .closing__title {
    font-size: 28px;
  }

  .faq__title {
    font-size: 32px;
  }
}

/* --------------------------------------------------------------------------
   6.2 MOBILE (max-width: 768px)
   -------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }

  :root {
    --section-padding: 40px 20px;
  }

  /* -- Hero -- */
  .hero {
    padding: 5% 5% 10%;
    background-position: bottom center;
  }

  .hero__logo {
    margin-bottom: 24px;
  }

  .hero__logo img {
    max-width: 220px;
  }

  .hero__headline {
    font-size: 6.3vw;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero__subheadline {
    font-size: 4.1vw;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
  }

  .hero__video {
    margin-bottom: 28px;
  }

  .cta-button {
    font-size: 15px;
    padding: 16px 30px;
    width: 100%;
    max-width: 360px;
  }

  /* -- Problem -- */
  .problem {
    padding: var(--section-padding);
  }

  .problem__title {
    font-size: 24px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .problem__list {
    max-width: 100%;
  }

  .problem__list li {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .problem__followup {
    font-size: 20px;
  }

  .problem__conclusion {
    font-size: 22px;
  }

  /* -- Without Method -- */
  .without-method {
    padding: 0;
  }

  .without-method__content {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 40px 20px;
  }

  .without-method__title {
    font-size: 26px;
  }

  .without-method__content p {
    font-size: 17px;
  }

  .without-method__images {
    flex: 1 1 100%;
    min-width: unset;
  }

  /* -- Method Overview -- */
  .method-overview {
    padding: 50px 20px;
  }

  .method-overview__title {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .method-overview__title img {
    width: 140px;
  }

  .method-overview__title h1 {
    font-size: 26px;
    text-align: center;
  }

  .method-overview__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .method-card {
    padding: 24px 20px;
  }

  /* -- Comparison -- */
  .comparison {
    flex-direction: column;
    padding: 50px 20px;
  }

  .comparison__col {
    max-width: 100%;
    min-width: unset;
  }

  .comparison__col h1 {
    font-size: 22px;
  }

  .comparison__list li {
    font-size: 15px;
  }

  .comparison .cta-button {
    max-width: 100%;
  }

  .comparison__closing {
    font-size: 17px;
  }

  /* -- Methodology -- */
  .methodology {
    padding: 50px 20px;
  }

  .methodology__image img {
    max-width: 250px;
  }

  .methodology__title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .methodology__lottie-hint {
    display: flex;
  }

  .methodology__phases {
    padding: 10px 20px 16px;
  }

  .phase-card {
    min-width: 240px;
    padding: 22px 18px;
  }

  /* -- About -- */
  .about {
    padding: 8px;
  }

  .about__wrapper {
    padding: var(--section-padding);
    flex-direction: column;
    text-align: center;
  }

  .about__image {
    flex: 0 1 auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .about__content {
    text-align: left;
  }

  .about__badge {
    display: none;
  }

  .about__name {
    font-size: 30px;
  }

  /* -- Curriculum -- */
  .curriculum {
    padding: 50px 20px;
  }

  .curriculum__title {
    font-size: 26px;
  }

  .accordion-title {
    font-size: 17px;
    padding: 18px 44px 18px 20px;
  }

  .accordion-item__content {
    padding: 0 20px 20px;
  }

  /* -- Bonuses -- */
  .bonuses {
    padding: 50px 20px;
  }

  .bonuses__title {
    font-size: 30px;
  }

  .bonuses__subtitle {
    font-size: 17px;
  }

  .bonuses__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* -- Testimonials -- */
  .testimonials {
    padding: 50px 20px;
  }

  .testimonials__title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  /* -- Pricing -- */
  .pricing {
    padding: 50px 20px;
  }

  .pricing__title {
    font-size: 26px;
  }

  .pricing__checklist li {
    font-size: 16px;
  }

  .pricing__card {
    padding: 30px 20px;
  }

  .pricing__value {
    font-size: 48px;
  }

  .pricing__cents {
    font-size: 22px;
  }

  .pricing__card .cta-button {
    font-size: 16px;
    max-width: 100%;
  }

  /* -- Guarantee -- */
  .guarantee {
    padding: 8px;
  }

  .guarantee__wrapper {
    padding: var(--section-padding);
    flex-direction: column;
    text-align: center;
  }

  .guarantee__image {
    max-width: 200px;
    margin: 0 auto;
  }

  .guarantee__title {
    font-size: 28px;
  }

  .guarantee__text {
    font-size: 16px;
  }

  /* -- Closing -- */
  .closing {
    padding: 50px 20px;
    flex-direction: column;
    text-align: center;
  }

  .closing__image {
    flex: 0 1 auto;
    max-width: 280px;
    margin: 0 auto;
  }

  .closing__title {
    font-size: 26px;
  }

  .closing__text {
    font-size: 17px;
  }

  /* -- FAQ -- */
  .faq {
    padding: 50px 20px;
  }

  .faq__title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .faq-item__question {
    font-size: 16px;
    padding: 16px 36px 16px 0;
  }

  .faq-item__answer p {
    font-size: 15px;
  }

  /* -- Footer -- */
  .site-footer {
    padding: 30px 20px;
  }

  .footer__copyright,
  .footer__contact {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   6.3 SMALL MOBILE (max-width: 480px)
   -------------------------------------------------------------------------- */

@media screen and (max-width: 480px) {
  .hero__headline {
    font-size: 6.3vw;
  }

  .hero__subheadline {
    font-size: 4.1vw;
    letter-spacing: 1px;
  }

  .problem__title {
    font-size: 21px;
  }

  .problem__followup {
    font-size: 18px;
  }

  .problem__conclusion {
    font-size: 20px;
  }

  .without-method__title {
    font-size: 22px;
  }

  .method-overview__title h1 {
    font-size: 22px;
  }

  .methodology__title {
    font-size: 22px;
  }

  .curriculum__title {
    font-size: 22px;
  }

  .bonuses__title {
    font-size: 26px;
  }

  .testimonials__title {
    font-size: 22px;
  }

  .pricing__title {
    font-size: 22px;
  }

  .pricing__value {
    font-size: 40px;
  }

  .closing__title {
    font-size: 22px;
  }

  .faq__title {
    font-size: 24px;
  }

  .guarantee__title {
    font-size: 24px;
  }

  .about__name {
    font-size: 26px;
  }

  .phase-card {
    min-width: 220px;
  }

  /* swiper handled by JS breakpoints */
}

/* ==========================================================================
   7. ANIMATION & TRANSITIONS
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .accordion-item__content,
  .faq-item__answer {
    animation: fadeSlideIn 0.25s ease-out;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ==========================================================================
   8. PRINT STYLES
   ========================================================================== */

@media print {
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .cta-button,
  .hero__video,
  .methodology__lottie-hint,
  .testimonials__carousel {
    display: none;
  }

  section {
    break-inside: avoid;
    padding: 20px 0;
  }
}
