/* styles.css */
:root {
  --cor-primaria: #df4102;
  --cor-primaria-escura: #b63200;
  --cor-primaria-suave: #fff0e7;
  --cor-secundaria: #171b24;
  --cor-fundo: #f7f3ef;
  --cor-superficie: #fffdfb;
  --cor-branco: #ffffff;
  --texto-principal: #171923;
  --texto-secundario: #626877;
  --borda-suave: rgba(23, 25, 35, 0.08);
  --sombra-media: 0 18px 44px rgba(22, 26, 35, 0.12);
  --sombra-forte: 0 28px 70px rgba(22, 26, 35, 0.16);
  --espacamento-horizontal: 1rem;
  --espacamento-vertical: 1rem;
  --font-base: "Plus Jakarta Sans", sans-serif;
}

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

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

body {
  font-family: var(--font-base);
  color: var(--texto-principal);
  background: linear-gradient(180deg, #f7f3ef 0%, #fffdfb 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(94%, 1240px);
  margin: 0 auto;
}

.btn-primary,
.btn-secondary,
.header-cta,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary,
.header-cta,
.mobile-cta {
  background: var(--cor-primaria);
  color: var(--cor-branco);
  box-shadow: 0 14px 32px rgba(223, 65, 2, 0.24);
}

.btn-primary:hover,
.header-cta:hover,
.mobile-cta:hover {
  background: var(--cor-primaria-escura);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--cor-branco);
  color: var(--cor-secundaria);
  box-shadow: 0 14px 32px rgba(7, 10, 16, 0.18);
}

.btn-secondary:hover {
  background: var(--cor-primaria-suave);
  color: var(--cor-primaria-escura);
  transform: translateY(-2px);
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(23, 25, 35, 0.06);
  box-shadow: 0 12px 30px rgba(22, 26, 35, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 1.15rem 0 0;
}

.logo {
  font-size: clamp(1.85rem, 2.3vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--texto-principal);
  text-transform: lowercase;
}

.logo span {
  color: var(--cor-primaria);
}

.header-menu-shell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.desktop-nav {
  margin-inline: 0;
  padding: 0.9rem 1.55rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(22, 26, 35, 0.06);
}

.desktop-nav a {
  position: relative;
  padding: 0.25rem 0;
  color: rgba(23, 25, 35, 0.92);
  font-weight: 600;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--cor-primaria);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--cor-primaria-escura);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 128px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(223, 65, 2, 0.22);
}

.desktop-cta {
  display: inline-flex;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 25, 35, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  z-index: 1001;
}

.hamburger .line {
  width: 18px;
  height: 2px;
  background: var(--texto-principal);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 88px;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: var(--sombra-forte);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: var(--texto-principal);
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.mobile-nav a:hover {
  background: var(--cor-primaria-suave);
  color: var(--cor-primaria-escura);
}

.mobile-cta {
  margin-top: 0.4rem;
}

.page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.page-home .header-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 2.6rem;
  background: var(--cor-secundaria) url("./hero-conectadas.png") center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(249, 244, 239, 0.86) 0%, rgba(249, 244, 239, 0.74) 22%, rgba(249, 244, 239, 0.22) 50%, rgba(23, 25, 35, 0.14) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(223, 65, 2, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(17, 22, 31, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 0;
}

.hero-copy {
  max-width: 540px;
  margin-left: clamp(1rem, 3vw, 3.2rem);
  padding: 0.4rem 0 0;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 25, 35, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--cor-primaria-escura);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1.35rem;
  font-size: clamp(2.95rem, 5.8vw, 5.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.09em;
}

.hero h1 span {
  color: var(--cor-primaria);
}

.hero-description {
  max-width: 28rem;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(23, 25, 35, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1.55rem;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 0;
  color: var(--texto-principal);
  font-weight: 700;
  border-bottom: 1px solid rgba(23, 25, 35, 0.16);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 42rem;
  margin-top: 1.7rem;
}

.hero-chip {
  min-height: 100%;
  padding: 0.82rem 0.92rem;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(23, 25, 35, 0.12);
}

.hero-chip strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.hero-chip span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.84rem;
  color: var(--texto-secundario);
  line-height: 1.38;
}

.cursos,
.depoimentos {
  padding: 6.4rem 0;
}

.cursos {
  background: linear-gradient(180deg, #fbf8f4 0%, #ffffff 100%);
}

.section-header {
  max-width: 52rem;
}

.section-title {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--texto-principal);
}

.section-description {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--texto-secundario);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--borda-suave);
  border-radius: 28px;
  box-shadow: var(--sombra-media);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 65, 2, 0.18);
  box-shadow: var(--sombra-forte);
}

