:root {
  --rose: #956f82;
  --gold: #f2cb57;
  --gold-dark: #c99a22;
  --ink: #111111;
  --muted: #6d6670;
  --line: #eadfdd;
  --soft: #fbf7f5;
  --white: #ffffff;
  --blue-dark: #12182a;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
}

section[id] {
  scroll-margin-top: 104px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav,
.hero-copy,
.about-copy-card,
.project-card,
.study-cycle,
.curriculum-card,
.contact-card,
.review-card {
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 12px 0;
  background: transparent;
}

.nav {
  width: min(1140px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px 30px 15px 12px;
  border: 1px solid rgba(149, 111, 130, 0.14);
  border-radius: 100px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #fff5cd);
  border: 2px solid var(--rose);
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #ffeaa0);
  box-shadow: 0 10px 24px rgba(201, 154, 34, 0.22);
}

.nav-links .nav-contact:hover {
  color: var(--ink);
}

.header-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.header-socials a,
.social-links a {
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-socials a {
  width: 30px;
  height: 30px;
  color: var(--rose);
  background: rgba(149, 111, 130, 0.09);
}

.header-socials a:hover {
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

.header-socials img,
.social-links img {
  width: 16px;
  height: 16px;
  display: block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 128px 0 52px;
  background: url("assets/img/hero_adriana.webp") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rose);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  gap: 7px;
}

.eyebrow-separator {
  opacity: 0.45;
}

.country-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.country-label img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.section-kicker {
  display: inline-flex;
  color: var(--rose);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 28px;
  color: var(--rose);
  font-size: clamp(1.5rem, 2.65vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
}

h1 span {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.11em;
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  font-weight: 600;
  line-height: 1.62;
}


.hero-text {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.btn-hero-primary {
  min-width: 270px;
  min-height: 62px;
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(135deg, #f9df78 0%, #f2cb57 48%, #d9a72e 100%);
  box-shadow: 0 18px 34px rgba(217, 167, 46, 0.28);
}

.btn-hero-primary::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 14px;
  background: url("assets/icons/arrow.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 1;
}

.btn-hero-secondary {
  min-width: 150px;
  min-height: 62px;
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(242, 203, 87, 0.24));
  border: 1px solid rgba(149, 111, 130, 0.36);
  backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 203, 87, 0.34));
}

.btn-secondary {
  color: var(--rose);
  background: var(--white);
  border: 1px solid rgba(149, 111, 130, 0.26);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 620px;
  margin-top: 24px;
}

.trust-row div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-row div::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: url("assets/icons/check.svg") center / contain no-repeat;
}
.intro-strip {
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}

.strip-track {
  min-height: 56px;
  display: flex;
  align-items: center;
}

.strip-line {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: max-content;
  transform: translate3d(var(--strip-offset, 0px), 0, 0);
  will-change: transform;
}

.strip-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  white-space: nowrap;
  color: var(--white);
  font-weight: 700;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
}

.strip-line span::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: url("assets/icons/check.svg") center / contain no-repeat;
}

.section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.section h2 {
  margin-top: 16px;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.copy-block p,
.section-heading p,
.audience-grid p,
.project-card p,
.contact-copy p,
.footer p,
.map-info p {
  color: var(--muted);
  line-height: 1.75;
}

.copy-block p:first-child {
  margin-top: 0;
}
.about {
  background: linear-gradient(180deg, var(--white), #fffaf7);
  overflow: hidden;
}

.about-layout {
  --about-block-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 560px);
  align-items: start;
  justify-content: center;
  gap: 56px;
}

.about-copy-card {
  width: 100%;
  align-self: start;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
}

.about-title {
  margin-top: 0;
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.75vw, 2.85rem);
  line-height: 0.98;
}

