/* Global Styles */

:root {
  --primary: #f58c79;
  --secondary: #ffb19a;
  --black: #373737;
  --purple: #341565;
  --green: #017074;
  --white: #fff;
}

body {
  font-family: 'Host Grotesk', sans-serif;
  background: #f8f7f5;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin-bottom: 0;
}

h1 {
  color: var(--black);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.09375;
  letter-spacing: 0.12rem;
}
h2 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.15;
}
h3 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.015rem;
}
p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01125rem;
  color: #000;
}
strong {
  font-weight: 800;
}
h2 strong {
  color: var(--primary);
  font-weight: 400;
}
li span,
.learning-method-list-item span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  line-height: normal;
  letter-spacing: 0.01125rem;
}
ul li {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01125rem;
}

.gap-0625 {
  gap: 0.625rem;
}

.section-padding {
  padding: 1.875rem 0;
}

.subtitle-wrapper {
  display: flex;
  padding: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(122, 42, 143, 0.1);
  width: fit-content;
}

.sticky-side {
  position: sticky;
  top: 2rem;
}

.subtitle-wrapper p {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.0675rem;
  text-transform: uppercase;
}
.subtitle-wrapper.primary p {
  color: var(--primary);
}
.gap-125 {
  gap: 1.25rem;
}

/* Bootstrap Button Reset */

.btn {
  border: none;
  padding: 0;
  background: none;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: inherit;
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 500;
  width: fit-content;
}

