:root {
  --accent-color: #023047;
  --off-black: #38312d;
  --off-white: #fbf9f5;
  --dark-brown: #38312d;
  --yellow: #ffc800;
  --transition: all 0.3s ease-out;
  --spacing: 1.5rem;
  --spacing-md: 2.8125rem;
  --spacing-lg: 7.5rem;

  @media (max-width: 640px) {
    --spacing-lg: 2.8125rem;
  }
}

/* Simple reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  font-family: 'Lora', serif;
}

ol,
ul {
  list-style: none;
}

img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
  outline: none;
  border: 0;
}

article,
section {
  display: block;
}

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

.center-content {
  width: 100%;
  padding: 0 var(--spacing-md);
  max-width: 112.5rem;
  margin: auto;

  @media (max-width: 640px) {
    padding: 0 var(--spacing-md);
  }
}

input,
select,
textarea {
  font-family: 'Lora', serif;
}

.top-strip {
  color: #777;
  background-color: #101010;
  padding: 0.5rem 0;
  font-size: 11px;
  h1 {
    display: inline;
    font-size: 11px;
    font-weight: 400;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0 var(--spacing-md);
  max-width: 112.5rem;
  margin: auto;
  background-image: url(https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  &.hero-single {
    height: 460px;
    background-image: url('./img/methodology-hero.png');
  }

  @media (max-width: 640px) {
    height: auto;
    padding-bottom: var(--spacing-lg);

    &.hero-single {
      height: auto;
    }
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 9;
  padding-bottom: 3.5rem;
  @media (max-width: 640px) {
    padding-bottom: 0;
  }
}
.hero-content__text {
  height: 100%;
  max-width: 45rem;
  .hero-title {
    font-size: clamp(1.5rem, 7vw + 1rem, 4.5rem); /* min, preferred, max */
    color: var(--off-white);
    line-height: 1.1;
    font-weight: 600;
  }
  .hero-description {
    font-size: 1.375rem;
    color: var(--off-white);
  }
  /* .hero-actions {
  } */

  @media (max-width: 640px) {
    text-align: center;
    padding-top: 2.5rem;
  }
}

.hero-single .hero-content {
  width: 100%;
}
.hero-single .hero-content__text {
  font-size: 52px;
  display: block;
  text-align: center;
  /* max-width: 64rem; */
  margin: auto;
  display: flex;

  .hero-title {
    font-size: clamp(1.5rem, 7vw + 1rem, 3.8rem); /* min, preferred, max */
  }
}

/* Header */
.header {
  width: 100%;
  max-width: 112.5rem;
  margin: auto;
  padding: var(--spacing) 0;
  position: relative;
  z-index: 20;

  @media (max-width: 640px) {
    padding: 1.2rem 0;
    max-width: 100%;
  }
  .logo {
    display: block;
    width: 8.25rem;
    height: auto;
    /* border: solid 1px red; */
    img {
      width: 100%;
    }
  }
}

.header--plain {
  padding: 1rem var(--spacing-md);
  /* background: var(--off-white); */
  border-bottom: 1px solid rgba(56, 49, 45, 0.1);
  /* border-radius: 0 0 1.5rem 1.5rem; */
  a.active {
    color: var(--off-white) !important;
  }
}

.header--plain .logo {
  width: 8.25rem;
}

.header--plain .nav-list > li > a {
  color: var(--off-black);
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: var(--spacing);

  ul {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem 0;

    @media (max-width: 640px) {
      flex-direction: column;
      align-items: flex-start;
      &::before {
        content: 'Navegação';
        /* margin: var(--spacing); */
        margin-bottom: 0.4rem;
        margin-left: 0;
        display: inline-block;
        font-size: 0.875rem;
        color: var(--accent-color);
      }
      img {
        display: none;
      }
    }
    li {
      font-size: 0.875rem;
      a {
        font-size: 14px;
        text-decoration: none;
        color: var(--off-black);
        &:hover {
          color: var(--accent-color);
        }
      }
    }
  }
}

.how-it-works {
  /* .center-content { */
  gap: var(--spacing);
  margin-top: var(--spacing-md);
  background-color: #f9f9f9;
  padding-block: var(--spacing-md);

  .how-it-works-img {
    flex: 0 0 36.625rem;
    border-radius: var(--spacing);
    overflow: hidden;
    height: auto;

    @media (max-width: 640px) {
      flex: 1;
    }

    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
      border-radius: var(--spacing);
    }
  }
  /* } */
}

