@charset "UTF-8";
:root {
  --bg: #ede3e3;
  /* fondo rosita/gris */
  --text: #0b0b0b;
  /* negro */
  --muted: rgba(0, 0, 0, .55);
  --line: rgba(0, 0, 0, .15);
  --radius: 20px;
  --maxw: 1060px;
  --bg: #0c0d12;
  --panel: #111325;
  --panel-2: #171a33;
  --text: #e8eaf2;
  --muted: #9aa3b2;
  --primary: #7c5cff;
  --accent: #ff4d9d;
  --ok: #2bd576;
  --danger: #ff647c;
  --br: #24263d;
  --radius: 14px;
  --shadow: 0 10px 30px rgb(0 0 0 / 35%);
}

* {
  box-sizing: border-box;
}

.expansive-blink {
  position: relative;
  display: inline-block;
}

.expansive-blink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: yellow;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  animation: expandBlink 1.5s infinite;
}

@keyframes expandBlink {
  0% {
    transform: translate(-50%, -50%) scale(0.25);
    opacity: 0.8;
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.main section {
  position: relative;
  padding: 0 5%;
}
.main .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

body {
  font-size: 14px;
}

.jumbutron {
  display: flex;
  gap: 32px;
  position: relative;
}
@media (max-width: 968px) {
  .jumbutron {
    flex-wrap: wrap;
  }
}
@media (max-width: 968px) {
  .jumbutron .jumbutron-right {
    width: 100%;
  }
}
.jumbutron .header {
  display: flex;
  justify-content: space-between;
}
.jumbutron .header .dropdown {
  display: none;
}
.jumbutron .header .dropdown-menu {
  left: unset;
  right: 0;
}
@media (max-width: 968px) {
  .jumbutron .header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }
}
@media (max-width: 720px) {
  .jumbutron .header .dropdown {
    display: block;
  }
  .jumbutron .header .header-actions {
    display: none !important;
  }
}
.jumbutron .header .logo img {
  width: 120px;
  margin-top: 4px;
}
.jumbutron .header .header-actions {
  display: flex;
  gap: 8px;
  height: 38px;
}
.jumbutron .header .header-actions .btn-primary {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #000;
  border: 1px solid #ddced3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0);
}
.jumbutron .main-text {
  margin-top: 120px;
}
@media (max-width: 968px) {
  .jumbutron .main-text {
    margin-top: 60px;
  }
}

.main-text {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 82px;
  font-weight: 500;
  line-height: 78px;
}

.secondary-text {
  color: #99948f;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 120%;
}

.workflow {
  display: flex;
  gap: 32px;
}
@media (max-width: 720px) {
  .workflow {
    flex-wrap: wrap;
  }
}

.card {
  display: flex;
  background-color: lightblue;
  transform-origin: 0 100%;
  color: #fff;
  background-color: #000;
  background-image: url(./assets/bg-1.jpg);
  background-position: 0 0;
  border: 1px solid #0813ff;
  border-radius: 19px;
  width: 390px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transform: rotate(0);
  box-shadow: inset 0 2px 1px rgba(95, 95, 95, 0.5019607843), inset 1px 1px 0.2px rgba(255, 255, 255, 0.6196078431);
  background-size: cover;
}
@media (max-width: 968px) {
  .card {
    width: 100%;
  }
}
.card .main-text {
  letter-spacing: -1px;
  font-size: 50px;
  font-weight: 500;
  line-height: 100%;
  color: white;
}
.card .secondary-text {
  color: white;
  margin-top: 16px;
  font-size: 16px;
  line-height: 110%;
}
.card .cta {
  color: #000;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.2s;
  line-height: inherit;
  cursor: pointer;
  border: 0;
  padding: 15px 15px;
  text-decoration: none;
  display: inline-block;
}
.card .card-cta-section {
  color: #fff;
  align-items: center;
  margin-top: 32px;
  text-decoration: none;
  display: flex;
  gap: 12px;
}
.card .card-cta-section .fa-calendar, .card .card-cta-section .fa-paper-plane, .card .card-cta-section .fa-whatsapp {
  font-size: 32px;
}
.card .card-cta-section img {
  width: 50px;
}
.card .card-cta-section .card-cta-body {
  cursor: pointer;
}
.card .card-cta-section .card-cta-body .main-text {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  display: block;
  margin: 0px;
}
.card .card-cta-section .card-cta-body .secondary-text {
  color: rgba(255, 255, 255, 0.5294117647);
  font-size: 14px;
  line-height: 20px;
}
.card .card-cta-section .arrow {
  background-color: white;
  border-radius: 100%;
  padding: 6px 10px;
  color: #000;
  margin-left: auto;
}

.card-work {
  background-color: #fff;
  background-image: url(https://cdn.prod.website-files.com/5837424ae11409586f837994/678566be2e0d80a12b14b201_Group%201171274549.jpg);
  background-position: 0 0;
  background-size: cover;
  border-radius: 19px;
  height: 440px;
  position: relative;
  overflow: hidden;
  width: 33%;
}
@media (max-width: 720px) {
  .card-work {
    width: 100%;
  }
}
.card-work {
  display: flex;
  flex-direction: column;
}
.card-work .card-image {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.card-work .card-image i {
  font-size: 130px;
}
.card-work .card-body {
  margin-top: auto;
  background-image: linear-gradient(rgba(255, 219, 1, 0) -3% 3%, rgba(255, 219, 1, 0.7490196078) 28%, rgba(255, 219, 1, 0.8588235294) 57%, #ffdb01 100%, #ffdb01);
  height: 200px;
  padding: 74px 32px 32px;
  inset: auto 0% 0%;
  flex: unset;
}
.card-work .card-body .title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
}
.card-work .card-body .description {
  color: rgba(0, 0, 0, 0.5490196078);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}

.card-cta-btn {
  color: #fff;
  background-color: #000;
  border: 1px rgba(255, 255, 255, 0.2);
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: 3px 16px 3px 4px;
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
}
.card-cta-btn .dot {
  border-radius: 100%;
  padding: 2px 6px;
  padding-bottom: 6px;
}
.card-cta-btn .dot i {
  font-size: 10px;
  color: yellow;
}
.card-cta-btn .text {
  font-size: 14px;
  line-height: 20px;
  color: white;
}

.div-block-5 {
  color: rgba(255, 255, 255, 0.4588235294);
  border: 1px solid #1d1d1d;
  border-radius: 4px;
  padding: 10px;
  font-size: 9px;
  line-height: 11px;
}

.catch-phrase {
  text-align: center;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.catch-phrase .text-phrase {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Figtree, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 100%;
}

.text-italics {
  letter-spacing: 0;
  font-family: Seriouslynostalgicfnit Reg, Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.core .story-text {
  text-align: center;
  border: 1px dashed #ccbfc4;
  border-radius: 19px;
  max-width: 750px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 43px;
}
.core .story-text p {
  max-width: 560px;
  line-height: 140%;
  color: #99948f;
  margin: 0 auto;
  font-size: 20px;
}

.membership-benefits .mini-card-wrapper {
  padding-top: 60px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.membership-benefits .mini-card-wrapper .mini-card {
  width: 200px;
}
.membership-benefits .mini-card-wrapper .mini-card .mini-card-image {
  background-image: url(./assets/bg-card-1.png);
  background-position: 0 0;
  background-size: cover;
  background-color: #fff;
  border-radius: 19px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin-bottom: 16px;
  padding: 46px;
  display: flex;
  overflow: hidden;
}
.membership-benefits .mini-card-wrapper .mini-card .mini-card-image i {
  font-size: 80px;
  color: white;
}
.membership-benefits .mini-card-wrapper .mini-card .card2 {
  background-image: url(./assets/bg-card-2.png);
}
.membership-benefits .mini-card-wrapper .mini-card .card3 {
  background-image: url(./assets/bg-card-3.png);
}
.membership-benefits .mini-card-wrapper .mini-card .card4 {
  background-image: url(./assets/bg-card-4.png);
}
.membership-benefits .mini-card-wrapper .mini-card .card5 {
  background-image: url(./assets/bg-card-5.png);
}
.membership-benefits .mini-card-wrapper .mini-card .mini-card-title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: 110%;
}
.membership-benefits .mini-card-wrapper .mini-card .mini-card-subtext {
  color: #99948f;
  font-size: 14px;
  line-height: 16px;
}

.member-card {
  z-index: -1;
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  width: 310px;
  position: absolute;
  inset: 0% -27% auto auto;
  transform: translate3d(0px, -15.9164px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-5.57074deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  will-change: transform;
  font-size: 120px;
}

.section-header {
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: Ocrastd, Arial, sans-serif;
  font-size: 10px;
}

.center-section {
  text-align: center;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

.container:has(.core) {
  padding-bottom: 0px;
}
.container:has(.membership-benefits) {
  padding-top: 0px;
}
.container:has(.catch-phrase), .container:has(.offer) {
  padding-bottom: 0px;
}

.pricing-card {
  transform-origin: 10% 70%;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 19px;
  flex: 1;
}
@media (max-width: 968px) {
  .pricing-card {
    width: 100%;
    flex: unset;
  }
}
.pricing-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.2509803922), 0 1px 2px rgba(0, 0, 0, 0.3019607843), 0 0 #000, inset 0 2px 1px rgba(255, 255, 255, 0.5019607843), inset 1px 1px 0.25px rgba(255, 255, 255, 0.3019607843);
}
.pricing-card .pricing-card-title {
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px dashed #fff;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
}
.pricing-card .pricing-card-price {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 40px;
  display: flex;
}
.pricing-card .pricing-card-price h2 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 56px;
  font-weight: 500;
  line-height: 100%;
  color: white;
}
.pricing-card .pricing-card-price .frequency {
  font-size: 14px;
  line-height: 20px;
}
.pricing-card .pricing-card-body {
  background-image: linear-gradient(#282727, #1b1b1b);
  border-bottom: 1px solid #000;
  border-radius: 8px;
  margin-top: 32px;
  padding: 32px;
  position: relative;
  box-shadow: inset 0 1px 0.25px rgba(255, 255, 255, 0.1607843137), inset 0 2px 1px rgba(255, 255, 255, 0.1098039216);
}
.pricing-card .pricing-card-body .included {
  color: rgba(255, 255, 255, 0.4588235294);
  text-transform: uppercase;
  background-image: linear-gradient(#282727, #1b1b1b);
  border-bottom: 1px solid #000;
  border-radius: 4px;
  margin-top: 32px;
  padding: 8px;
  font-size: 9px;
  line-height: 11px;
  position: absolute;
  inset: -44px auto auto 32px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.3019607843), inset 0 1px 0.25px rgba(255, 255, 255, 0.3019607843), inset 0 2px 1px rgba(255, 255, 255, 0.1098039216);
}
.pricing-card .pricing-card-body .layout-grid {
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
}
.pricing-card .pricing-card-body .layout-grid .items {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}
.pricing-card .pricing-card-actions {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  display: flex;
}
.pricing-card .pricing-card-actions .join {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  background-image: linear-gradient(#282727, #1b1b1b);
  border-bottom: 1px solid #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 8px 24px 8px 8px;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  box-shadow: inset 0 1px 0.25px rgba(255, 255, 255, 0.1607843137), inset 0 2px 1px rgba(255, 255, 255, 0.1098039216);
}
.pricing-card .pricing-card-actions .join .icon {
  color: #ff5a00;
  background-color: #ff5a00;
  border: 1px solid rgba(255, 255, 255, 0.2117647059);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 15px;
  display: flex;
}
.pricing-card .pricing-card-actions .join .icon i {
  font-size: 20px;
  color: white;
}

.pc-2 {
  background-color: #ff5a00;
  border: 1px solid white;
}
.pc-2 .included {
  color: white !important;
  border: 1px solid white !important;
}
.pc-2 .div-block-5 {
  color: white;
  border: 1px solid white;
}

.pricing-cards-wrapper {
  z-index: 1;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-top: 60px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.join-today-card {
  border: 1px solid black;
  background-color: #fff;
  border-radius: 19px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 40%;
  min-height: 500px;
  padding: 40px;
  display: flex;
  position: relative;
}
.join-today-card .card-cta-btn {
  margin-bottom: 24px;
}
.join-today-card .card-header-tl {
  letter-spacing: -1px;
  font-size: 50px;
  font-weight: 500;
  line-height: 100%;
}

.btn-secondary {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #fff;
  background-image: linear-gradient(#444, #000);
  border: 1px solid #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3019607843), 0 0 #000, inset 1px 1px 0.25px rgba(255, 255, 255, 0.3019607843), inset 0 2px 1px rgba(255, 255, 255, 0.5019607843);
}

.offer {
  display: flex;
  gap: 32px;
}
.offer .recent-work {
  border: 1px solid black;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  background-color: #fff;
  border-radius: 19px;
  flex-flow: column;
  justify-content: space-between;
  width: 60%;
  min-height: 450px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
.offer .recent-work .helper-section {
  text-align: left;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
}
.offer .recent-work .helper-section .cards-ex-wrapper {
  gap: 10px;
  display: flex;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  position: static;
  inset: auto 60px 60px auto;
}
.offer .recent-work .helper-section .cards-ex-wrapper .card-ex {
  text-align: left;
  border: 1px solid #f3edef;
  border-radius: 12px;
  width: 50%;
  padding: 12px;
  line-height: 16px;
}
.offer .recent-work .helper-section .cards-ex-wrapper .card-ex .card-ex-header {
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  display: flex;
  gap: 6px;
}
.offer .recent-work .helper-section .cards-ex-wrapper .card-ex .card-ex-header .product-icon {
  border: 1px solid #e0d4d8;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  padding: 9px;
  display: flex;
}
.offer .recent-work .helper-section .cards-ex-wrapper .card-ex .card-ex-body p {
  max-width: 130px;
  margin-top: 6px;
  margin-bottom: 3px;
  font-weight: 500;
  text-align: left;
  line-height: 16px;
}
.offer .recent-work .helper-section .cards-ex-wrapper .card-ex .card-ex-footer img {
  width: 90px;
  margin-top: 4px;
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}
.offer .all-you-need {
  border: 1px solid black;
  text-align: center;
  background-color: #fff;
  border-radius: 19px;
  flex-flow: column;
  width: 100%;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.offer .all-you-need .chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}
.offer .all-you-need .chips-wrapper .chip {
  background-color: #fff;
  border: 1px dashed #e0d4d8;
  border-radius: 100vw;
  margin-left: 0;
  margin-right: 0;
  padding: 7px 16px;
}
.offer .all-you-need .focus-text {
  text-align: center;
}
.offer .all-you-need .helper-text {
  text-align: center;
}
.offer .focus-text {
  margin-bottom: 12px;
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
}
.offer .helper-text {
  text-align: left;
  margin-top: 8px;
  color: #99948f;
  margin-bottom: 0;
  font-family: Figtree, sans-serif;
  font-size: 20px;
  line-height: 120%;
}
.offer a {
  margin-top: 24px;
}

.benefits-wrapper {
  gap: 32px;
  display: flex;
  margin-top: 32px;
  padding-left: 40px;
  padding-right: 40px;
}
.benefits-wrapper .benefit-card {
  color: #000;
  background-color: rgba(252, 194, 18, 0);
  background-image: none;
  border: 1px dashed #d1c2c7;
  min-height: 0;
  border-radius: 19px;
  padding: 40px;
  overflow: hidden;
}
.benefits-wrapper .benefit-card .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 12px;
}
.benefits-wrapper .benefit-card .description {
  color: #99948f;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}

.faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 48px);
}
.faq .faq-title {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Figtree, sans-serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 78px;
  color: #000;
}

/* Título como en la imagen */
.faq__title {
  margin: 0 0 clamp(22px, 4vw, 44px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.faq__title .serif-italic {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(54px, 7vw, 104px);
  display: inline-block;
  margin-right: 0.18em;
}

.faq__title .sans-bold {
  font-weight: 800;
  font-size: clamp(54px, 7vw, 104px);
  display: inline-block;
}

.faq__title .big {
  display: block;
  font-weight: 800;
  font-size: clamp(74px, 9vw, 140px);
  margin-top: 0.06em;
}

/* Lista */
.accordion {
  border-top: 1px solid transparent;
  max-width: 400px;
}
@media (min-width: 768px) and (max-width: 968px) {
  .accordion {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .accordion {
    max-width: 100%;
  }
}
.accordion {
  /* para que el primer item se alinee bonito */
}

.acc-btn {
  width: 100%;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 500;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.2;
  font-size: 20px;
}

.acc-btn:focus-visible,
.acc-btn:focus {
  outline: unset;
}

/* Chevron */
.chev {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  transition: transform 0.22s ease;
  opacity: 0.9;
}

.acc-item.is-open .chev {
  transform: rotate(180deg);
}

/* Panel */
.acc-panel {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.26s ease;
  margin-bottom: 18px;
}

.acc-content {
  color: #99948f;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}

/* Un poquito más “aire” en desktop */
@media (min-width: 900px) {
  .acc-content {
    font-size: 17px;
  }
}
.hero-flex {
  z-index: 2;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 968px) {
  .hero-flex .book-card {
    width: 100%;
  }
}
.hero-flex .book-card .card {
  border: none;
  background-image: url(./assets/bg-card-6.png);
}
.hero-flex .book-card .card .fa-briefcase {
  font-size: 130px;
  margin-bottom: 24px;
  align-self: center;
}

.book {
  background-color: #000;
  max-height: none;
  padding: 0 5%;
  overflow: hidden;
}
.book .logo img {
  filter: invert(1);
}
.book .main-text {
  color: white;
}
.book .fake-footer {
  width: 100%;
}
.book .fake-footer .img-container {
  display: flex;
}
.book .fake-footer .img-container img {
  max-width: 526px;
  filter: brightness(0) invert(1);
}
.book .fake-footer .links-ctr {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}
.book .fake-footer .links-ctr .head a {
  color: #fff;
}
.book .fake-footer .links-ctr a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5019607843);
}
.book .jumbutron-right {
  width: 50%;
}
.book .jumbutron-right .div-block-38 {
  margin-bottom: 16px;
}
.book .jumbutron-right .div-block-38 .text-block-6 {
  color: #ff0084;
  background-color: #1b000e;
  border: 1px solid rgba(255, 0, 132, 0.1607843137);
  border-radius: 19px;
  padding: 20px 28px 20px 20px;
}
.book .jumbutron-right .div-block-38 .text-block-6 a {
  color: #ff0084;
  text-decoration: underline;
}
.book .jumbutron-left {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.book .jumbutron-left .fake-footer {
  margin-top: 168px;
}
@media (max-width: 968px) {
  .book .jumbutron-right {
    padding-bottom: 300px;
    width: 100%;
  }
  .book .jumbutron-left {
    width: 100%;
  }
  .book .fake-footer {
    position: absolute;
    bottom: 0px;
    padding-bottom: 20px;
  }
  .book .img-container {
    justify-content: center;
  }
}

.card-work-1 {
  background-image: url(./assets/bg-2.jpg);
}
.card-work-2 {
  background-image: url(./assets/bg-3.jpg);
  color: white;
}
.card-work-2 .card-body {
  background-image: linear-gradient(rgba(0, 0, 254, 0) -3% 3%, rgba(0, 0, 254, 0.7490196078) 28%, rgba(0, 0, 254, 0.8588235294) 57%, #0000fe 100%, #0000fe);
}
.card-work-2 .card-body .description {
  color: white;
}

.card-work-3 {
  background-image: url(./assets/bg-4.jpg);
  color: white;
}
.card-work-3 .card-body {
  background-image: linear-gradient(rgba(255, 90, 0, 0) -3% 3%, rgba(255, 90, 0, 0.7490196078) 28%, rgba(255, 90, 0, 0.8588235294) 57%, #ff5a00 100%, #ff5a00);
}
.card-work-3 .card-body .description {
  color: white;
}

.widget section.step {
  padding: 0px;
}
.widget .shell {
  max-width: 920px;
  margin: 32px auto;
  padding: 0 20px;
}
.widget .top h1 {
  margin: 0 0 6px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.widget .tz {
  margin: 0 0 18px;
  color: var(--muted);
}
.widget .progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  counter-reset: step;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  display: none;
}
.widget .progress li {
  background: #0f1124;
  border: 1px solid var(--br);
  border-radius: 999px;
  padding: 8px 12px;
  text-align: center;
  font-weight: 600;
  color: #cfd2ea;
  position: relative;
}
.widget .progress li.done {
  background: linear-gradient(90deg, #1a1d3c, #16183a);
  color: #fff;
  border-color: #30335a;
}
.widget .progress li.done::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #163c2a;
  color: #7bffb0;
  font-size: 12px;
}
.widget .progress[data-step="2"] li:nth-child(-n+1),
.widget .progress[data-step="3"] li:nth-child(-n+2),
.widget .progress[data-step="4"] li:nth-child(-n+3) {
  background: linear-gradient(90deg, #1a1d3c, #16183a);
  color: #fff;
  border-color: #30335a;
}
.widget .step {
  margin: 14px 0 28px;
}
.widget .hidden {
  display: none;
}
.widget .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--br);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.widget .plans {
  display: grid;
  gap: 12px;
}
.widget .radio {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  cursor: pointer;
}
.widget .radio:hover {
  outline: 2px solid rgba(255, 255, 255, 0.0784313725);
}
.widget .radio input {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.widget .radio div {
  display: flex;
  flex-direction: column;
}
.widget .radio strong {
  font-size: 16px;
}
.widget .radio .muted {
  color: var(--muted);
  font-size: 13px;
}
.widget .calendar-wrap {
  background: var(--panel);
  border: 1px solid var(--br);
  border-radius: var(--radius);
  padding: 14px;
}
.widget .cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.widget .cal-title {
  font-weight: 700;
  letter-spacing: 0.3px;
  color: white;
}
.widget .icon-btn {
  background: #171a33;
  border: 1px solid #2b2f54;
  color: #d6d8ee;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
}
.widget .icon-btn:hover {
  background: #1c2040;
}
.widget .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.widget .dow {
  text-align: center;
  color: #c7c9e2;
  font-size: 12px;
  opacity: 0.8;
}
.widget .dow.muted {
  opacity: 0.35;
}
.widget .days {
  display: contents;
}
.widget .day {
  background: #0f1124;
  border: 1px solid #25284b;
  color: #cfd2ea;
  border-radius: 10px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}
.widget .day.faded {
  opacity: 0.4;
}
.widget .day.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  filter: grayscale(1);
}
.widget .day.selected {
  outline: 2px solid #ff0084;
}
.widget .day.today::after {
  content: "•";
  position: absolute;
  bottom: 6px;
  color: #ff0084;
  font-size: 18px;
  line-height: 0;
}
.widget .slots-wrap {
  margin-top: 16px;
}
.widget .slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 52px;
}
.widget .slot {
  background: #171a33;
  border: 1px solid #2b2f54;
  color: #e4e6fb;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
}
.widget .slot:hover {
  background: #1c2040;
}
.widget .slot.selected {
  background: #ff0084;
  color: #fff;
  border: none;
}
.widget .slot.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.widget .form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.widget .form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  color: #99948f;
}
.widget input,
.widget textarea {
  background: #0f1124;
  border: 1px solid #25284b;
  color: #e8eaf2;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
}
.widget input:focus,
.widget textarea:focus {
  outline: 2px solid #ff0084;
  border-color: #3b3f74;
}
.widget .actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.widget .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #2b2f54;
  background: #171a33;
  color: #e6e8ff;
  font-weight: 700;
  cursor: pointer;
}
.widget .btn:hover {
  background: #1c2040;
}
.widget .btn.next {
  background: #ff0084;
  border: none;
}
.widget .btn.next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(1);
}
.widget .btn.ghost {
  background: transparent;
}
.widget .btn.secondary {
  background: #0f1124;
}
.widget .back {
  margin-right: auto;
}
.widget .confirm {
  padding: 16px;
}
.widget .summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px 16px;
  margin: 0;
}
.widget .summary dt {
  color: #aeb6c9;
  font-weight: 600;
}
.widget .summary dd {
  margin: 0;
}
.widget .add-to-calendar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.widget .add-to-calendar .btn {
  background: #0f1124;
}
@media (max-width: 720px) {
  .widget .form .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-text, .faq-title {
    font-size: 40px;
  }
  .book-card .main-text {
    font-size: 40px;
  }
  .faq-title {
    font-size: 40px !important;
  }
}
h1, h2, h3 {
  color: #99948f;
}/*# sourceMappingURL=app.css.map */