.primary-btn {
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.primary-btn:hover,
.primary-btn:focus,
.primary-btn:active {
  background: var(--primary) !important;
  box-shadow: 0 0.5rem 1rem rgba(246, 102, 102, 0.4) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

.transparent-btn {
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.transparent-btn:hover,
.transparent-btn:focus,
.transparent-btn:active {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.3),
    0 0 1.5rem rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
}

.who-we-are-buttons .transparent-btn:hover,
.who-we-are-buttons .transparent-btn:focus,
.who-we-are-buttons .transparent-btn:active {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.secondary-btn {
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  background: var(--secondary);
  color: var(--black);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.secondary-btn:hover,
.secondary-btn:focus,
.secondary-btn:active {
  background: var(--secondary) !important;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 177, 154, 0.5) !important;
  color: var(--black) !important;
  border-color: transparent !important;
}

.purple-btn {
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  width: fit-content;
}

.purple-btn:hover,
.purple-btn:focus,
.purple-btn:active {
  background: var(--green) !important;
  box-shadow: 0 0.5rem 1rem #017074a0 !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

.round-btn {
  display: flex;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.3125rem 0.1875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6.25rem;
}

.round-btn svg {
  transition: transform 0.3s ease;
}

.round-btn:hover svg,
.round-btn:focus svg,
.round-btn:active svg {
  transform: rotate(45deg);
}

/* Header */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0 0 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo svg {
  display: block;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.7;
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.header-hamburger span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--green);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.mobile-menu-logo svg {
  display: block;
  height: auto;
  width: 7.5rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.mobile-menu-nav a:hover {
  opacity: 0.7;
}

.mobile-menu-footer {
  padding-top: 2rem;
}

.mobile-menu-footer .secondary-btn {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0.625rem;
}

.hero.hero-secondary {
  min-height: 30rem;
}

.hero.hero-secondary.hero-contact {
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0) 27.82%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 1.5rem;
  z-index: 1;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  overflow: hidden;
  border-radius: 1.5rem;
  z-index: -1;
}

.hero-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  padding: 8rem 0 4rem;
  z-index: 2;
}

.hero-secondary .hero-content {
  padding: 12rem 0 0 0;
}

.hero-subtitle {
  display: inline-block;
  background: #ffb19a;
  color: var(--black);
  padding: 0.625rem 1.5rem;
  border-radius: 18.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-excerpt {
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Course Types */

.course-types {
  position: relative;
  margin-top: -12rem;
  padding-bottom: 1.875rem;
  z-index: 3;
}

.course-type-card {
  border-radius: 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 219, 208, 0.7) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  backdrop-filter: blur(20px);
  display: flex;
  padding: 2.5rem 1.875rem 1.875rem 1.875rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.course-type-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.course-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.course-type-hashtag {
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  align-items: center;
  border-radius: 2rem;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0675rem;
}

.course-type-arrow {
  background: var(--green);
}

.course-type-title {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.course-type-excerpt {
  color: #000;
  max-width: 17.1875rem;
}

.course-type-thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  max-height: 17.3125rem;
}

.course-type-img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}

.course-type-footer {
  align-items: flex-end;
  width: 100%;
}

.course-type-arrow-mobile {
  display: none;
}

/* Who We Are Section */
.who-we-are-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.who-we-are .subtitle-wrapper p {
  color: var(--primary);
}

.who-we-are-content h2 {
  color: var(--black);
}

.who-we-are-excerpt {
  color: var(--black);
}

.who-we-are-for {
  margin-top: 0.5rem;
}

.who-we-are-for-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
}

.who-we-are-for-item svg {
  flex-shrink: 0;
}

.who-we-are-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.who-we-are-buttons .transparent-btn {
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* Courses By Type */
.courses-type-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.courses-type-title {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06rem;
}

.courses-type-excerpt {
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03rem;
}

/* Course Selector */

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

.language-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.language-tab {
  display: flex;
  padding: 0.625rem 1.25rem 0.625rem 0;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-bottom: 1px solid rgba(1, 112, 116, 0.2);
  border-radius: 0;
  background: transparent;
  color: rgba(1, 112, 116, 0.7);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.07875rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-tab:hover {
  color: var(--green);
}

.language-tab.active {
  border-bottom: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.course-item:hover {
  box-shadow: 0 0.5rem 1rem rgba(52, 21, 101, 0.1);
}

.course-item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.course-item-title {
  color: #000;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03375rem;
}

.course-item-excerpt {
  color: #000;
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.02625rem;
}

.course-view-all {
  display: flex;
  justify-content: flex-end;
}

.course-view-all-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.course-view-all-text {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.course-view-all-btn {
  background: var(--primary);
  transition: box-shadow 0.3s ease;
}

.course-view-all-link:hover .course-view-all-btn {
  box-shadow: 0 0.25rem 0.5rem rgba(246, 102, 102, 0.3);
}

/* Course Item Page Variant */
.course-item-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.course-item-page.hidden {
  display: none;
}

.course-item-page:hover {
  box-shadow: 0 0.5rem 1rem rgba(52, 21, 101, 0.1);
}

.course-item-page-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.course-item-page-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-item-page-btn {
  background: var(--primary);
  flex-shrink: 0;
}

/* Valencia Section */
.valencia {
  position: relative;
  z-index: 3;
}
.valencia-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 2rem;
  overflow: hidden;
}

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

.valencia-content {
  background: var(--green);
  border-radius: 2rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.valencia-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
}

.valencia-subtitle {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.valencia-subtitle p {
  color: var(--white);
}

.valencia-content h2 {
  color: var(--white);
}

.valencia-content h2 strong {
  color: #fbbe93;
}

.valencia-excerpt {
  color: var(--white);
}

/* Current Info Section */

.current-info {
  position: relative;
  overflow-x: clip;
}

.current-info-logo-bg {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  min-width: 60rem;
}

.current-info-logo-bg svg {
  width: 100%;
  height: auto;
}

.current-info .container {
  position: relative;
  z-index: 1;
}

.current-info-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.current-info-header .subtitle-wrapper p {
  color: var(--primary);
}

.current-info-header h2 {
  color: var(--black);
}

.current-info-header h2 strong {
  color: var(--primary);
}

.current-info-slider {
  margin-bottom: 2rem;
  margin-right: -50vw;
  padding-right: 50vw;
  overflow: visible;
}

.current-info-slider .splide__track {
  overflow: visible;
  clip-path: inset(-100vw -100vw -100vw 0);
}

.current-info-card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.current-info-hashtag {
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  align-items: center;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0675rem;
  width: fit-content;
}

.current-info-hashtag[data-index='0'],
.current-info-hashtag[data-index='2'],
.current-info-hashtag[data-index='4'],
.current-info-hashtag[data-index='6'],
.current-info-hashtag[data-index='8'] {
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
}

.current-info-hashtag[data-index='1'],
.current-info-hashtag[data-index='3'],
.current-info-hashtag[data-index='5'],
.current-info-hashtag[data-index='7'],
.current-info-hashtag[data-index='9'] {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}

.current-info-card-title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.045rem;
}

.current-info-card-excerpt {
  color: #000;
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.01rem;
}

.current-info-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.current-info-arrow {
  display: flex;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.3125rem 0.1875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6.25rem;
  background: var(--green);
  border: none;
  transition: all 0.3s ease-in-out;
}

.current-info-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.current-info-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.current-info-arrow:disabled:hover {
  background: var(--white);
  border-color: rgba(55, 55, 55, 0.1);
  color: var(--black);
}

/* ========================================
   GOOGLE RATING
   ======================================== */

.google-rating {
  position: relative;
  z-index: 3;
  padding-bottom: 1.875rem;
}

.google-rating-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 31.25rem;
  border-radius: 1.625rem;
  overflow: hidden;
}

.google-rating-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.google-rating-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    183deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.8) 95%
  );
  z-index: 1;
}

.google-rating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.google-rating-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 3.75rem 3.75rem 3.75rem;
  z-index: 2;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.google-rating-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.google-rating-icon {
  flex-shrink: 0;
}

.google-rating-header-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.google-rating-header-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-rating-stars {
  display: flex;
  gap: 0.25rem;
}

.google-rating-score {
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 400;
}

.google-rating-label {
  color: var(--white);
  font-size: 1.125rem;
  margin: 0;
}

.google-rating-title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06rem;
  padding-top: 1rem;
}

.google-rating-excerpt {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.google-rating-btn {
  border: 1px solid #ffb19a;
  color: #ffb19a;
  background: transparent;
  backdrop-filter: none;
}

.google-rating-btn:hover {
  background: var(--white);
  border-color: #ffb19a;
  color: #ffb19a;
  box-shadow: 0 0.5rem 1rem rgba(255, 177, 154, 0.3);
}

/* ========================================
   FAQ
   ======================================== */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}

.faq-subtitle {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.faq-excerpt {
  color: var(--black);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question-text {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-question:hover .faq-question-text {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-answer-inner {
  min-height: 0;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  font-size: 1rem;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 0;
}

/* ========================================
   TRY VERBAL
   ======================================== */
.try-verbal-wrapper {
  background: var(--primary);
  border-radius: 2rem;
  padding: 3.75rem 1.875rem;
  position: relative;
  overflow: hidden;
  min-height: 28rem;
}

.try-verbal-wrapper .subtitle-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.try-verbal-wrapper .subtitle-wrapper p {
  color: var(--white);
}

.try-verbal-logo-bg {
  position: absolute;
  top: 3rem;
  right: 2rem;
  height: auto;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  max-width: 19rem;
}

.try-verbal-logo-bg svg {
  width: 100%;
  height: auto;
}

.try-verbal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.try-verbal-content h2 {
  color: var(--white);
}

.try-verbal-content h2 strong {
  color: var(--green);
}

.try-verbal-excerpt {
  color: var(--white);
}

.try-verbal-image {
  position: absolute;
  bottom: 0;
  right: 10rem;
  width: 37%;
  max-width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.try-verbal-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: transparent;
  padding: 0.625rem;
  margin-top: 1.875rem;
}

.footer-inner {
  background: #26212c;
  border-radius: 1.5rem;
  padding: 3.75rem 0;
}

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

.footer-logo {
  max-width: 7.5rem;
  height: auto;
}

.footer-logo svg {
  width: 100%;
  height: auto;
}

.footer-description {
  color: var(--white);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.footer-copyright {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 400;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
  opacity: 1;
}

.footer-divider {
  color: var(--white);
  opacity: 0.3;
  font-size: 0.75rem;
}

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

.footer-section-title {
  color: #b7b5b5;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07875rem;
  line-height: normal;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-link {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-nav-link:hover,
.footer-contact-item:hover {
  opacity: 0.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  color: var(--white);
  font-size: 1.25rem;
  line-height: normal;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-contact-item p {
  color: var(--white);
  font-size: 1.25rem;
  line-height: normal;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-contact-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact-link:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  color: var(--primary);
  transform: translateY(-0.125rem);
}

/* About Course */
.about-course {
  position: relative;
  z-index: 2;
}
.about-course-title h2 {
  color: var(--black);
}

.about-course-excerpt {
  color: var(--black);
}

.about-course-excerpt p {
  margin-bottom: 1rem;
}

.about-course-card {
  border-radius: 2rem;
  padding: 1.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-course-card .subtitle-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-course-card .subtitle-wrapper p {
  color: var(--white);
}

.about-course-card-primary {
  background: var(--primary);
}

.about-course-card-green {
  background: var(--green);
}

.about-course-card-image {
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.about-course-card-image picture {
  height: 100%;
}

.about-course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-course-card-title {
  color: var(--white);
}

.about-course-card-title h2 {
  color: var(--white);
}

.about-course-card-primary h2 strong {
  color: var(--green);
}

.about-course-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: auto;
}

.about-course-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
}

.about-course-list-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--white);
}

/* Registration */

.registration {
  position: relative;
  overflow-x: clip;
}

.registration-logo-bg {
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  min-width: 60rem;
}

.registration-logo-bg svg {
  width: 100%;
  height: auto;
}

.registration .container {
  position: relative;
  z-index: 1;
}

.registration-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.registration-header .subtitle-wrapper p {
  color: var(--primary);
}

.registration-header h2 {
  color: var(--black);
  font-weight: 400;
}

.registration-header h2 strong {
  color: var(--primary);
}

.registration-card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}

.registration-card-title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.045rem;
}

.registration-card-excerpt {
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.01rem;
}

/* Learning Method */

.learning-method {
  position: relative;
  z-index: 2;
}

.learning-method-card {
  background: var(--green);
  border-radius: 2rem;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.learning-method-card .subtitle-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
}

.learning-method-card .subtitle-wrapper p {
  color: var(--white);
}

.learning-method-title {
  color: var(--white);
}

.learning-method-title h2 {
  color: var(--white);
}

.learning-method-title h2 strong {
  color: var(--secondary);
}

.learning-method-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.learning-method-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
}

.learning-method-list-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--white);
}

.learning-method-list-item span {
  color: var(--white);
  line-height: 1.5;
}

.learning-method-text p {
  color: var(--white);
  margin: 0;
}

.learning-method-text p strong {
  color: var(--white);
}

.learning-method-card .btn {
  margin-top: auto;
}

.learning-method-image-wrapper {
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.learning-method-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Program */
.program .subtitle-wrapper p {
  color: var(--primary);
}
.program-title h2 {
  color: var(--black);
}

.program-title h2 strong {
  color: var(--primary);
}

.program-excerpt {
  color: var(--black);
}

.program-excerpt p {
  margin-bottom: 1.25rem;
}

.program-excerpt ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.program-excerpt ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.program-excerpt ul li::before {
  content: '';
  display: inline-block;
  min-width: 19px;
  height: 15px;
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M0.75 8.70455L5.52273 13.4773L18.25 0.75' stroke='%23F58C79' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.it-works .program-excerpt ul li {
  font-weight: 800;
}

.program-excerpt h3 {
  margin-bottom: 2rem;
}

.it-works .program-excerpt h3 {
  margin-bottom: 1rem;
}

.program-excerpt h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.program-excerpt h3:first-child {
  margin-top: 0;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.program-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--black);
}

.program-list-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--primary);
}