/* Results */
.results-section {
  margin-top: var(--spacing-lg);
  text-align: center;
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing);
    align-items: start;

    .result-card {
      background-color: var(--off-white);
      border: 1px solid rgba(56, 49, 45, 0.12);
      border-radius: var(--spacing);
      padding: 1rem;
      box-shadow: 0 1rem 2.5rem rgba(2, 48, 71, 0.08);
    }

    .result-card__images {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .result-card__figure {
      margin: 0;
      text-align: left;
    }

    .result-card__label {
      display: inline-block;
      margin-bottom: 0.5rem;
      font-size: 0.875rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-color);
      font-weight: 600;
    }

    img {
      width: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 3 / 4;
      border-radius: calc(var(--spacing) / 1.5);
    }

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

    @media (max-width: 640px) {
      grid-template-columns: 1fr;

      .result-card {
        padding: 0.75rem;
      }

      .result-card__images {
        grid-template-columns: 1fr;
      }
    }
  }
}

.methodology-cta,
.services-cta {
  margin-top: var(--spacing-lg);

  .methodology-cta__content,
  .services-cta__content {
    border-radius: var(--spacing);
    display: flex;

    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;

    height: 26rem;
    padding: var(--spacing-md) 0;

    @media (max-width: 640px) {
      height: auto;
      padding: var(--spacing-md);
    }

    background-image: url('./img/metodologia-cta.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: var(--off-white);
    gap: var(--spacing);
    .methodology-cta__content-title,
    .services-cta__content-title {
      font-size: 3rem;
      line-height: 1.3;
      max-width: 70vw;
      font-style: oblique;
      @media (max-width: 640px) {
        font-size: 2rem;
      }
    }
    .methodology-cta__content-text,
    .services-cta__content-text {
      font-size: 1.125rem;
      max-width: 70vw;
    }
  }
}

.services-cta {
  .services-cta__content {
    background-image: url('./img/servicos-cta.png');
  }
}

/* FAQ */
.faq-section {
  margin-top: var(--spacing-lg);
  gap: var(--spacing-lg);
  .base-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .center-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    max-width: 96rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: calc(var(--spacing) * 1.25);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(251, 249, 245, 1) 100%
    );
    border: 1px solid rgba(56, 49, 45, 0.08);
    box-shadow: 0 1.5rem 4rem rgba(2, 48, 71, 0.06);

    @media (max-width: 640px) {
      flex-direction: column;
    }
  }

  .faq-section__left {
    flex: 0 0 30rem;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--spacing) * 1.1);

    &::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(2, 48, 71, 0.28) 100%
      );
      pointer-events: none;
    }

    @media (max-width: 640px) {
      display: none;
    }
  }

  .faq-section__left img {
    width: 100%;
    height: 100%;
    min-height: 34rem;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--spacing) * 1.1);
  }

  .faq-section__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    a {
      color: var(--accent-color);
    }
  }
}

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

.faq-item {
  position: relative;
  background: var(--off-white);
  border: 1px solid rgba(56, 49, 45, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 1rem 2.5rem rgba(2, 48, 71, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 1.25rem 3rem rgba(2, 48, 71, 0.08);
  }

  &.is-open {
    border-color: rgba(2, 48, 71, 0.18);
    box-shadow: 0 1.5rem 3rem rgba(2, 48, 71, 0.1);
  }
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: var(--off-black);
}

.faq-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
}

.faq-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(2, 48, 71, 0.06);
  border: 1px solid rgba(2, 48, 71, 0.08);
}

.faq-arrow img {
  width: 28px;
  height: 28px;
}

.faq-arrow-up {
  display: none;
}

.faq-item.is-open .faq-arrow-up {
  display: block;
}

.faq-item.is-open .faq-arrow-down {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.faq-item.is-open .faq-content {
  max-height: 600px;
  opacity: 1;
  margin-top: 0.75rem;
}

.faq-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(56, 49, 45, 0.88);
}

.faq-content a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
  }
}

/* Services */
.services-section {
  margin-top: var(--spacing-md);

  .services-sidebar {
    flex: 0 0 30rem;
    background-color: var(--off-white);
    padding: var(--spacing);
    border-radius: var(--spacing);

    @media (max-width: 640px) {
      flex: 1;
      width: 100%;
    }

    ul {
      display: flex;
      gap: var(--spacing);
      flex-direction: column;
      li a {
        display: block;
        color: var(--accent-color);
        font-size: 1.125rem;
        text-decoration: none;
        padding: 1rem;
        border: solid 1px var(--accent-color);
        border-radius: 1rem;
        transition: var(--transition);
        font-weight: 600;
        &:hover,
        &.active {
          background-color: var(--accent-color);
          color: var(--off-white);
          padding-left: 2rem;
        }
      }
    }
  }
  .service-items {
    flex: 1;
    flex-direction: column;

    gap: var(--spacing);
    display: flex;
  }
  .services-section-actions {
    margin-top: var(--spacing);
    display: flex;
    gap: var(--spacing);
    align-items: center;
    justify-content: flex-start;
  }
}

