:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-alt: #eef4ff;
  --surface-dark: #061b44;
  --surface-strong: #0d275f;
  --text: #08152f;
  --muted: #4c628f;
  --line: rgba(22, 63, 140, 0.12);
  --accent: #224ea3;
  --accent-deep: #15387b;
  --accent-soft: #dfeaff;
  --success: #14a44d;
  --shadow: 0 16px 45px rgba(8, 21, 47, 0.08);
  --shadow-strong: 0 25px 60px rgba(8, 21, 47, 0.18);
  --radius: 28px;
  --radius-sm: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 78, 163, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(6, 27, 68, 0.06), transparent 18%),
    var(--bg);
}

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

.img-logo {
  display: block;
  max-width: 35%;
}

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.98)),
    var(--surface-alt);
}

.section-accent {
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 78, 163, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(223, 234, 255, 0.82), rgba(255, 255, 255, 0.88));
  pointer-events: none;
}

.section-accent > * {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(22, 63, 140, 0.08);
  color: var(--text);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand {
  width: clamp(150px, 16vw, 205px);
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 14px 18px;
  border-radius: 999px;
  font-family: "Raleway", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
  background: rgba(34, 78, 163, 0.08);
  transform: translateY(-1px);
}

.nav-cta {
  color: #ffffff;
  background: var(--surface-dark);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #ffffff;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--surface-dark);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 16px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

.mobile-menu.is-open {
  display: grid;
}

.hero {
  padding-top: 58px;
}

.hero-grid,
.split-section,
.diploma-grid,
.validation-panel,
.faq-layout,
.footer-grid {
  display: grid;
  gap: 34px;
}

.hero-grid,
.split-section,
.diploma-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
}

.hero-copy,
.split-copy,
.diploma-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Raleway", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h2 span,
.section-heading span {
  color: var(--accent);
}

h1 span,
.section-heading span {
  color: var(--accent);
}

h3 {
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  font-weight: 700;
}

p,
li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.lead {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: 1.18rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 28px;
  border: 0;
  border-radius: 12px;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(8, 21, 47, 0.14);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button-secondary {
  color: #ffffff;
  background: var(--surface-dark);
}

.button-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #19b85b, #0f8d43);
}

.button-light {
  color: var(--surface-dark);
  background: #ffffff;
}

.button-block {
  width: 100%;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.trust-note span:last-child {
  font-weight: 600;
  color: var(--text);
}

.trust-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #7bde8d);
  box-shadow: 0 0 0 6px rgba(20, 164, 77, 0.12);
}

.media-card,
.testimonial-card,
.plan-card,
.feature-card,
.faq-item,
.validation-panel {
  box-shadow: var(--shadow);
}

.media-card {
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(34, 78, 163, 0.14), rgba(6, 27, 68, 0.04)),
    #ffffff;
}

.video-shell iframe,
.video-shell img,
.testimonial-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-media-image {
  object-fit: cover;
  object-position: center bottom;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 16px 0 0;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 234, 255, 0.72));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-icon {
  order: -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 78, 163, 0.16), rgba(34, 78, 163, 0.06));
  color: var(--accent);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.feature-card p {
  margin: 14px 0 0;
}

.validation-panel {
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 300px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 78, 163, 0.18), transparent 40%),
    linear-gradient(135deg, #ffffff, #eef4ff);
}

.validation-copy p {
  margin: 18px 0 0;
}

.validation-copy .button {
  margin-top: 22px;
}

.validation-visual {
  display: flex;
  justify-content: center;
}

.validation-visual img {
  width: min(100%, 240px);
  animation: bob 5s ease-in-out infinite;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  font-size: 1rem;
  line-height: 1;
}

.split-note {
  margin-top: 22px;
}

.diploma-visual {
  display: flex;
  justify-content: center;
}

.diploma-visual img {
  width: min(100%, 500px);
  filter: drop-shadow(0 22px 38px rgba(17, 17, 17, 0.12));
  animation: bob 5.5s ease-in-out infinite;
}