.program-list-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.program-list-item-title {
  font-weight: 800;
  color: #000;
  margin: 0;
}

.program-list-item-desc {
  color: #000;
  margin: 0;
}

.program-list-item-content p {
  text-align: start;
}

/* Course Price */

.course-price-card {
  background: var(--primary);
  border-radius: 2rem;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

/* Focus card */
.focus-card {
  background: var(--primary);
  border-radius: 2rem;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  min-height: 34rem;
}

.focus-card-title {
  color: var(--white);
}

.focus-card-title h2 {
  color: var(--white);
}

.focus-card-title h2 strong {
  color: var(--white);
}

.focus-card-text p {
  color: var(--white);
  margin: 0;
}

.focus-card-text p strong {
  color: var(--white);
}

.focus-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.focus-card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
}

.focus-card-list-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--white);
}

.focus-card-list-item span {
  color: var(--white);
  line-height: 1.5;
}

.course-price-card .subtitle-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
}

.course-price-card .subtitle-wrapper p {
  color: var(--white);
}

.course-price-title {
  color: var(--white);
}

.course-price-title h2 {
  color: var(--white);
}

.course-price-title h2 strong {
  color: var(--green);
}

.course-price-amount {
  color: var(--white);
  font-size: 3rem;
  font-weight: 400;
  line-height: normal;
}