.services-list {
  display: flex;
  gap: var(--spacing);
  flex-direction: column;
  li {
    a {
      display: block;
      padding: 1rem;

      border-bottom: solid 1px #eee;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: var(--transition);

      &:hover {
        transform: translateY(-5px);
      }
    }
    .service-title {
      display: block;
      color: var(--off-black);
      font-weight: 500;
      font-size: 1.5rem;
    }
    .service-description {
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.5;
      color: var(--off-black);
    }
  }
}

.hero-single-service {
  .hero-content__text {
    max-width: 52rem;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
}

.hero-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.services-section-single {
  .center-content {
    align-items: flex-start;
  }
}

.services-sidebar-single {
  position: sticky;
  top: 2rem;
  box-shadow: 0 1.2rem 3rem rgba(2, 48, 71, 0.08);
  border: 1px solid rgba(56, 49, 45, 0.08);

  @media (max-width: 640px) {
    position: static;
  }
}

.services-sidebar-card {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(56, 49, 45, 0.12);
}

.services-sidebar-card__eyebrow,
.service-spotlight__eyebrow,
.service-content-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-sidebar-card__title,
.services-sidebar-cta__title,
.service-experience-band__title {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--off-black);
  font-weight: 700;
}

.services-sidebar-card__text,
.services-sidebar-cta__text,
.service-experience-band__item p {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(56, 49, 45, 0.84);
}

.services-sidebar-cta {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(2, 48, 71, 0.12);
  background: rgba(2, 48, 71, 0.04);
  color: var(--off-black);

  .services-sidebar-cta__title,
  .services-sidebar-cta__text {
    color: var(--off-black);
  }

  .btn {
    margin-top: 1rem;
    width: 100%;
  }
}

.service-items-single {
  gap: 1.5rem;
}

.service-spotlight,
.service-content-card {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf9f5 100%);
  border: 1px solid rgba(56, 49, 45, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 4rem rgba(2, 48, 71, 0.08);
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;

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

.service-spotlight__media {
  min-height: 100%;

  img {
    width: 100%;
    height: 100%;
    min-height: 28rem;
    display: block;
    object-fit: cover;

    @media (max-width: 640px) {
      min-height: 20rem;
    }
  }
}

.service-spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.service-spotlight__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;

  span {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background-color: rgba(2, 48, 71, 0.08);
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
  }
}

.service-content-card {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.service-content-card__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-content-card__title-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
}

.service-rich-content {
  color: var(--off-black);

  > *:first-child {
    margin-top: 0;
  }

  h2,
  h3,
  h4 {
    margin: 2rem 0 0.85rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.2;
    color: var(--off-black);
  }

  p,
  li {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(56, 49, 45, 0.9);
  }

  p + p {
    margin-top: 1rem;
  }

  ul,
  ol {
    margin: 1rem 0 0 1.25rem;
  }

  li + li {
    margin-top: 0.6rem;
  }

  strong {
    color: var(--accent-color);
  }

  blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--yellow);
    background-color: rgba(255, 200, 0, 0.12);
    border-radius: 0 1rem 1rem 0;
  }
}

.hero-single-workshop {
  .hero-content__text {
    max-width: 56rem;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
}

.hero-workshop-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.workshops-single-section {
  .center-content {
    max-width: 92rem;
  }
}

.workshop-single-items {
  gap: 1.5rem;
}

.workshop-storyboard,
.workshop-detail-card {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf9f5 100%);
  border: 1px solid rgba(56, 49, 45, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 4rem rgba(2, 48, 71, 0.08);
}

.workshop-storyboard {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;

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

.workshop-storyboard__media {
  img {
    width: 100%;
    height: 100%;
    min-height: 27rem;
    object-fit: cover;
    display: block;

    @media (max-width: 640px) {
      min-height: 20rem;
    }
  }
}

.workshop-storyboard__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.workshop-storyboard__eyebrow,
.workshop-detail-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.2rem;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop-storyboard__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;

  span {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background-color: rgba(2, 48, 71, 0.08);
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
  }
}

.workshop-detail-card {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.workshop-detail-card__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.workshop-detail-card__title-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 44rem;
}

.workshop-rich-content {
  color: var(--off-black);

  > *:first-child {
    margin-top: 0;
  }

  h2,
  h3,
  h4 {
    margin: 2rem 0 0.85rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.2;
    color: var(--off-black);
  }

  p,
  li {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(56, 49, 45, 0.9);
  }

  p + p {
    margin-top: 1rem;
  }

  ul,
  ol {
    margin: 1rem 0 0 1.25rem;
  }

  li + li {
    margin-top: 0.6rem;
  }

  strong {
    color: var(--accent-color);
  }

  blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--yellow);
    background-color: rgba(255, 200, 0, 0.12);
    border-radius: 0 1rem 1rem 0;
  }
  .service-item {
    margin-top: var(--spacing-md);
    .base-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
  }
}

