@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #0d0d0d;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

:root {
  font-size: 16px;
}

body {
  line-height: 1.6;
  background-color: #f4f7fb;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #0d0d0d;
}

h1 {
  font-size: clamp(2.5rem, 2vw + 2rem, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 1.5vw + 1.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 1vw + 1rem, 1.75rem);
}

p {
  font-size: 1.05rem;
  color: rgba(13, 13, 13, 0.85);
}

strong {
  font-weight: 600;
}

.doc-content p {
  margin: 20px 0;
}
.doc-content h1 {
  font-size: 2.4rem;
}
.doc-content h2 {
  font-size: 1.8rem;
}
.doc-content ul {
  list-style: none;
}

.site-body {
  background-color: #f4f7fb;
}

.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #26bbd9;
  color: #0d0d0d;
  padding: 0.5rem 1rem;
  border-radius: 0 0 1rem 1rem;
  z-index: 6;
}
.skip-nav:focus {
  left: 1rem;
}

.o-container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: clamp(3rem, 5vw, 5rem);
  scroll-margin-top: var(--masthead-height, 110px);
}
.section--contrast {
  background-color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(13, 13, 13, 0.05);
}
.section--brand {
  background: linear-gradient(135deg, rgba(31, 69, 122, 0.95), rgba(38, 187, 217, 0.9));
  color: #ffffff;
}
.section--brand p,
.section--brand li,
.section--brand h2,
.section--brand h3 {
  color: #ffffff;
}

.section__header {
  margin-bottom: 2rem;
  text-align: left;
}

.section__title {
  margin-top: 0.4rem;
}