.course-price-excerpt {
  color: var(--white);
}

.course-price-excerpt p {
  color: var(--white);
}

.course-price-image-wrapper {
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.course-price-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Price Includes */
.price-includes .subtitle-wrapper p {
  color: var(--green);
}
.price-includes-title h2 {
  color: var(--black);
}

.price-includes-title h2 strong {
  color: var(--green);
}

.price-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.price-includes-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #000;
}

.price-includes-list-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.price-includes-list-item span {
  color: #000;
  line-height: normal;
}

/* Our Values */

.our-values {
  padding: 0.625rem;
  margin-top: 1.875rem;
}

.our-values-inner {
  background: var(--primary);
  border-radius: 1.5rem;
  padding: 3.75rem 0;
  position: relative;
}

.our-values .subtitle-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
}

.our-values .subtitle-wrapper p {
  color: var(--white);
}

.our-values-title {
  text-align: center;
  color: var(--white);
}

.our-values-title h2 {
  color: var(--white);
}

.our-values-title h2 strong {
  color: var(--white);
}

.our-values-card {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0.28) 1.57%,
    rgba(255, 255, 255, 0.07) 100%
  );
  backdrop-filter: blur(20px);
  height: 100%;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.our-values-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(255, 255, 255, 0.3);
}

.our-values-number {
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.our-values-card-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.0833;
  letter-spacing: 0.045rem;
}