.workshop-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;

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

.workshop-value-strip__item {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background-color: var(--off-white);
  border: 1px solid rgba(56, 49, 45, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(2, 48, 71, 0.06);
}

.workshop-value-strip__title {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--off-black);
  font-weight: 700;
}

.workshop-value-strip__item p {
  color: rgba(56, 49, 45, 0.84);
  line-height: 1.65;
}

.services-section-actions-workshop {
  @media (max-width: 640px) {
    flex-direction: column;
    align-items: stretch;
  }
}

.service-experience-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;

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

.service-experience-band__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(251, 249, 245, 1) 100%
  );
  border: 1px solid rgba(56, 49, 45, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(2, 48, 71, 0.06);
  overflow: hidden;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      rgba(255, 200, 0, 0.08),
      transparent 38%
    );
    pointer-events: none;
  }
}

.service-experience-band__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: rgba(2, 48, 71, 0.08);
  color: var(--accent-color);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.service-experience-band__title {
  margin-bottom: 0.6rem;
}

.services-section-actions-single {
  margin-top: 0.5rem;

  @media (max-width: 640px) {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Navigation submenu */
.main-nav ul {
  list-style: none;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;

  @media (max-width: 640px) {
    flex-direction: column;
  }
}

.main-nav .nav-list > li {
  position: relative;
}

.main-nav .nav-list > li > a {
  color: var(--off-black);
  text-decoration: none;
}

/* header */
.header {
  a {
    transition: var(--transition);
  }
  &.light {
    .main-nav .nav-list > li > a {
      color: var(--off-white);
      &:hover {
        opacity: 0.8;
        /* color: var(--yellow); */
      }
    }
  }
  &.dark {
    .main-nav .nav-list > li > a {
      color: var(--off-black);
    }
  }

  a.active {
    background-color: var(--accent-color);
    padding: 0.875rem 2rem;
    border-radius: 200px;
    &:hover {
      opacity: 0.85;
    }
  }
}

/* submenu */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 300px;
  padding: 1rem;
  color: var(--off-black);
  background: var(--off-white);
  border-radius: 1rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  a {
    color: var(--off-black);
    font-size: 1rem;
    text-decoration: none;
    &:hover {
      color: var(--accent-color);
      padding-left: 1rem;

      @media (max-width: 640px) {
        padding-left: 0;
      }
    }
  }
  .has-submenu {
    position: relative;
    z-index: 10;
  }
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: flex;
}

@media (max-width: 768px) {
  .header {
    &.light {
      .main-nav .nav-list > li > a:not(.active) {
        color: var(--off-black);
      }
    }
  }

  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--off-white);
    z-index: 100;
    overflow-y: scroll;

    transform: translateX(-100%);
    transition: var(--transition);
    &.visible {
      transform: translate(0);
    }

    .close-menu,
    .close-submenu {
      position: absolute;
      top: var(--spacing);
      right: var(--spacing);
    }

    .nav-list {
      flex-direction: column;
      height: 100%;
      align-items: center;
      justify-content: center;
      li a {
        font-size: 1.3rem;
      }
    }
  }
  .has-submenu a {
    text-align: center;
    display: block;
  }
  .submenu {
    top: auto;
    box-shadow: none;
    border-radius: 0;
    background: var(--off-white);
    max-width: 100%;

    gap: 1rem;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;

    transform: translateX(-100%);

    &.visible {
      transform: translateX(0);
    }
  }
}

/* About */
.about-section {
  margin-top: var(--spacing-lg);
  .about__left {
    min-width: 27.125rem;
    flex: 0 0 27.125rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--spacing);

    @media (max-width: 640px) {
      flex: 1;
      min-width: 100%;
      width: 100%;
    }

    .professional-tag {
      position: absolute;
      bottom: var(--spacing);
      left: var(--spacing);
      z-index: 1;
      transition: var(--transition);
    }
    img {
      position: relative;
      object-fit: cover;
      display: block;
      width: 100%;
      transition: var(--transition);
    }
    &:hover {
      .professional-tag {
        transform: translateY(-3px);
      }
      img {
        transform: scale(1.05);
      }
    }
  }
}