.card-badge {
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--cor-primaria-suave);
  color: var(--cor-primaria-escura);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.course-card__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--course-card-start), var(--course-card-end));
  overflow: hidden;
  color: var(--cor-branco);
}

.course-card__media::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -42px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.course-card__media::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(18deg);
}

.course-card__eyebrow,
.course-card__media-copy {
  position: relative;
  z-index: 1;
}

.course-card__eyebrow {
  align-self: flex-start;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.course-card__media-copy {
  max-width: 15ch;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.7rem;
}

.course-card__title {
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.course-card__description {
  color: var(--texto-secundario);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-weight: 700;
  color: var(--cor-primaria);
}

.card-link::after {
  content: "↗";
  transition: transform 0.25s ease;
}

.course-card:hover .card-link::after {
  transform: translate(2px, -2px);
}

.transformacao {
  padding: 2.8rem 0 3.4rem;
}

.transformacao-panel {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border-radius: 36px;
  background: linear-gradient(135deg, #171b24 0%, #283044 48%, #df4102 145%);
  box-shadow: var(--sombra-forte);
}

.transformacao-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, transparent 70%);
}

.transformacao .section-kicker {
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffe0d3;
}

.transformacao-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.transformacao h2 {
  max-width: 12ch;
  color: var(--cor-branco);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.transformacao p {
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.depoimentos {
  padding: 2.8rem 0 6.4rem;
  background:
    radial-gradient(circle at top left, rgba(223, 65, 2, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
}

.depoimentos-panel {
  position: relative;
  overflow: hidden;
  padding: 2.8rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 242, 0.95) 100%);
  border: 1px solid rgba(23, 25, 35, 0.06);
  box-shadow: 0 28px 70px rgba(22, 26, 35, 0.1);
}

.depoimentos-panel::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(223, 65, 2, 0.12) 0%, transparent 72%);
}

.depoimentos-head {
  position: relative;
  z-index: 1;
  display: block;
}

.depoimentos-intro {
  max-width: 46rem;
}

.carousel-control {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(23, 25, 35, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--texto-principal);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 14px 30px rgba(22, 26, 35, 0.1);
}

.carousel-control:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--cor-primaria);
  color: var(--cor-branco);
}

.carousel-control:disabled {
  opacity: 0.45;
  cursor: default;
}

.depoimentos-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.metric-card {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 25, 35, 0.06);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(22, 26, 35, 0.06);
}

.metric-card strong {
  display: block;
  color: var(--cor-primaria);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.metric-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--texto-secundario);
  font-size: 0.9rem;
  line-height: 1.45;
}

.testimonial-carousel-shell {
  position: relative;
  z-index: 1;
  margin-top: 1.9rem;
}

.testimonial-carousel-shell::before,
.testimonial-carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}

.testimonial-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0.96) 0%, rgba(255, 250, 245, 0) 100%);
}

.testimonial-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 245, 0.96) 0%, rgba(255, 250, 245, 0) 100%);
}

.testimonial-carousel {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.35rem 0.15rem 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 2.4rem) / 3);
  flex-direction: column;
  gap: 1.25rem;
  min-height: 310px;
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 25, 35, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(22, 26, 35, 0.1);
  overflow: hidden;
  scroll-snap-align: start;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  color: rgba(223, 65, 2, 0.12);
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
}