.about-title span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.about-copy-card h3 {
  max-width: 520px;
  margin-top: 24px;
  color: var(--rose);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy-card .copy-block {
  width: 100%;
  max-width: 560px;
  margin-top: 18px;
}

.about-copy-card .copy-block p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.about-copy-card .copy-block p:last-child {
  margin-bottom: 0;
}
.btn-about-agenda {
  width: fit-content;
  min-width: 220px;
  min-height: 58px;
  margin-top: 28px;
  align-self: center;
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(135deg, #f9df78 0%, #f2cb57 48%, #d9a72e 100%);
  box-shadow: 0 18px 34px rgba(217, 167, 46, 0.24);
}

.btn-about-agenda::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 14px;
  background: url("assets/icons/arrow.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 1;
}

.about-media-grid {
  position: relative;
  align-self: start;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 18px;
  width: 100%;
  min-height: var(--about-block-height);
  height: auto;
}

.about-media-grid::before {
  display: none;
}

.about-photo {
  position: relative;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  margin: 0 !important;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.12);
}

.about-photo-main {
  align-self: stretch;
  height: 100%;
}

.about-photo-side {
  align-self: stretch;
  height: 100%;
  margin-top: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-main img {
  object-position: center top;
}

.about-photo-side img {
  object-position: center;
}

.audience,
.contact {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 720px;
  font-size: 1.04rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-grid article,
.project-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.audience-grid article {
  min-height: 250px;
  padding: 26px;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 800;
}

.audience-grid h3,
.project-card h3,
.map-info h3 {
  margin-top: 22px;
  font-size: 1.35rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: benefit-card;
}

.benefit-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(201, 154, 34, 0.16);
  counter-increment: benefit-card;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item::before {
  content: counter(benefit-card, decimal-leading-zero);
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 38px;
  margin-bottom: 7px;
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 8px 18px rgba(149, 111, 130, 0.22);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.benefit-item h3 {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.25;
  text-shadow: 0 1px 1px rgba(17, 17, 17, 0.12);
}

.benefit-item p {
  margin: 0;
  color: #625b5e;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.benefit-item:hover {
  border-color: var(--rose);
  box-shadow: 0 22px 42px rgba(201, 154, 34, 0.24);
}


.science-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  background-image:
    linear-gradient(120deg, rgba(149, 111, 130, 0.96), rgba(17, 17, 17, 0.88));
  background-size: cover;
  background-position: center;
}

.science-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(242, 203, 87, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(149, 111, 130, 0.16));
  pointer-events: none;
}

.science-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.science-cta-kicker {
  color: var(--gold);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.science-cta h2 {
  max-width: 760px;
  margin-top: 22px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.science-cta h2 span {
  color: var(--gold);
}

.science-cta p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.45;
}

.science-cta-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.science-cta-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(242, 203, 87, 0.42);
  border-radius: 999px;
  background: rgba(149, 111, 130, 0.34);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.science-cta-pills span::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("assets/icons/check.svg") center / contain no-repeat;
}

.science-cta-button {
  min-width: 250px;
  min-height: 58px;
  margin-top: 38px;
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(135deg, #f9df78 0%, #f2cb57 48%, #d9a72e 100%);
  box-shadow: 0 18px 34px rgba(217, 167, 46, 0.28);
}

.science-cta-button::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 14px;
  background: url("assets/icons/arrow.svg") center / contain no-repeat;
}

.science-cta small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.projects {
  background:
    linear-gradient(180deg, var(--white), #fffaf0);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  padding: 26px;
}

.project-card.featured {
  grid-column: span 3;
  display: block;
  background: var(--blue-dark);
  color: var(--white);
}

.project-card span {
  display: block;
  color: var(--gold-dark);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured span {
  color: var(--gold);
}

.project-card p {
  margin-bottom: 0;
}

.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.featured a {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.study-cycle {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  margin-top: 34px;
  padding: 42px;
  border: 1px solid rgba(149, 111, 130, 0.18);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.08);
}

.study-cycle h2 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
}

.study-cycle p {
  color: var(--muted);
  line-height: 1.72;
}

.study-cycle-details {
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
}

.study-cycle-details h3 {
  color: var(--gold);
  font-size: 1.35rem;
}

.study-cycle-details ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.study-cycle-details li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.study-cycle-details li::before {
  content: "";
  position: absolute;
  top: 0.26em;
  left: 0;
  width: 15px;
  height: 15px;
  background: url("assets/icons/check.svg") center / contain no-repeat;
}

.curriculum {
  background: var(--white);
}

.curriculum-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px;
  border: 1px solid rgba(201, 154, 34, 0.34);
  border-radius: 10px;
  background: linear-gradient(135deg, #fffdf6, rgba(242, 203, 87, 0.15));
}

.curriculum-card h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.curriculum-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.curriculum-card .btn {
  flex: 0 0 auto;
}

.reviews {
  overflow: hidden;
  background: var(--gold-dark);
}

.reviews-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 44px;
}

.reviews-head .section-kicker {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.reviews-head h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  line-height: 1.04;
}

.review-stage {
  position: relative;
  overflow: hidden;
  padding: 0 72px;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(149, 111, 130, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--rose);
  box-shadow: none;
  cursor: pointer;
  font-size: 2.15rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--rose);
  color: var(--white);
}

.review-stage > .carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.review-stage > .carousel-btn:hover {
  transform: translateY(-50%);
}

.carousel-btn-prev {
  left: 12px;
}

.carousel-btn-next {
  right: 12px;
}

.reviews-carousel {
  --review-gap: 22px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--review-gap) * 2)) / 3);
  gap: var(--review-gap);
  overflow-x: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0;
  cursor: grab;
  scrollbar-width: none;
}

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