/* Work */
.our-work-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--off-white);

  @media (max-width: 640px) {
    padding: var(--spacing-md) 0;
  }
  .center-content {
    padding-right: 0;
    overflow-x: hidden;
  }
  /* left */
  .our-work__left {
    position: relative;
    flex: 0 0 25rem;

    .work-arrows {
      position: absolute;
      bottom: 2rem;
      right: 0;

      @media (max-width: 640px) {
        display: none;
      }
      .work-arrow {
        background: none;
        border: 0;
        padding: 0;
      }
      img {
        cursor: pointer;
        opacity: 0.7;
        &.active {
          opacity: 1;
        }
      }
    }
  }

  /* right */
  .our-work__right {
    --slide-spacing: var(--spacing);
    --slide-size: 20rem;
    position: relative;
    /* width: 50%; */
    overflow: hidden;

    .embla {
      position: relative;
    }
    .embla__viewport {
      cursor: grab;
      width: 100%;
    }
    .embla__container {
      display: flex;
      touch-action: pan-y pinch-zoom;
    }
    .embla__slide {
      flex: 0 0 var(--slide-size);
      min-width: 0;
      margin-left: var(--slide-spacing);
    }
    .our-work__slide-container {
      display: flex;
    }
    &::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 180px;
      pointer-events: none;

      background: linear-gradient(
        to right,
        rgba(251, 249, 245, 0) 0%,
        rgba(251, 249, 245, 0.9) 70%,
        rgba(251, 249, 245, 1) 100%
      );
    }
  }
}

.work-card {
  position: relative;
  display: flex;
  /* align-items: flex-end; */
  justify-content: flex-end;
  min-height: 28rem;
  padding: 2rem;
  color: var(--off-white);
  border-radius: var(--spacing);
  overflow: hidden;
  background: #1a1a1a;
  flex-direction: column;
  text-decoration: none;

  img {
    transition: var(--transition);
    filter: saturate(0.8);
    opacity: 0.9;
  }
  &:hover {
    img {
      transform: scale(1.03);
      filter: saturate(1);
      opacity: 1;
    }
  }
}

.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.work-title,
.work-text {
  position: relative;
  z-index: 1;
  color: var(--off-white);
}

.work-title {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  min-width: fit-content;
  text-wrap-mode: wrap;
}

.work-text {
  margin-top: 0.5rem;
  max-width: 22rem;

  font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
  margin-top: var(--spacing-lg);

  .testimonials-embla {
    position: relative;

    .embla__viewport {
      overflow: hidden;
      cursor: grab;
    }

    .testimonials-cards-container {
      display: flex;
      touch-action: pan-y pinch-zoom;
      margin-left: calc(var(--spacing) * -1);
    }
    .embla__slide {
      transition: none;
      min-width: 0;
      flex: 0 0 30rem;
      padding-left: var(--spacing);
    }
    &::before,
    &::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      pointer-events: none;
      z-index: 2;
    }
    &::before {
      left: 0;
      background: linear-gradient(
        to right,
        rgba(251, 249, 245, 1) 0%,
        rgba(251, 249, 245, 0.85) 35%,
        rgba(251, 249, 245, 0) 100%
      );
    }
    &::after {
      right: 0;
      background: linear-gradient(
        to left,
        rgba(251, 249, 245, 1) 0%,
        rgba(251, 249, 245, 0.85) 35%,
        rgba(251, 249, 245, 0) 100%
      );
    }
  }

  .testimonial-card__item {
    position: relative;
    padding: 1.2rem;
    border-radius: var(--spacing);
    background-color: var(--off-white);
    transition: none;
    border: solid 1px #eee;
    height: 100%;

    .quotes-icon {
      position: absolute;
      top: 1rem;
      right: 1rem;
    }
    .testimonial-card__item-content {
      display: flex;
      flex-direction: column;
      gap: var(--spacing);
    }
    .testimonial-text {
      display: inline-block;

      font-size: 1.2rem;
      padding: 1rem;
      padding-right: 5rem;
      font-style: oblique;
    }
    .testimonial-author {
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1rem;
    }
  }
  .testimonials-arrows {
    display: flex;
    gap: var(--spacing);
    justify-content: flex-end;
    padding: var(--spacing) 0;
    opacity: 0.7;
    margin: auto;
    width: 100%;
    padding: 2rem var(--spacing-lg);

    max-width: 112.5rem;
    .testimonial-arrow {
      border: 0;
      background: none;
      padding: 0;
      cursor: pointer;
    }

    @media (max-width: 640px) {
      display: none;
    }
  }
}

/* Lectures section */
.lectures-section {
  margin-top: var(--spacing-lg);
  background-color: var(--off-white);
  padding: var(--spacing-md) 0;
  &.no-fill {
    background-color: transparent;
    padding: 0;
    margin-top: var(--spacing-md);
  }

  .lectures-section__cards {
    gap: var(--spacing);
    height: 42rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    @media (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      height: auto;
    }
    @media (max-width: 640px) {
      grid-template-columns: repeat(1, 1fr);
    }

    .lectures-section__card {
      text-decoration: none;
      border-radius: var(--spacing);
      overflow: hidden;
      padding: var(--spacing);

      color: var(--off-white);
      position: relative;

      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 1rem;

      @media (max-width: 640px) {
        height: 25rem;
      }

      .lectures-section__card-title,
      .lectures-section__card-subtitle {
        color: var(--off-white);
        position: relative;
      }

      .lectures-section__card-title {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;

        @media (max-width: 640px) {
          font-size: 1.5rem;
        }
      }
      .lectures-section__card-subtitle {
        font-size: 1.125rem;
      }

      img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: var(--transition);
      }

      &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.75) 0%,
          rgba(0, 0, 0, 0.3) 45%,
          rgba(0, 0, 0, 0) 100%
        );
        pointer-events: none;
        z-index: 1;
      }

      > * {
        position: relative;
        z-index: 2;
      }

      &:hover {
        img {
          transform: scale(1.05);
        }
      }
    }
  }
  .lectures-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: var(--spacing);
  }
}