.testimonial-card.featured {
  background: linear-gradient(180deg, #fffdfb 0%, #fff0e7 100%);
  border-color: rgba(223, 65, 2, 0.16);
}

.testimonial-header,
.testimonial-footer {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-stars {
  color: #ffb138;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.testimonial-tag {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(223, 65, 2, 0.1);
  color: var(--cor-primaria-escura);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.quote {
  position: relative;
  z-index: 1;
  color: var(--texto-principal);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-primaria), #ff8d5a);
  color: var(--cor-branco);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(223, 65, 2, 0.24);
}

.testimonial-footer strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.testimonial-footer span {
  display: block;
  margin-top: 0.15rem;
  color: var(--texto-secundario);
  font-size: 0.9rem;
}

.testimonial-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.testimonial-navigation {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(23, 25, 35, 0.16);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.testimonial-dot.active {
  background: var(--cor-primaria);
  transform: scale(1.18);
}

.site-footer {
  background: #121722;
  color: var(--cor-branco);
  padding: 4rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-about h3,
.footer-links h4,
.footer-social h4 {
  margin-bottom: 0.9rem;
}

.footer-about p,
.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links ul,
.footer-social ul {
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a,
.footer-social a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--cor-branco);
  opacity: 1;
}

.footer-icons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.footer-icons a {
  font-size: 1.35rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.curso-detalhe {
  padding: 4rem 0;
}

.curso-detalhe h1 {
  margin-bottom: 1rem;
  color: var(--cor-secundaria);
  font-size: 2.5rem;
  font-weight: 800;
}

.curso-detalhe p {
  margin-bottom: 2rem;
  color: var(--texto-secundario);
  font-size: 1.1rem;
  line-height: 1.6;
}

.curso-detalhe ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

@media (max-width: 1080px) {
  .transformacao-grid {
    grid-template-columns: 1fr;
  }

  .transformacao h2 {
    max-width: none;
  }

  .testimonial-card {
    flex-basis: calc((100% - 1.2rem) / 2);
  }
}

@media (max-width: 900px) {
  .header-menu-shell,
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .header-shell {
    padding: 0.88rem 1rem;
  }

  .page-home .header-shell {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.68) 100%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(22, 26, 35, 0.09);
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 2.6rem;
    background-position: 64% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(249, 244, 239, 0.94) 0%, rgba(249, 244, 239, 0.88) 30%, rgba(249, 244, 239, 0.46) 65%, rgba(23, 25, 35, 0.2) 100%);
  }

  .hero-copy {
    max-width: none;
    margin-left: 0;
  }

  .hero-highlights,
  .depoimentos-metrics,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: min(78vw, 340px);
  }

  .testimonial-carousel-shell::before,
  .testimonial-carousel-shell::after {
    width: 40px;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .container {
    width: min(92%, 100% - 1.5rem);
  }

  .header-shell {
    gap: 0.85rem;
    padding: 0.82rem 0.92rem;
  }

  .page-home .header-shell {
    margin-top: 0;
  }

  .mobile-nav {
    top: 78px;
    left: 0.75rem;
    right: 0.75rem;
  }

  .hero {
    padding: 6.4rem 0 2.2rem;
    background-position: 70% center;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.35rem);
  }

  .hero-kicker,
  .section-kicker {
    font-size: 0.72rem;
  }

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

  .hero-link {
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(23, 25, 35, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
  }

  .cursos,
  .depoimentos {
    padding: 5rem 0;
  }

  .depoimentos {
    padding: 2.75rem 0 5rem;
  }

  .transformacao {
    padding: 2rem 0 2.75rem;
  }

  .transformacao-panel {
    padding: 2rem 1.45rem;
    border-radius: 28px;
  }

  .depoimentos-panel {
    padding: 2rem 1.25rem;
    border-radius: 28px;
  }

  .carousel-control {
    width: 46px;
    height: 46px;
  }

  .testimonial-navigation {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .testimonial-carousel-shell::before,
  .testimonial-carousel-shell::after {
    display: none;
  }

  .testimonial-card {
    flex-basis: calc(100% - 0.4rem);
    min-height: 0;
  }

  .card,
  .testimonial-card,
  .metric-card {
    border-radius: 24px;
  }
}