.section__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .section__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.callout {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(120deg, rgba(31, 69, 122, 0.05), rgba(38, 187, 217, 0.1));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .callout {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.callout__cta {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 48rem) {
  .callout__cta {
    justify-content: flex-end;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid rgba(38, 187, 217, 0.6);
  outline-offset: 2px;
}
.btn--primary {
  background: linear-gradient(120deg, #1f457a, #26bbd9);
  color: #ffffff;
}
.btn--ghost {
  border-color: #1f457a;
  color: #1f457a;
  background-color: rgba(31, 69, 122, 0.05);
}
.btn--ghost:hover {
  background-color: rgba(31, 69, 122, 0.15);
}
.btn--outline {
  border-color: #1f457a;
  color: #1f457a;
  background-color: transparent;
}
.btn--outline:hover {
  background-color: rgba(31, 69, 122, 0.07);
}
.btn--cta {
  background: linear-gradient(120deg, #26bbd9, rgb(81.4, 200.6, 224.6), #1f457a);
  color: #ffffff;
  border: none;
  box-shadow: 0 15px 35px rgba(31, 69, 122, 0.3);
  white-space: nowrap;
  text-align: center;
}
.btn--cta:hover {
  box-shadow: 0 20px 40px rgba(31, 69, 122, 0.35);
}

.pill {
  border: 1px solid rgba(13, 13, 13, 0.2);
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
.pill[aria-selected=true] {
  background-color: rgba(38, 187, 217, 0.15);
  border-color: rgba(38, 187, 217, 0.5);
  color: #1f457a;
}
.pill:focus-visible {
  outline: 3px solid rgba(38, 187, 217, 0.6);
  outline-offset: 2px;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
  backdrop-filter: blur(18px);
  padding-block: 1.2rem;
  border-bottom: 1px solid rgba(13, 13, 13, 0.05);
}
.masthead__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.masthead__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand__link {
  display: block;
  height: 100%;
}

.brand__logo {
  width: auto;
  height: auto;
}

.brand__name {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.15rem;
  color: #1f457a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  line-height: 1.1;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto auto;
  transform: translateY(-120%);
  background-color: rgba(255, 255, 255, 0.98);
  padding: 4rem 2rem 2rem;
  text-align: right;
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(13, 13, 13, 0.15);
  z-index: 4;
}
.site-nav[data-open=true] {
  transform: translateY(0);
}
@media (min-width: 48rem) {
  .site-nav {
    position: static;
    transform: none !important;
    padding: 0;
    box-shadow: none;
    text-align: left;
    background: transparent;
  }
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 48rem) {
  .site-nav__list {
    margin-top: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }
}

.site-nav__item a {
  text-decoration: none;
  font-weight: 500;
  color: #0d0d0d;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  position: relative;
}
.site-nav__item a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, #26bbd9, #1f457a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav__item a:hover:after, .site-nav__item a:focus-visible:after {
  transform: scaleX(1);
}

.site-nav__cta {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #a7a7a7;
}
.site-nav__cta a {
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 48rem) {
  .site-nav__cta {
    margin-top: 0;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(13, 13, 13, 0.1);
  }
}

.site-nav__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(31, 69, 122, 0.08);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0d0d0d;
}
@media (min-width: 48rem) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: rgba(13, 13, 13, 0.9);
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .site-nav__close {
    display: none;
  }
}

.nav-toggle-stack {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 48rem) {
  .nav-toggle-stack {
    display: none;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 48rem) {
  .nav-overlay {
    display: none;
  }
}

.cv-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(13, 13, 13, 0.08);
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.cv-card__trainer {
  text-align: center;
}
.cv-card__trainer img {
  display: inline;
  height: 220px;
}
@media (min-width: 48rem) {
  .cv-card__trainer img {
    height: 90%;
  }
}
@media (min-width: 48rem) {
  .cv-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }
}

.cv-card__profile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 48rem) {
  .cv-card__profile {
    flex-direction: row;
    align-items: center;
  }
}

.cv-card__box-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-card__avatar, .hero__avatar {
  width: 170px;
  height: 170px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 4px solid rgba(38, 187, 217, 0.5);
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(13, 13, 13, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.cv-card__bio {
  text-align: center;
}
@media (min-width: 48rem) {
  .cv-card__bio {
    text-align: left;
  }
}
.cv-card__bio h3 {
  color: #1f457a;
  margin-bottom: 0.75rem;
}
.cv-card__bio p {
  margin-bottom: 0.35rem;
}

.cv-card__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cv-card__toggles button {
  flex: 1 1 140px;
  text-align: center;
}
@media (min-width: 48rem) {
  .cv-card__toggles {
    justify-content: flex-start;
  }
  .cv-card__toggles button {
    flex: initial;
  }
}

.cv-panel {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(13, 13, 13, 0.05);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cv-panel[hidden] {
  display: none;
}
.cv-panel h3 {
  margin-bottom: 0.75rem;
}
.cv-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: radial-gradient(circle at top right, rgba(38, 187, 217, 0.15), transparent 55%), linear-gradient(180deg, #ffffff, transparent 60%);
  scroll-margin-top: var(--masthead-height, 110px);
}
.hero img {
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  color: #1f457a;
}

.hero__avatar {
  display: inline;
}

.hero__lead {
  font-size: 1.05rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__cta .btn {
  flex: 1 1 220px;
  text-align: center;
}
@media (min-width: 48rem) {
  .hero__cta .btn {
    flex: 0 0 auto;
    min-width: 0;
  }
}

.hero__metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.hero__metric {
  padding: 1rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.08);
}

.hero__metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f457a;
  display: block;
}

.hero__metric-label {
  font-size: 0.95rem;
  color: #a7a7a7;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
}
@media (min-width: 48rem) {
  .hero__panel {
    gap: 2.5rem;
    min-height: 80%;
  }
}

.hero-figure {
  position: relative;
  width: clamp(220px, 30vw, 320px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: translateY(20px);
}

.hero-figure__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 187, 217, 0.4), transparent 70%);
  filter: blur(20px);
}

.hero-figure img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-card {
  width: min(400px, 100%);
  padding: 2rem;
  border-radius: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(145deg, #1f457a, #153057);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.15);
}

.hero-card__kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card__list {
  list-style: none;
  margin-block: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-card__list li {
  font-size: 0.95rem;
}

.hero-card__note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.offer {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .offer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.offer-card {
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(13, 13, 13, 0.08);
}
.offer-card h3 {
  margin-bottom: 1rem;
}
.offer-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  background-color: #ffffff;
  color: #1f457a;
  border: 1px solid rgba(13, 13, 13, 0.05);
  box-shadow: 0 10px 20px rgba(13, 13, 13, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.link-chip:hover, .link-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13, 13, 13, 0.1);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #1f457a;
  text-decoration: none;
}
.link-arrow:after {
  content: "↗";
  font-size: 0.9rem;
}

.contact__grid {
  display: grid;
  gap: 2rem;
}
.contact__grid > * {
  min-width: 0;
}
@media (min-width: 48rem) {
  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

.contact .o-container {
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.contact__details {
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(31, 69, 122, 0.05);
  border: 1px solid rgba(31, 69, 122, 0.08);
  box-shadow: 0 15px 35px rgba(13, 13, 13, 0.05);
}
.contact__details a {
  text-decoration: none;
  color: #1f457a;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2.5vw, 1rem);
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(13, 13, 13, 0.15);
}

.contact-form__label {
  font-weight: 500;
  color: #1f457a;
}
.contact-form__label.error {
  color: #d7263d;
}

.contact-form__field {
  border-radius: 0.75rem;
  border: 1px solid rgba(13, 13, 13, 0.1);
  padding: 0.75rem 1rem;
  background-color: rgba(244, 247, 251, 0.5);
}
.contact-form__field:focus {
  border-color: #26bbd9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(38, 187, 217, 0.2);
}

.contact-form__captcha {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(0.5rem, 2vw, 0.75rem);
  border-radius: 0.75rem;
  border: 1px solid rgba(13, 13, 13, 0.08);
  background-color: rgba(244, 247, 251, 0.35);
  overflow: hidden;
  align-items: flex-start;
}
.contact-form__captcha .g-recaptcha {
  transform-origin: left top;
}
@media (max-width: 26rem) {
  .contact-form__captcha .g-recaptcha {
    transform: scale(0.92);
  }
}
@media (max-width: 22rem) {
  .contact-form__captcha .g-recaptcha {
    transform: scale(0.85);
  }
}

.contact-form__hint {
  font-size: 1rem;
  color: #a7a7a7;
}

.form-rodo {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #666;
  margin-top: 0.5rem;
}

.form-recaptcha {
  margin-top: 0.25rem;
}

.contact-form__success {
  font-weight: 500;
  color: #1f457a;
  min-height: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.contact-form__success.is-visible {
  opacity: 1;
}

.site-footer {
  background-color: #0d0d0d;
  color: rgba(255, 255, 255, 0.8);
  padding-block: 2rem;
  text-align: center;
}
.site-footer a {
  color: #26bbd9;
  text-decoration: none;
}

.site-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .site-footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-footer__details p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #ffffff;
}
.site-footer__details span,
.site-footer__details a {
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 48rem) {
  .site-footer__details {
    align-items: flex-end;
    text-align: right;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  padding: 1.25rem clamp(1rem, 5vw, 1.5rem);
  border-radius: 1rem 1rem 0 0;
  background-color: #0d0d0d;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 45px rgba(13, 13, 13, 0.25);
  z-index: 5;
  max-width: 100%;
}
@media (min-width: 48rem) {
  .cookie-banner {
    bottom: 1.5rem;
    left: auto;
    right: 1.5rem;
    padding: 1.5rem;
    width: min(480px, 100%);
    border-radius: 1rem;
  }
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner p {
  color: rgba(255, 255, 255, 0.85);
}
.cookie-banner .btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  width: 100%;
}
.cookie-banner .btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 48rem) {
  .cookie-banner .btn {
    width: auto;
    align-self: flex-start;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #a7a7a7;
}

.is-visible {
  opacity: 1;
  transform: none;
}

.padding-top {
  padding-top: 20px;
}

/*# sourceMappingURL=main.css.map */
