:root {
  --ca-bg: #ffffff;
  --ca-cream: #fbfcf7;
  --ca-ink: #172018;
  --ca-muted: #667063;
  --ca-line: rgba(31, 58, 34, .14);
  --ca-primary: #2f9023;
  --ca-primary-dark: #1d6b1f;
  --ca-lime: #74e04d;
  --ca-sky: #e8f4ff;
  --ca-amber: #fff4d8;
  --ca-shadow: 0 22px 70px rgba(29, 51, 31, .12);
  --ca-sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ca-serif: "Alice", Georgia, "Times New Roman", serif;
}

body.home,
body.single-courses.postid-9,
body.ca-polished-surface {
  background: var(--ca-bg);
  color: var(--ca-ink);
  font-family: var(--ca-sans);
}

body.ca-polished-surface .uicore-top-bar,
body.ca-polished-surface .uicore-cta-wrapper,
body.ca-polished-surface .uicore-footer-wrapper {
  display: none !important;
}

body.ca-polished-surface #wrapper-navbar {
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid var(--ca-line);
  box-shadow: 0 12px 38px rgba(23, 32, 24, .05);
}

body.ca-polished-surface .uicore-navbar .uicore-container {
  min-height: 74px;
}

body.ca-polished-surface .uicore-menu .ui-menu-item-wrapper {
  color: var(--ca-ink);
  font-family: var(--ca-sans);
  font-weight: 800;
}

body.ca-polished-surface .uicore-branding img {
  max-width: 176px;
  height: auto;
}

.ca-home {
  background: var(--ca-bg);
  color: var(--ca-ink);
  font-family: var(--ca-sans);
  overflow: hidden;
}

.ca-home *,
.ca-home *::before,
.ca-home *::after {
  box-sizing: border-box;
}

.ca-home__wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ca-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 132px);
  padding: clamp(42px, 7vw, 92px) 0 clamp(34px, 6vw, 74px);
}

.ca-kicker {
  margin: 0 0 16px;
  color: var(--ca-primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ca-hero h1,
.ca-section-head h2,
.ca-momentum h2,
.ca-pricing h2,
.ca-final-cta h2 {
  margin: 0;
  color: var(--ca-ink);
  font-family: var(--ca-serif);
  font-weight: 400;
  line-height: .98;
  text-wrap: balance;
}

.ca-hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 7.2vw, 94px);
}

.ca-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--ca-muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.5;
}

.ca-hero__actions,
.ca-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.ca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ca-line);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ca-btn:hover {
  transform: translateY(-1px);
}

.ca-btn--primary {
  border-color: var(--ca-primary);
  background: var(--ca-primary);
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(47, 144, 35, .24);
}

.ca-btn--primary:hover {
  background: var(--ca-primary-dark);
  box-shadow: 0 18px 38px rgba(47, 144, 35, .3);
}

.ca-btn--ghost {
  background: #fff;
  color: var(--ca-ink) !important;
}

.ca-btn--light {
  background: #fff;
  color: var(--ca-primary-dark) !important;
}

.ca-proofline {
  gap: 8px;
  margin-top: 18px;
}

.ca-proofline span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--ca-line);
  border-radius: 999px;
  background: var(--ca-cream);
  color: #405044;
  font-size: 13px;
  font-weight: 700;
}

.ca-hero__visual {
  position: relative;
  border-radius: 18px;
}

.ca-hero__visual::before {
  content: "";
  position: absolute;
  inset: 9% -7% -10% 12%;
  z-index: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(116, 224, 77, .2), rgba(232, 244, 255, .66));
  filter: blur(24px);
}

.ca-hero__visual img,
.ca-curriculum__image img,
.ca-momentum img,
.ca-pricing__copy img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.ca-value {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 clamp(58px, 8vw, 96px);
}

.ca-value article,
.ca-topic-card,
.ca-price-card,
.ca-faq-home details {
  border: 1px solid var(--ca-line);
  border-radius: 8px;
  background: #fff;
}

.ca-value article {
  padding: 24px 22px;
}

.ca-value span,
.ca-topic-card span {
  color: var(--ca-primary);
  font-size: 13px;
  font-weight: 900;
}

.ca-value h2,
.ca-topic-card h3 {
  margin: 14px 0 10px;
  color: var(--ca-ink);
  font-size: 21px;
  line-height: 1.16;
}

.ca-value p,
.ca-topic-card li,
.ca-momentum p,
.ca-pricing p,
.ca-price-card span,
.ca-price-card small,
.ca-faq-home p {
  color: var(--ca-muted);
  line-height: 1.62;
}

.ca-value p,
.ca-topic-card ul {
  margin: 0;
}

.ca-section-head {
  max-width: 800px;
  margin-bottom: 32px;
}

.ca-section-head h2,
.ca-momentum h2,
.ca-pricing h2,
.ca-final-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.ca-curriculum {
  padding: clamp(58px, 8vw, 100px) 0;
  border-top: 1px solid var(--ca-line);
}