/* Insights */
.insights-section {
  margin-top: var(--spacing-lg);
  .blog-cards {
    display: grid;
    gap: var(--spacing);

    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));

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

    .blog-card__item {
      border-radius: var(--spacing);
      overflow: hidden;
      position: relative;
      height: 25rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-decoration: none;
      padding: var(--spacing) 0 0 var(--spacing);

      transition: var(--transition);

      .blog-card__title,
      .blog-card__description {
        display: block;
        color: var(--off-white);
        transition: var(--transition);
      }

      &:hover {
        opacity: 0.95;
        .blog-card__title,
        .blog-card__description {
          transform: translateY(5px);
        }
      }

      .blog-card__title {
        font-size: 2.25rem;
        font-weight: 700;

        @media (max-width: 640px) {
          font-size: 1.5rem;
        }
      }
      .blog-card__description {
        font-size: 1.125rem;
      }

      img {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
        z-index: -1;
      }
    }

    .blog-card__item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.3) 45%,
        rgba(0, 0, 0, 0) 100%
      );
      pointer-events: none;
    }

    .blog-card__item > * {
      position: relative;
      z-index: 1;
    }
  }
}

/* Location */
.location-section {
  margin-top: var(--spacing-lg);
}

.location-grid {
  display: grid;
  gap: 2.8125rem;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: stretch;
}

.location-video-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 9 / 12;
}

.location-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.location-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  padding: 0;
  border: 1px solid rgba(251, 249, 245, 0.22);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.58);
  color: var(--off-white);
  backdrop-filter: blur(12px);
  text-decoration: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;

  &:hover {
    background: rgba(12, 12, 12, 0.74);
    border-color: rgba(251, 249, 245, 0.34);
    transform: translate(-50%, calc(-50% - 1px));
  }

  &:focus-visible {
    outline: 3px solid rgba(255, 200, 0, 0.7);
    outline-offset: 3px;
  }

  &.is-playing {
    opacity: 0.7;
  }
}

.location-play-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;

  img {
    width: 100%;
    height: 100%;
  }
}

.location-map {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 28rem;
  @media (max-width: 640px) {
    height: auto;
  }
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;

  @media (max-width: 640px) {
    height: 18rem;
  }
}

.location-card {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  max-width: 32rem;
  width: min(90%, 32rem);
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(251, 249, 245, 0.9);
  color: var(--off-black);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  @media (max-width: 640px) {
    /* max-width: 95%; */
    margin: auto;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    height: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: none;
    width: min(100%, 32rem);
  }
}

.location-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;

  @media (max-width: 640px) {
    font-size: 1.8rem;
    text-align: center;
  }
}

.location-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.location-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;

  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.location-text {
  font-size: 18px;
  line-height: 1.4;
}

.location-card .btn {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .location-grid {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }

  .location-card {
    /* position: static;
    margin: 1.5rem; */
  }
}

.contat-section__map {
  margin-top: var(--spacing-lg);
  iframe {
    width: 100%;
    height: 30rem;
    object-fit: cover;
  }
}

/* Agenda Form */
.agenda-form {
  margin-top: var(--spacing-lg);
  text-align: center;
}

.agenda-form__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-shell {
  width: min(100%, 46rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: calc(var(--spacing) * 1.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(251, 249, 245, 1) 100%
  );
  border: 1px solid rgba(56, 49, 45, 0.08);
  box-shadow: 0 1.5rem 4rem rgba(2, 48, 71, 0.06);
}

.form-shell-contact {
  margin-left: auto;
  width: min(100%, 52rem);
}

.form-shell-workshop {
  width: min(100%, 52rem);
}

.agenda-form__title {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--off-black);
}

.agenda-form__subtitle {
  font-size: 1.125rem;
  color: var(--off-black);
  opacity: 0.75;
}