.plans-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 255, 0.98));
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 28px 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #edf4ff);
  overflow: hidden;
  text-align: center;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(34, 78, 163, 0.14), transparent 28%);
  pointer-events: none;
}

.plan-card > * {
  position: relative;
}

.plan-card-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(103, 153, 255, 0.18), transparent 24%),
    linear-gradient(160deg, #061b44, #0f2f72);
}

.plan-card-dark h3,
.plan-card-dark .plan-kicker,
.plan-card-dark .plan-subcopy,
.plan-card-dark .plan-installment,
.plan-card-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.plan-card-featured {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 24px 48px rgba(13, 62, 153, 0.34);
  border-color: rgba(34, 78, 163, 0.48);
}

.plan-logo {
  width: 78px;
  margin-bottom: 20px;
}

.plan-kicker {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Raleway", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 800;
}

.plan-pill {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 2px solid rgba(17, 17, 17, 0.8);
  border-radius: 18px;
  background: #3d6fc5;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
}

.plan-pill-accent-red {
  background: #1f57c0;
}

.plan-pill-accent {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(246, 240, 248, 0.12);
  border-color: #7fb0ff;
  border-radius: 18px;
  color: #7fb0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.plan-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  gap: 2px;
  margin-bottom: 22px;
}

.plan-subcopy {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-price {
  margin: 4px 0 0;
  color: #3464b9;
  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.plan-price-accent {
  color: #8fc0ff;
}

.plan-old-price {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: line-through;
}

.plan-installment {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.plan-info-button {
  min-height: 0;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #3d6fc5;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.1;
}

.plan-info-button:hover,
.plan-info-button:focus-visible {
  background: #2e5daf;
  color: #ffffff;
}

.plan-info-button-accent {
  background: #1f57c0;
}

.plan-info-button-accent:hover,
.plan-info-button-accent:focus-visible {
  background: #18479f;
}

.plan-cta {
  margin-top: 0;
  color: #ffffff;
  background: #0b2c6d;
}

.plan-cta:hover,
.plan-cta:focus-visible {
  color: #ffffff;
  background: #133985;
}

.form-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 78, 163, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.95));
}

.lead-form-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.lead-form-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.lead-form-team {
  width: min(100%, 420px);
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lead-form-team h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: left;
}

.lead-form-team img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.lead-form-team figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.lead-form-card {
  padding: 30px;
  border: 2px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, #ffffff, #edf4ff);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(22, 63, 140, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(22, 63, 140, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 78, 163, 0.14);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-helper {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: -6px;
  border: 1px solid rgba(22, 63, 140, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.form-whatsapp-link:hover,
.form-whatsapp-link:focus-visible {
  border-color: rgba(22, 63, 140, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.form-submit-frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.form-feedback.is-success {
  color: #0f8d43;
}

.form-feedback.is-error {
  color: #c22828;
}

.testimonials-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 78, 163, 0.1), transparent 24%),
    #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  overflow: hidden;
  min-height: 640px;
  border-radius: 28px;
  background: #081a43;
}

.centered-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.faq-layout {
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-copy p:last-child {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(22, 63, 140, 0.12);
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--surface-dark);
  font-size: 1.4rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item.is-open .faq-trigger::after {
  transform: rotate(45deg);
  background: var(--accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 24px 18px;
}

.faq-content p:first-child {
  padding-top: 0;
}

.site-footer {
  position: relative;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.96));
}

.footer-grid {
  grid-template-columns: 0.8fr 1fr 1.1fr;
  align-items: start;
  padding: 62px 0 34px;
}

.footer-brand img {
  width: min(30%, 230px);
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.18rem;
}

.footer-block + .footer-block {
  margin-top: 18px;
}

.footer-block h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  line-height: 1.9;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(22, 63, 140, 0.12);
}