.ca-curriculum__grid,
.ca-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.ca-curriculum__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ca-topic-card {
  min-height: 210px;
  padding: 22px;
}

.ca-topic-card ul {
  padding-left: 18px;
}

.ca-curriculum__image {
  position: sticky;
  top: 100px;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--ca-cream), #fff);
}

.ca-momentum {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
  margin-top: 10px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 16px;
  background: linear-gradient(135deg, #143817 0%, #2f9023 64%, #8ee96f 100%);
  color: #fff;
}

.ca-momentum h2,
.ca-momentum .ca-kicker,
.ca-momentum p {
  color: #fff;
}

.ca-momentum p {
  max-width: 620px;
  opacity: .88;
}

.ca-momentum img {
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(8, 35, 12, .24);
}

.ca-pricing {
  padding: clamp(70px, 9vw, 112px) 0;
  align-items: center;
}

.ca-pricing__copy img {
  max-width: 430px;
  margin-top: 24px;
  border: 1px solid var(--ca-line);
  border-radius: 10px;
  box-shadow: var(--ca-shadow);
}

.ca-price-card {
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, #fff, #fff),
    linear-gradient(135deg, var(--ca-amber), var(--ca-sky));
  box-shadow: var(--ca-shadow);
}

.ca-price-card p {
  margin: 0;
  color: var(--ca-primary-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.ca-price-card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--ca-ink);
  font-family: var(--ca-serif);
  font-size: clamp(70px, 10vw, 116px);
  font-weight: 400;
  line-height: .9;
}

.ca-price-card .ca-btn {
  width: 100%;
  margin: 24px 0 14px;
}

.ca-price-card small {
  display: block;
  font-size: 13px;
}

.ca-faq-home {
  padding-bottom: clamp(62px, 8vw, 104px);
}

.ca-faq-home__list {
  display: grid;
  gap: 10px;
}

.ca-faq-home details {
  padding: 20px 22px;
}

.ca-faq-home summary {
  cursor: pointer;
  color: var(--ca-ink);
  font-weight: 900;
}

.ca-faq-home p {
  margin: 12px 0 0;
}

.ca-final-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(54px, 8vw, 84px) 20px;
  margin-bottom: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ca-cream), var(--ca-sky));
  text-align: center;
}

.ca-final-cta img {
  width: min(280px, 78vw);
  height: auto;
}

.ca-final-cta h2 {
  max-width: 800px;
}

body.single-courses.postid-9 .uicore-page-title,
body.single-courses.postid-9 .tutor-course-details-top .tutor-mt-12 {
  display: none !important;
}

body.single-courses.postid-9 .uicore-page-title {
  background-color: #fff !important;
}

body.single-courses.postid-9 #content {
  background:
    linear-gradient(180deg, #f8fbf5 0, #fff 360px),
    #fff;
}

body.single-courses.postid-9 .tutor-course-details-page {
  width: min(1180px, calc(100% - 40px));
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(50px, 7vw, 90px);
  font-family: var(--ca-sans);
}