.our-values-card-excerpt {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
  letter-spacing: 0.01rem;
  margin-top: auto;
}

/* Latido Batido */

.latido-batido-card {
  border-radius: 2rem;
  padding: 1.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.latido-batido-card .subtitle-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.latido-batido-card .subtitle-wrapper p {
  color: var(--white);
}

.latido-batido-card-purple {
  background: var(--primary);
}

.latido-batido-card-green {
  background: var(--green);
}

.latido-batido-card-image {
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.latido-batido-card-image picture {
  height: 100%;
}

.latido-batido-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latido-batido-card-title {
  color: var(--white);
}

.latido-batido-card-title h2 {
  color: var(--white);
  line-height: 1.15;
}

.latido-batido-card-text {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
}

.latido-batido-card-text p {
  color: var(--white);
}

.latido-batido-card-text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
}

.latido-batido-card-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
  position: relative;
  padding-left: 1.75rem;
}

.latido-batido-card-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.1875rem;
  height: 0.9375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M0.75 8.70455L5.52273 13.4773L18.25 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* Our Mission */

.our-mission {
  position: relative;
  z-index: 2;
}

.our-mission .subtitle-wrapper p {
  color: var(--primary);
}

.our-mission-title h2 {
  color: var(--black);
}

.our-mission-content {
  color: var(--black);
}

.our-mission-content p {
  margin-bottom: 1rem;
}

.our-mission-content p:last-child {
  margin-bottom: 0;
}

/* About Image */

.about-image {
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 2rem;
  overflow: hidden;
}

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

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(52, 21, 101, 0.1) 0%,
    rgba(246, 102, 102, 0.1) 100%
  );
  border: 2px dashed rgba(52, 21, 101, 0.3);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder p {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.5;
}

/* Our Story */

.our-story {
  position: relative;
  z-index: 2;
}

.our-story-title h2 {
  color: var(--black);
}

.our-story-content {
  color: var(--black);
}

.our-story-content p {
  margin-bottom: 1rem;
}

.our-story-content p:last-child {
  margin-bottom: 0;
}

/* Who We Are About */

.who-we-are-about {
  position: relative;
  z-index: 2;
}

.who-we-are-about .subtitle-wrapper p {
  color: var(--primary);
}

.who-we-are-about-title h2 {
  color: var(--black);
}

.who-we-are-about-card {
  border-radius: 2rem;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.who-we-are-about-card-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.who-we-are-about-card-content p {
  color: var(--white);
  margin-bottom: 1rem;
}

.who-we-are-about-card-content p:last-child {
  margin-bottom: 0;
}

.who-we-are-about-card-content strong {
  color: var(--white);
}

.who-we-are-about-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.who-we-are-about-card-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
  position: relative;
  padding-left: 1.75rem;
}

.who-we-are-about-card-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.1875rem;
  height: 0.9375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M0.75 8.70455L5.52273 13.4773L18.25 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.who-we-are-about-card-primary {
  background: var(--green);
}

.who-we-are-about-card-primary .who-we-are-about-card-content {
  justify-content: space-between;
}

.who-we-are-about-card-secondary {
  background: var(--primary);
}