.agenda-form__fields {
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.agenda-input {
  width: 100%;
  border: 1px solid rgba(56, 49, 45, 0.1);
  border-radius: 1.2rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--off-black);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.agenda-input:focus {
  border-color: rgba(2, 48, 71, 0.3);
  box-shadow: 0 0 0 4px rgba(2, 48, 71, 0.08);
  transform: translateY(-1px);
}

.agenda-input::placeholder {
  color: rgba(56, 49, 45, 0.7);
}

.agenda-input--textarea {
  min-height: 8.5rem;
  resize: vertical;
  border-radius: 1.25rem;
}

.agenda-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.agenda-form__actions {
  display: flex;
  justify-content: flex-end;
}

.agenda-form__toast {
  margin-top: 1rem;
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: var(--off-black);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.agenda-form__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.agenda-form__toast.is-error {
  color: #a12a2a;
}

.agenda-form__fields .btn {
  min-width: 12rem;
  box-shadow: 0 0.9rem 2rem rgba(2, 48, 71, 0.12);
}

.agenda-form__fields .btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .agenda-form__row {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .agenda-form__row .btn {
    width: 100%;
  }

  .agenda-form__actions {
    justify-content: stretch;
  }

  .agenda-form__actions .btn {
    width: 100%;
  }
}

/* Blog */
.blog-grid-section {
  margin-top: var(--spacing);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27.125rem, 1fr));
  gap: var(--spacing);
}

.news-card {
  text-decoration: none;
  color: var(--off-black);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: var(--transition);

  &:hover {
    transform: translateY(-5px);
    opacity: 0.95;
  }
}

.news-card img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

.news-card__title {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-single {
  padding-bottom: var(--spacing-lg);
}

.blog-single__hero {
  text-align: center;
  margin-top: var(--spacing-md);
}

.blog-single__title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  font-weight: 600;
  color: var(--off-black);
}

.blog-single__subtitle {
  margin-top: 0.5rem;
  color: rgba(56, 49, 45, 0.7);
}

.blog-single__image {
  width: min(820px, 100%);
  margin: 2.5rem auto 0;
  display: block;
  border-radius: 1.5rem;
  height: 420px;
  object-fit: cover;
}

.blog-single__content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;

  .breadcrumbs {
    margin: 0;
    padding: 0;
  }
}

.blog-single__content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--off-black);
}

.blog-single__content p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(56, 49, 45, 0.85);
  line-height: 1.7;
}

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

  .news-card img {
    height: 220px;
  }

  .header--plain {
    padding: 1rem var(--spacing-md);
  }

  .blog-single__image {
    height: 320px;
  }
}

.contact-section {
  margin-top: var(--spacing-md);
  .base-title {
    line-height: 1.2;
  }
  .contact-section__left {
    flex: 1 1 0;
    border: 1px solid rgba(56, 49, 45, 0.08);
    border-radius: calc(var(--spacing) * 1.1);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(251, 249, 245, 1) 100%
    );
    box-shadow: 0 1.25rem 3rem rgba(2, 48, 71, 0.05);
  }

  .contact-section__form {
    flex: 1 1 0;
  }
}

.contact-section__content {
  /* max-width: 1200px; */
}

.footer {
  margin-top: var(--spacing-lg);
  padding: 3.5rem 0 2rem;
  background: var(--dark-brown);
  color: var(--off-white);
  border-bottom-left-radius: var(--spacing);
  border-bottom-right-radius: var(--spacing);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.7fr) minmax(
      240px,
      1fr
    );
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(251, 249, 245, 0.85);
}

.footer-menu,
.footer-hours,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  text-decoration: none;
  color: rgba(251, 249, 245, 0.9);
  font-size: 0.95rem;
  &:hover {
    text-decoration: underline;
  }
}