body.single-courses.postid-9 .tutor-course-details-page::before {
  content: "Desafio principal · 30 dias · pagamento único";
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ca-primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.single-courses.postid-9 .tutor-course-details-title {
  color: var(--ca-ink) !important;
  font-family: var(--ca-serif);
  font-size: clamp(42px, 5.2vw, 72px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

body.single-courses.postid-9 .tutor-course-details-content,
body.single-courses.postid-9 .tutor-course-content-title,
body.single-courses.postid-9 .tutor-accordion-item-header,
body.single-courses.postid-9 .tutor-course-details-widget-title {
  color: var(--ca-ink) !important;
}

body.single-courses.postid-9 .tutor-course-details-content {
  color: var(--ca-muted) !important;
  font-size: 18px;
  line-height: 1.65;
}

body.single-courses.postid-9 .tutor-course-thumbnail img,
body.single-courses.postid-9 .tutor-sidebar-card,
body.single-courses.postid-9 .tutor-accordion-item {
  border-radius: 10px !important;
  border-color: var(--ca-line) !important;
}

body.single-courses.postid-9 .tutor-sidebar-card {
  background: linear-gradient(180deg, #fff, #f8fbf5);
  box-shadow: var(--ca-shadow);
}

body.single-courses.postid-9 .tutor-course-sidebar-card-pricing span {
  font-size: 0 !important;
}

body.single-courses.postid-9 .tutor-course-sidebar-card-pricing span::after {
  content: "R$99";
  font-family: var(--ca-serif);
  font-size: 58px !important;
  font-weight: 400 !important;
  color: var(--ca-ink) !important;
}

body.single-courses.postid-9 .tutor-btn-primary,
body.single-courses.postid-9 .tutor-open-login-modal {
  min-height: 52px;
  border: 1px solid var(--ca-primary) !important;
  border-radius: 8px !important;
  background: var(--ca-primary) !important;
  color: #fff !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 34px rgba(47, 144, 35, .24);
}

body.single-courses.postid-9 .tutor-open-login-modal span:last-child {
  font-size: 0;
}

body.single-courses.postid-9 .tutor-open-login-modal span:last-child::after {
  content: "Comprar por R$99";
  font-size: 16px;
}

body.single-courses.postid-9 .lesson-preview-title {
  color: var(--ca-primary-dark);
  font-weight: 800;
}

body.single-courses.postid-9 .lesson-preview-title::after {
  content: " · preview liberado";
  color: var(--ca-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body.single-courses.postid-9 .tutor-course-content-list-item {
  gap: 8px;
}

body.single-courses.postid-9 .tutor-course-content-list-item-title a {
  color: inherit;
  text-decoration: none !important;
}

body.page-id-3 #content,
body.page-id-828 #content {
  background: #fff;
}

body.page-id-3 .uicore-page-title,
body.page-id-828 .uicore-page-title {
  background: #f8fbf5 !important;
}

body.page-id-3 .uicore-title,
body.page-id-828 .uicore-title {
  color: var(--ca-ink) !important;
  font-family: var(--ca-serif) !important;
  font-weight: 400 !important;
}

body.page-id-3 .entry-content .uicore-content,
body.page-id-828 .entry-content .uicore-content {
  max-width: 760px;
  padding: clamp(36px, 6vw, 72px) 0;
  color: var(--ca-muted);
  font-family: var(--ca-sans);
  font-size: 18px;
  line-height: 1.7;
}

body.page-id-3 .entry-content h1,
body.page-id-828 .entry-content h1 {
  margin: 0 0 18px;
  color: var(--ca-ink);
  font-family: var(--ca-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.ca-site-footer {
  margin-top: clamp(34px, 5vw, 66px);
  border-top: 1px solid var(--ca-line);
  background: #fff;
  color: var(--ca-ink);
  font-family: var(--ca-sans);
}

.ca-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(190px, .75fr) minmax(160px, .55fr);
  gap: clamp(28px, 5vw, 68px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px) 0;
}

.ca-site-footer__brand img {
  display: block;
  width: min(220px, 70vw);
  height: auto;
}

.ca-site-footer__brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--ca-muted);
  line-height: 1.6;
}

.ca-site-footer__links,
.ca-site-footer__legal {
  display: grid;
  align-content: start;
  gap: 12px;
}

.ca-site-footer a {
  color: var(--ca-ink);
  font-weight: 800;
  text-decoration: none !important;
}

.ca-site-footer a:hover {
  color: var(--ca-primary-dark);
}

@media (max-width: 980px) {
  .ca-hero,
  .ca-curriculum__grid,
  .ca-momentum,
  .ca-pricing {
    grid-template-columns: 1fr;
  }

  .ca-hero {
    min-height: auto;
  }

  .ca-value {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ca-curriculum__image {
    position: static;
    max-width: 520px;
  }

  .ca-site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .ca-site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.ca-polished-surface .uicore-navbar .uicore-container {
    min-height: 64px;
  }

  body.ca-polished-surface .uicore-branding img {
    max-width: 150px;
  }

  body.ca-polished-surface .uicore-mobile-head-right {
    min-width: auto;
  }

  .ca-home__wrap {
    width: min(100% - 28px, 1180px);
  }

  .ca-hero {
    gap: 22px;
    padding-top: 34px;
  }

  .ca-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
    line-height: 1.02;
  }

  .ca-lede {
    margin-top: 18px;
    font-size: 17px;
  }

  .ca-proofline span {
    width: 100%;
    justify-content: center;
  }

  .ca-value,
  .ca-curriculum__cards {
    grid-template-columns: 1fr;
  }

  .ca-momentum {
    padding: 28px 18px;
    border-radius: 10px;
  }

  .ca-section-head h2,
  .ca-momentum h2,
  .ca-pricing h2,
  .ca-final-cta h2 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.02;
  }

  .ca-price-card strong {
    font-size: clamp(64px, 21vw, 86px);
  }

  .ca-btn {
    width: 100%;
  }

  body.single-courses.postid-9 .tutor-course-details-page {
    width: min(100% - 28px, 1180px);
    padding-top: 30px;
  }

  body.single-courses.postid-9 .tutor-course-details-title {
    font-size: clamp(40px, 13vw, 52px) !important;
    line-height: 1.02 !important;
  }

  body.single-courses.postid-9 .tutor-course-details-content {
    font-size: 16px;
  }

  body.single-courses.postid-9 .tutor-course-sidebar-card-pricing span::after {
    font-size: 52px !important;
  }

  body.single-courses.postid-9 .lesson-preview-title::after {
    display: block;
    margin-top: 4px;
  }

  body.single-courses.postid-9 .tutor-course-content-list-item {
    align-items: flex-start !important;
  }

  body.page-id-3 .entry-content .uicore-content,
  body.page-id-828 .entry-content .uicore-content {
    font-size: 16px;
  }

  .ca-site-footer__inner {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    gap: 24px;
  }
}