.footer-bottom p {
  margin: 0;
  padding: 18px 0 26px;
  color: var(--muted);
  text-align: center;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  padding: 18px 18px 20px;
  border: 1px solid rgba(133, 165, 228, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(4, 15, 41, 0.98), rgba(9, 27, 67, 0.98)),
    linear-gradient(135deg, rgba(34, 78, 163, 0.16), rgba(124, 170, 255, 0.08));
  box-shadow: 0 20px 48px rgba(4, 15, 41, 0.34);
  backdrop-filter: blur(14px);
  color: #ffffff;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(130, 166, 236, 0.24);
  border-radius: 999px;
  color: #a9c1f8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 1.08;
  font-weight: 800;
}

.cookie-consent__text {
  margin: 0 0 22px;
  color: rgba(235, 242, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.65;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cookie-consent__decline {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(222, 232, 255, 0.78);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s ease;
}

.cookie-consent__decline:hover,
.cookie-consent__decline:focus-visible {
  color: #ffffff;
}

.cookie-consent__button {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(129, 167, 238, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, #224ea3, #3e73d1);
  box-shadow: 0 10px 24px rgba(34, 78, 163, 0.3);
  white-space: nowrap;
}

.cookie-consent__link {
  color: rgba(222, 232, 255, 0.82);
  font-size: 0.95rem;
  text-decoration: none;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 79;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fbe5b, #0f8d43);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 141, 67, 0.34);
  appearance: none;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(15, 141, 67, 0.42);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.cookie-consent:not([hidden]) + .floating-whatsapp {
  bottom: 230px;
}

.whatsapp-modal[hidden] {
  display: none;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.whatsapp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 41, 0.62);
  backdrop-filter: blur(8px);
}

.whatsapp-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid rgba(22, 63, 140, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 255, 0.96));
  box-shadow: 0 24px 60px rgba(8, 21, 47, 0.24);
}

.whatsapp-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 78, 163, 0.08);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-modal__title {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.whatsapp-modal__text {
  margin: 12px 0 0;
}

.whatsapp-modal__form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .cookie-consent {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }

  .cookie-consent__title {
    font-size: 1.6rem;
  }

  .cookie-consent__actions {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .cookie-consent__button {
    width: 100%;
    justify-content: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .cookie-consent:not([hidden]) + .floating-whatsapp {
    bottom: 290px;
  }

  .whatsapp-modal {
    padding: 16px;
  }

  .whatsapp-modal__dialog {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .split-section,
  .diploma-grid,
  .lead-form-shell,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .validation-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .validation-copy .eyebrow,
  .section-heading-center .eyebrow {
    justify-content: center;
  }

  .features-grid,
  .plans-grid,
  .form-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-card-featured {
    transform: none;
  }

  .faq-copy {
    position: static;
  }

  .footer-grid {
    gap: 24px;
  }

  .lead-form-team {
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 42px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .hero {
    padding-top: 34px;
  }

  .features-grid,
  .plans-grid,
  .form-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .media-card,
  .plan-card,
  .feature-card,
  .lead-form-card,
  .validation-panel,
  .testimonial-card,
  .faq-item {
    border-radius: 22px;
  }

  .feature-card,
  .plan-card {
    padding: 24px;
  }

  .button,
  .button-block {
    width: 100%;
  }

  .testimonial-card {
    min-height: 540px;
  }

  .faq-trigger {
    padding: 18px 18px 18px 20px;
    font-size: 0.98rem;
  }

  .faq-content p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.legal-page {
  background:
    radial-gradient(circle at top left, rgba(34, 78, 163, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f8ff, #edf4ff);
}

.legal-section {
  min-height: calc(100vh - 92px);
}

.legal-shell {
  max-width: 960px;
  margin: 0 auto;
}

.legal-card {
  padding: 34px;
  border: 1px solid rgba(22, 63, 140, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 255, 0.9));
  box-shadow: var(--shadow);
}

.legal-block + .legal-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(22, 63, 140, 0.1);
}

.legal-block h2 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.legal-block p {
  margin: 0;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-list li + li {
  margin-top: 8px;
}

@media (max-width: 720px) {
  .legal-card {
    padding: 22px;
    border-radius: 22px;
  }

  .legal-block + .legal-block {
    margin-top: 22px;
    padding-top: 22px;
  }
}