.who-we-are-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.who-we-are-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
  position: relative;
  padding-left: 1.75rem;
}

.who-we-are-about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.1875rem;
  height: 0.9375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M0.75 8.70455L5.52273 13.4773L18.25 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* Communication Future */

.communication-future {
  position: relative;
  z-index: 2;
}

.communication-future-card {
  background: var(--green);
  border-radius: 2rem;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.communication-future-card .subtitle-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
}

.communication-future-card .subtitle-wrapper p {
  color: var(--white);
}

.communication-future-title {
  color: var(--white);
}

.communication-future-title h2 {
  color: var(--white);
}

.communication-future-title h2 strong {
  color: var(--secondary);
}

.communication-future-content {
  color: var(--white);
}

.communication-future-content p {
  color: var(--white);
  margin-bottom: 1rem;
}

.communication-future-content p:last-child {
  margin-bottom: 0;
}

.communication-future-image-wrapper {
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 25rem;
}

.communication-future-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.communication-future-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(52, 21, 101, 0.1) 0%,
    rgba(246, 102, 102, 0.1) 100%
  );
  border: 2px dashed rgba(52, 21, 101, 0.3);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25rem;
}

.communication-future-placeholder p {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.5;
}

/* Our Beliefs */
.our-beliefs {
  position: relative;
  z-index: 2;
}
.our-beliefs-card {
  border-radius: 2rem;
  padding: 1.875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.our-beliefs-card .subtitle-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.our-beliefs-card .subtitle-wrapper p {
  color: var(--white);
}

.our-beliefs-card-purple {
  background: var(--green);
}

.our-beliefs-card-primary {
  background: var(--primary);
}

.our-beliefs-card-green {
  background: #1f4a47;
}

.our-beliefs-card-white {
  background: var(--white);
  border: 2px solid rgba(1, 112, 116, 0.15);
}

.our-beliefs-card-white .subtitle-wrapper {
  border-color: rgba(1, 112, 116, 0.2);
}

.our-beliefs-card-white .subtitle-wrapper p {
  color: var(--green);
}

.our-beliefs-card-white .our-beliefs-card-title h2 {
  color: var(--black);
}

.our-beliefs-card-white .our-beliefs-card-title h2 strong {
  color: var(--primary);
}

.our-beliefs-card-white .our-beliefs-card-text p {
  color: var(--black);
}

.our-beliefs-card-white .our-beliefs-card-text strong {
  color: var(--black);
}

.our-beliefs-card-title {
  color: var(--white);
}

.our-beliefs-card-title h2 {
  color: var(--white);
  line-height: 1.15;
}

.our-beliefs-card-text {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.our-beliefs-card-text p {
  color: var(--white);
  margin-bottom: 0;
}

.our-beliefs-card-text strong {
  color: var(--white);
}

.our-beliefs-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.our-beliefs-item p:first-child {
  font-weight: 700;
}

.our-beliefs-cta-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.our-beliefs-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.our-beliefs-link:hover {
  color: var(--primary);
  gap: 0.75rem;
}

.our-beliefs-link svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.our-beliefs-card-text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.our-beliefs-card-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
  position: relative;
  padding-left: 1.75rem;
}

.our-beliefs-card-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.1875rem;
  height: 0.9375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M0.75 8.70455L5.52273 13.4773L18.25 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  position: relative;
  overflow-x: clip;
  padding-top: 4rem;
}
.contact-section .current-info-logo-bg {
  bottom: initial;
  top: -6rem;
}
.contact-section-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 1.875rem;
  position: relative;
  overflow: hidden;
  min-height: 28rem;
}

.contact-section-wrapper .subtitle-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.contact-section-wrapper .subtitle-wrapper p {
  color: #000;
}

.contact-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  height: 100%;
}

.contact-section-content h2 {
  color: #000;
}

.contact-section-content h2 strong {
  color: var(--green);
}

.contact-section-excerpt {
  color: #000;
  margin-top: auto;
}

.contact-section-placeholder p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01125rem;
}