.reviews-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.review-card {
  height: 318px;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 25px 26px;
  border: 1px solid rgba(149, 111, 130, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  user-select: none;
}

.review-card::after {
  display: none;
}

.stars {
  margin: 0;
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 0.07em;
}

.review-quote,
.review-card p {
  margin: 20px 0 22px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(0.84rem, 0.9vw, 0.93rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-person img,
.review-avatar {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(149, 111, 130, 0.24);
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person strong {
  color: var(--rose);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.1;
}

.review-person small {
  margin-top: 4px;
  color: rgba(17, 17, 17, 0.56);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.google-mark,
.review-top {
  display: none;
}

.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition: background 0.2s ease;
}

.review-dots span.is-active {
  width: 10px;
  background: var(--white);
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(149, 111, 130, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 26px 66px rgba(17, 17, 17, 0.12);
}

.contact-panel {
  padding: 38px 42px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.contact-kicker {
  display: inline-flex;
  color: var(--rose);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section .contact-panel h2,
.section .contact-form-panel h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.08;
}

.contact-panel > p {
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.55;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--rose);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-row h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
}

.contact-info-row p,
.contact-info-row a,
.contact-info-row strong,
.contact-info-row small {
  display: block;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.86rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-info-row a {
  width: fit-content;
}

.contact-info-row a:hover {
  color: var(--rose);
}

.contact-info-row strong {
  color: var(--blue-dark);
  font-size: 0.8rem;
}

.contact-info-row small {
  margin-top: 3px;
  color: rgba(17, 17, 17, 0.64);
}

.contact-form-panel {
  padding: 38px 42px;
  background: var(--white);
}

.contact-form-panel > p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section .contact-form-panel h2 {
  color: var(--rose);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  min-height: 46px;
  border-radius: 8px;
  background: #fcfaf9;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form label:nth-of-type(3),
.lead-form label:nth-of-type(4),
.contact-submit {
  grid-column: 1 / -1;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(149, 111, 130, 0.12);
}

.contact-submit {
  width: fit-content;
  min-width: 230px;
  min-height: 52px;
  justify-self: start;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 26px rgba(18, 140, 126, 0.24);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.3);
}

.social-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(242, 203, 87, 0.25);
  color: var(--white);
  background: var(--blue-dark);
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.social-inner .section-kicker {
  color: var(--gold);
}

.social-inner p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 203, 87, 0.45);
  color: var(--gold);
}

.social-links a:hover {
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

.social-links img {
  width: 18px;
  height: 18px;
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-main {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer strong,
.footer span {
  display: block;
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer span {
  color: rgba(255, 255, 255, 0.76);
  text-align: right;
}

.footer-brand {
  max-width: 420px;
}

.footer-owner {
  max-width: 340px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.76rem;
  text-align: right;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(242, 203, 87, 0.34);
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(149, 111, 130, 0.98), rgba(17, 17, 17, 0.96));
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.24);
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.98rem;
}

.cookie-banner p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-btn {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 900;
}

.cookie-btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f9df78 0%, var(--gold) 52%, var(--gold-dark) 100%);
}

.cookie-btn-muted {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.22);
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 900;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.reveal-from-left {
  transform: translate3d(-38px, 0, 0);
}

.reveal-item.reveal-from-right {
  transform: translate3d(38px, 0, 0);
}

.reveal-item.reveal-scale {
  transform: translate3d(0, 20px, 0) scale(0.975);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.benefit-item.reveal-item {
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.benefit-item.reveal-item.is-visible:hover {
  transform: translate3d(0, -6px, 0) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.reveal-from-left,
  .reveal-item.reveal-from-right,
  .reveal-item.reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .benefit-item.reveal-item.is-visible:hover {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .section-shell,
  .nav {
    width: min(100% - 32px, 1160px);
  }

  .nav-links {
    gap: 16px;
    font-size: 0.8rem;
  }

  .header-socials {
    gap: 5px;
  }

  .header-socials a {
    width: 28px;
    height: 28px;
  }

  .hero {
    min-height: 900px;
    min-height: clamp(820px, 100svh, 1040px);
    padding: 96px 0 48px;
    background-image: url("assets/img/hero_adriana_tablet.webp");
    background-position: center bottom;
  }

  .hero-grid {
    min-height: auto;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-layout {
    --about-block-height: 500px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .about-media-grid {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    order: 1;
  }

  .about-copy-card {
    max-width: 780px;
    min-height: auto;
    margin: 0 auto;
    order: 2;
    text-align: left;
    align-items: flex-start;
  }

  .about-copy-card .copy-block,
  .about-copy-card h3,
  .about-title {
    max-width: 760px;
  }

  .btn-about-agenda {
    align-self: center;
  }

  .audience-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid,
  .pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card.featured {
    grid-column: span 2;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .study-cycle {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 0;
  }

  .nav {
    min-height: 64px;
    padding: 10px 12px;
    grid-template-columns: auto 1fr auto;
    position: relative;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
    justify-items: stretch;
  }

  .header-socials {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 8px;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .nav-contact {
    width: 100%;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
    border-radius: 100px;
  }

  .hero {
    min-height: 860px;
    min-height: clamp(800px, 100svh, 960px);
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(1.45rem, 4.3vw, 2.35rem);
  }

  .hero-lead {
    max-width: 620px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    font-size: clamp(1.9rem, 5vw, 3.1rem);
  }

  .science-cta {
    padding: 72px 0;
  }

  .science-cta h2 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .review-stage {
    padding: 0 58px;
  }

  .reviews-carousel {
    grid-auto-columns: calc((100% - var(--review-gap)) / 2);
  }

  .review-card {
    height: 330px;
    min-height: 330px;
  }

  .carousel-btn-prev {
    left: 4px;
  }

  .carousel-btn-next {
    right: 4px;
  }

  .footer-main,
  .footer-bottom {
    gap: 20px;
  }

  .footer-brand,
  .footer-owner {
    max-width: none;
  }

  .footer-credit {
    max-width: 320px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-grid article:last-child {
    grid-column: 1 / -1;
  }

  .contact-panel,
  .contact-form-panel {
    padding: 34px;
  }

  .curriculum-card,
  .social-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .curriculum-card .btn,
  .social-inner,
  .footer-main,
  .footer-bottom {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .nav {
    width: min(100% - 28px, 1160px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .header-socials a {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 760px;
    min-height: clamp(720px, 100svh, 860px);
    padding: 84px 0 34px;
    background-image: url("assets/img/hero_adriana_mobile.webp");
    background-position: center 72%;
  }

  .hero-grid {
    padding-top: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    min-height: 0;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(1.35rem, 8vw, 2rem);
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 16px;
    max-width: 320px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .btn,
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .trust-row {
    gap: 9px;
    margin-top: 16px;
  }

  .trust-row div {
    font-size: 0.74rem;
    white-space: normal;
  }

  .strip-track {
    min-height: 46px;
  }

  .strip-line {
    gap: 18px;
  }

  .strip-line span {
    font-size: 0.78rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section h2,
  .section-heading h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .about-layout {
    --about-block-height: auto;
    gap: 28px;
  }

  .about-media-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: 10px;
    height: auto;
    aspect-ratio: 1 / 0.82;
  }

  .about-media-grid::before {
    display: none;
  }

  .about-title {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .about-copy-card,
  .about-copy-card .copy-block,
  .about-copy-card h3,
  .about-title {
    max-width: 100%;
  }

  .about-copy-card h3 {
    font-size: 0.84rem;
  }

  .about-copy-card .copy-block p,
  .section-heading p,
  .audience-grid p,
  .project-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .audience-grid,
  .project-grid,
  .benefit-grid,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid article:last-child {
    grid-column: auto;
  }

  .audience-grid article {
    min-height: auto;
    padding: 22px;
  }

  .benefit-item {
    min-height: 190px;
    padding: 20px;
  }

  .project-card {
    padding: 22px;
  }

  .contact-panel,
  .contact-form-panel {
    padding: 30px 24px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .lead-form label,
  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-width: 0;
  }

  .lead-form label,
  .contact-submit {
    grid-column: 1;
  }

  .contact-submit {
    width: 100%;
  }

  .study-cycle,
  .curriculum-card {
    padding: 24px;
  }

  .study-cycle-details {
    padding: 22px;
  }

  .curriculum-card .btn {
    width: 100%;
  }

  .project-card.featured {
    grid-column: auto;
  }

  .science-cta {
    padding: 58px 0;
  }

  .science-cta h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .science-cta p {
    font-size: 0.98rem;
  }

  .science-cta-pills {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .science-cta-pills span {
    justify-content: center;
  }

  .science-cta-button,
  .btn-about-agenda {
    width: 100%;
    max-width: 360px;
  }

  .reviews-head {
    margin-bottom: 28px;
  }

  .review-stage {
    padding: 0;
  }

  .review-stage > .carousel-btn {
    display: none;
  }

  .reviews-carousel {
    --review-gap: 14px;
    grid-auto-columns: 100%;
    overflow-x: auto;
  }

  .review-card {
    height: auto;
    min-height: 292px;
    padding: 22px;
  }

  .review-quote,
  .review-card p {
    font-size: 0.9rem;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    justify-content: stretch;
    gap: 16px;
    width: 100%;
  }

  .footer-main {
    padding-bottom: 18px;
  }

  .footer span,
  .footer-credit {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 10px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 14px;
    padding: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn {
    padding: 10px 12px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 780px;
    min-height: clamp(740px, 100svh, 860px);
    background-position: center 74%;
  }

  h1 {
    font-size: 1.32rem;
  }

  .hero-lead {
    font-size: 0.82rem;
  }

  .about-media-grid {
    height: 300px;
  }

  .lead-form {
    padding: 0;
  }
}

@media (max-width: 360px) {
  .brand span {
    display: none;
  }

  .header-socials {
    gap: 3px;
  }

  .header-socials a {
    width: 30px;
    height: 30px;
  }

  .contact-panel,
  .contact-form-panel,
  .study-cycle,
  .curriculum-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    min-height: 720px;
    background-position: center bottom;
  }
}

.reviews .carousel-btn,
.reviews .review-card,
.reviews .review-person img,
.reviews .review-avatar {
  box-shadow: none;
  filter: none;
}