.footer-hours .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.footer-divider {
  height: 1px;
  background: rgba(251, 249, 245, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social {
  /* width: 28px;
  height: 28px; */
  display: inline-block;
  transition: var(--transition);
  &:hover {
    transform: translateY(-5px);
  }
}

.footer-copy {
  color: rgba(251, 249, 245, 0.7);
}

@media (max-width: 900px) {
  .footer {
    border-radius: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Flex utilities (basic essentials) */
.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.shrink {
  flex-shrink: 1;
}

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 2.8125rem;
}
.gap-14 {
  gap: 3.25rem;
}

/* Margin utilities */
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: var(--spacing);
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: var(--spacing);
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.tac {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 300px;
  transition: var(--transition);
  background-color: #000;
  color: var(--off-white);
  text-decoration: none;
  text-align: center;

  @media (max-width: 640px) {
    padding: 1rem;
  }

  &:hover {
    opacity: 0.85;
  }

  &.btn-accent {
    background-color: var(--accent-color);
  }
  &.btn-accent-nude {
    border: solid 1px var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    &:hover {
      color: var(--off-white);
      background-color: var(--accent-color);
    }
  }
  &.btn-yellow {
    background-color: var(--yellow);
    color: var(--off-black);
  }
  &.btn-white {
    background-color: transparent;
    border: solid 2px var(--off-white);
  }
  &.btn-black {
    background-color: transparent;
    border: solid 2px var(--off-black);
    color: var(--off-black);
    &:hover {
      background-color: var(--off-black);
      color: var(--off-white);
    }
  }
}

.base-title {
  color: var(--off-black);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  &.sm {
    font-size: 1.5rem;
  }
  &.md {
    font-size: 2.125rem;
  }
}

.base-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--off-black);
  &.md {
    font-size: 20px;
  }
  &.lg {
    font-size: 24px;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  right: 30px;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  img {
    width: 32px;
  }
}

.whatsapp-float {
  bottom: 30px;
  background-color: #25d366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 5px 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive variants (mobile-first) */
@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }

  .sm\:inline-flex {
    display: inline-flex;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:items-end {
    align-items: flex-end;
  }

  .sm\:items-stretch {
    align-items: stretch;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:justify-around {
    justify-content: space-around;
  }

  .sm\:justify-evenly {
    justify-content: space-evenly;
  }

  .sm\:content-start {
    align-content: flex-start;
  }

  .sm\:content-center {
    align-content: center;
  }

  .sm\:content-end {
    align-content: flex-end;
  }

  .sm\:self-start {
    align-self: flex-start;
  }

  .sm\:self-center {
    align-self: center;
  }

  .sm\:self-end {
    align-self: flex-end;
  }

  .sm\:self-stretch {
    align-self: stretch;
  }

  .sm\:flex-1 {
    flex: 1 1 0%;
  }

  .sm\:flex-none {
    flex: none;
  }

  .sm\:grow {
    flex-grow: 1;
  }

  .sm\:shrink {
    flex-shrink: 1;
  }

  .sm\:shrink-0 {
    flex-shrink: 0;
  }

  .sm\:gap-1 {
    gap: 0.25rem;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-6 {
    gap: var(--spacing);
  }

  .sm\:mt-0 {
    margin-top: 0;
  }

  .sm\:mt-1 {
    margin-top: 0.25rem;
  }

  .sm\:mt-2 {
    margin-top: 0.5rem;
  }

  .sm\:mt-3 {
    margin-top: 0.75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:mt-6 {
    margin-top: var(--spacing);
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .sm\:mb-6 {
    margin-bottom: var(--spacing);
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-stretch {
    align-items: stretch;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:justify-around {
    justify-content: space-around;
  }

  .md\:justify-evenly {
    justify-content: space-evenly;
  }

  .md\:content-start {
    align-content: flex-start;
  }

  .md\:content-center {
    align-content: center;
  }

  .md\:content-end {
    align-content: flex-end;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:self-center {
    align-self: center;
  }

  .md\:self-end {
    align-self: flex-end;
  }

  .md\:self-stretch {
    align-self: stretch;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:flex-none {
    flex: none;
  }

  .md\:grow {
    flex-grow: 1;
  }

  .md\:shrink {
    flex-shrink: 1;
  }

  .md\:shrink-0 {
    flex-shrink: 0;
  }

  .md\:gap-1 {
    gap: 0.25rem;
  }

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: var(--spacing);
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mt-1 {
    margin-top: 0.25rem;
  }

  .md\:mt-2 {
    margin-top: 0.5rem;
  }

  .md\:mt-3 {
    margin-top: 0.75rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:mt-6 {
    margin-top: var(--spacing);
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .md\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .md\:mb-6 {
    margin-bottom: var(--spacing);
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:items-stretch {
    align-items: stretch;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:justify-around {
    justify-content: space-around;
  }

  .lg\:justify-evenly {
    justify-content: space-evenly;
  }

  .lg\:content-start {
    align-content: flex-start;
  }

  .lg\:content-center {
    align-content: center;
  }

  .lg\:content-end {
    align-content: flex-end;
  }

  .lg\:self-start {
    align-self: flex-start;
  }

  .lg\:self-center {
    align-self: center;
  }

  .lg\:self-end {
    align-self: flex-end;
  }

  .lg\:self-stretch {
    align-self: stretch;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:flex-none {
    flex: none;
  }

  .lg\:grow {
    flex-grow: 1;
  }

  .lg\:shrink {
    flex-shrink: 1;
  }

  .lg\:shrink-0 {
    flex-shrink: 0;
  }

  .lg\:gap-1 {
    gap: 0.25rem;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-6 {
    gap: var(--spacing);
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mt-1 {
    margin-top: 0.25rem;
  }

  .lg\:mt-2 {
    margin-top: 0.5rem;
  }

  .lg\:mt-3 {
    margin-top: 0.75rem;
  }

  .lg\:mt-4 {
    margin-top: 1rem;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem;
  }

  .lg\:mt-6 {
    margin-top: var(--spacing);
  }

  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .lg\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .lg\:mb-6 {
    margin-bottom: var(--spacing);
  }
}