.contact-section-form {
  position: relative;
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-label {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01125rem;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #000;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.3s ease;
  background: transparent;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.03rem;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(1, 112, 116, 0.1);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Course Detail */
.course-overview {
  position: relative;
  z-index: 2;
}
.course-overview-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.course-overview-content .subtitle-wrapper p {
  color: var(--primary);
}

.course-learning-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-learning-title {
  color: #000;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  line-height: normal;
  letter-spacing: 0.0125rem;
}

.course-learning-content {
  color: var(--black);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.course-learning-content p {
  margin-bottom: 1rem;
  text-align: start;
}

.course-learning-content p:last-child {
  margin-bottom: 0;
}

.course-learning-content ul {
  list-style: none;
  padding-left: 0;
}

.course-learning-content li {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}

.course-learning-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.1875rem;
  height: 0.9375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M0.75 8.70455L5.52273 13.4773L18.25 0.75' stroke='%23F58C79' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  flex-shrink: 0;
}

.course-learning-content li p {
  margin-bottom: 0;
}

/* Nested lists */
.course-learning-content ul ul {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

.course-learning-content ul ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.course-learning-content ul ul li::before {
  width: 0.9375rem;
  height: 0.75rem;
  opacity: 0.85;
  top: 0.2rem;
}

.course-detail-card {
  border-radius: 2rem;
  background: var(--primary);
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  margin-top: -6rem;
  height: 100%;
  min-height: 33rem;
}

.course-overview-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-price-subtitle.subtitle-wrapper {
  border-color: rgba(255, 255, 255, 0.3);
}

.course-price-subtitle.subtitle-wrapper p {
  color: var(--white);
}

.course-price-main {
  display: flex;
  flex-direction: column;
}

.course-price-amount-large {
  color: var(--white);
  font-size: 3rem;
  font-weight: 400;
  line-height: normal;
}

.course-price-hours {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.01125rem;
}

.course-target-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.course-target-label {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: normal;
}

.course-target-value {
  color: var(--white);
  font-size: 1.125rem;
  line-height: normal;
  letter-spacing: 0.01125rem;
  font-weight: 500;
}

/* 404 Page */

.hero-404 {
  min-height: 100vh;
}

.hero-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 10rem 0 4rem;
}

.error-404-number {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  opacity: 0.9;
  letter-spacing: 0.2rem;
}

.hero-404-content .hero-title {
  margin-bottom: 0;
}

.hero-404-content .hero-excerpt {
  margin-bottom: 0;
  max-width: 40rem;
}

/* Legal Pages (GDPR, Cookies) */

.legal-content {
  padding: 3.75rem 0;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-section h2 {
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
}

.legal-section:first-child h2 {
  border-top: none;
  padding-top: 0;
}

.legal-section h3 {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-section ul li {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.legal-section a:hover {
  opacity: 0.7;
}

.legal-last-update {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(55, 55, 55, 0.6);
  font-style: italic;
}

.courses-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}

.our-values.children-courses .our-values-inner {
  padding: 3.75rem;
}

/* Valencia Floating Button */
.valencia-floating-btn {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.valencia-floating-btn.show {
  opacity: 1;
}

.valencia-floating-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-decoration: none;
  box-shadow: 0 0.5rem 2rem rgba(245, 140, 121, 0.4);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: valenciaGlow 3s ease-in-out infinite;
}

.valencia-floating-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0.75rem 2.5rem rgba(245, 140, 121, 0.6);
  animation: none;
}

.valencia-floating-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.5;
  filter: blur(1rem);
  z-index: -1;
  animation: valenciaGlowPulse 3s ease-in-out infinite;
}

.valencia-floating-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02rem;
}

.valencia-floating-subtext {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.valencia-floating-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 10;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.valencia-floating-close:hover {
  background: var(--purple);
  transform: scale(1.1);
}

.valencia-floating-close i {
  line-height: 1;
}

@keyframes valenciaGlow {
  0%,
  100% {
    box-shadow: 0 0.5rem 2rem rgba(245, 140, 121, 0.4);
  }
  50% {
    box-shadow: 0 0.6rem 2.2rem rgba(245, 140, 121, 0.5);
  }
}

@keyframes valenciaGlowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Thank You Page */
.thank-you-content {
  padding: 4rem 0;
}

.thank-you-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 2rem;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  color: var(--white);
}

.thank-you-title {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.thank-you-text {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0;
  opacity: 0.9;
}

.thank-you-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.communication-losses .learning-method-card {
  min-height: 34rem;
}

.communication-losses .learning-method-card .btn {
  margin-top: 0;
}

.communication-losses .learning-method-text.first {
  margin-top: auto;
}

.verbal-difference-section {
  position: relative;
  z-index: 2;
}
