@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --site-blue-900: hsl(220 70% 15%);
  --site-blue-800: hsl(220 70% 20%);
  --site-blue-700: hsl(220 60% 25%);
  --site-blue-600: hsl(220 50% 35%);
  --site-blue-500: hsl(220 70% 30%);
  --site-orange-500: hsl(25 95% 55%);
  --site-orange-400: hsl(30 100% 60%);
  --site-gold-400: hsl(45 100% 50%);
  --site-red-600: hsl(0 75% 45%);
  --site-white: hsl(0 0% 100%);
  --site-white-soft: hsla(0, 0%, 100%, 0.9);
  --site-white-muted: hsla(0, 0%, 100%, 0.7);
  --site-gray-900: hsl(220 8% 18%);
  --site-radius: 0.375rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background-color: var(--site-blue-800);
  color: var(--site-white);
}

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

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

button,
textarea {
  font: inherit;
}

iframe {
  border: 0;
}

[hidden] {
  display: none !important;
}

.page {
  min-height: 100vh;
}

.page-about {
  background-color: var(--site-blue-800);
}

.section {
  position: relative;
}

.content-pad-x {
  padding-right: 1rem;
  padding-left: 1rem;
}

.content-4xl,
.content-5xl,
.content-6xl {
  margin: 0 auto;
}

.content-4xl {
  max-width: 56rem;
}

.content-5xl {
  max-width: 64rem;
}

.content-6xl {
  max-width: 72rem;
}

.hero-section {
  position: relative;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0.4) 0%,
    hsla(0, 0%, 0%, 0.3) 50%,
    hsla(220, 70%, 20%, 0.8) 100%
  );
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--site-radius);
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.cta-contact-link:hover,
.cta-contact-link:focus-visible {
  opacity: 0.92;
}

.button:active,
.cta-contact-link:active {
  transform: translateY(1px);
}

.button-icon,
.overview-icon,
.question-icon,
.benefit-icon,
.footer-location-icon,
.about-card-icon,
.cta-contact-icon {
  flex: 0 0 auto;
}

.button-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--site-orange-400) 0%, var(--site-orange-500) 100%);
  color: var(--site-white);
}

.button-back-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.5rem 1rem;
  background-color: hsla(0, 0%, 0%, 0.3);
  color: var(--site-white);
  backdrop-filter: blur(8px);
}

.button-return-home {
  padding: 0.75rem 1.5rem;
  border: 2px solid hsl(30 100% 50%);
  font-weight: 600;
}

.section-welcome {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.welcome-panel {
  border-left: 0.5rem solid transparent;
  border-radius: 0 var(--site-radius) var(--site-radius) 0;
  padding: 1rem 0 1rem 1.5rem;
}

.welcome-copy {
  margin: 0;
  color: var(--site-white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.625;
}

.section-overview {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.overview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  color: var(--site-white);
}

.overview-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: min(100%, 17rem);
  padding: 1rem 1.5rem;
  border-radius: var(--site-radius);
  background-color: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
}

.overview-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.overview-copy p {
  margin: 0;
}

.overview-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.overview-label {
  font-size: 0.875rem;
  color: var(--site-white-soft);
}

.section-schedule {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.schedule-title {
  margin: 0 0 1rem;
  color: var(--site-white);
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.schedule-subtitle {
  max-width: 44rem;
  margin: 0 auto 3rem;
  color: var(--site-white-soft);
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.625;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.schedule-entry {
  display: block;
}

.schedule-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-left: 4px solid transparent;
  border-radius: var(--site-radius);
}

.schedule-image-frame {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--site-radius);
}

.schedule-image {
  width: auto;
  height: 6rem;
  border-radius: var(--site-radius);
  object-fit: cover;
}

.schedule-copy-block {
  min-width: 0;
  flex: 1 1 auto;
}

.schedule-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.schedule-kicker {
  margin: 0 0 0.5rem;
  color: var(--site-orange-400);
  font-size: 1.125rem;
  font-weight: 700;
}

.schedule-meta-row .schedule-kicker {
  margin-bottom: 0;
}

.schedule-time {
  margin: 0;
  color: var(--site-white-muted);
  font-size: 0.875rem;
}

.schedule-card-title {
  margin: 0 0 0.5rem;
  color: var(--site-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.schedule-card-description {
  margin: 0;
  color: var(--site-white-muted);
  font-style: italic;
  line-height: 1.625;
}

.schedule-watch-note {
  margin: 0.5rem 0 0;
  color: var(--site-orange-400);
  font-size: 0.875rem;
  font-weight: 600;
}

.schedule-video-frame {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: var(--site-radius);
}

.responsive-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.responsive-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.schedule-more-callout {
  margin-top: 2.5rem;
  text-align: center;
}

.schedule-more-callout p {
  margin: 0;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 1.5rem;
  font-weight: 700;
}

.section-cta {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.cta-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  opacity: 0.15;
  filter: blur(60px);
}

.cta-glow-top-left {
  top: 0;
  left: 0;
  background: radial-gradient(circle, hsl(30 100% 60%) 0%, transparent 70%);
}

.cta-glow-bottom-right {
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, hsl(45 100% 50%) 0%, transparent 70%);
}

.cta-shell {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-active-intro {
  margin-bottom: 2.5rem;
}

.cta-hero-title {
  margin: 0 0 1.5rem;
  color: var(--site-white);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
}

.cta-hero-copy {
  max-width: 48rem;
  margin: 0 auto 3rem;
  color: var(--site-white);
  font-size: 1.25rem;
  line-height: 1.5;
}

.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cta-contact-link {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--site-radius);
  background-color: hsla(0, 0%, 100%, 0.1);
  color: var(--site-white);
  backdrop-filter: blur(8px);
}

.cta-contact-link span {
  font-size: 1.125rem;
  font-weight: 600;
}

.cta-contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--site-orange-400);
}

.cta-share-stack {
  display: grid;
  gap: 1.5rem;
}

.cta-share-title {
  margin: 0;
  color: var(--site-white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.cta-share-lead {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--site-white-soft);
  font-size: 1.125rem;
  line-height: 1.625;
}

.cta-share-panel {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: var(--site-radius);
  background-color: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
}

.cta-share-label {
  display: block;
  margin: 0 0 0.75rem;
  color: var(--site-white);
  font-weight: 600;
  text-align: left;
}

.cta-share-textarea {
  width: 100%;
  min-height: 7.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: var(--site-radius);
  background-color: var(--site-white);
  color: var(--site-gray-900);
  resize: none;
}

.cta-primary-action {
  display: flex;
  justify-content: center;
}

.button-share-toggle {
  width: 100%;
  max-width: 14rem;
  padding: 0.75rem 1.5rem;
}

.cta-share-options {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}

.cta-share-options-label {
  margin: 0 0 1rem;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
}

.cta-share-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.button-facebook,
.button-whatsapp,
.button-sms,
.button-email {
  padding: 0.75rem 1rem;
  color: var(--site-white);
}

.button-facebook {
  background-color: #1877f2;
}

.button-whatsapp {
  background-color: #25d366;
}

.button-sms {
  background-color: #9333ea;
}

.button-email {
  background-color: var(--site-orange-400);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.social-icon-facebook,
.social-icon-whatsapp {
  color: currentColor;
}

.section-questions,
.section-benefits {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.feature-card {
  border: 4px solid transparent;
  border-radius: var(--site-radius);
  padding: 2rem;
}

.feature-card-title {
  margin: 0 0 2rem;
  color: var(--site-white);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.question-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--site-radius);
}

.question-item p {
  margin: 0;
  color: var(--site-white);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.question-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--site-orange-400);
}

.feature-card-action {
  text-align: center;
}

.button-learn-more {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

.benefits-card {
  position: relative;
}

.benefits-stamp {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  border: 4px solid var(--site-white);
  border-radius: 999px;
  background-color: var(--site-red-600);
  color: var(--site-white);
  font-size: 1.5rem;
  font-weight: 900;
  transform: rotate(12deg);
}

.benefits-title {
  margin: 0 0 2rem;
  color: var(--site-white);
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.benefit-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--site-radius);
}

.benefit-icon {
  width: 2rem;
  height: 2rem;
  color: var(--site-gold-400);
}

.benefit-row h3,
.benefit-row p {
  margin: 0;
}

.benefit-row h3 {
  color: var(--site-white);
  font-size: 1.125rem;
  font-weight: 700;
}

.benefit-row p {
  margin-top: 0.25rem;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.5;
}

.section-about-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-card-stack {
  display: grid;
  gap: 2rem;
}

.about-card {
  border: 4px solid transparent;
  border-radius: var(--site-radius);
  padding: 2rem;
}

.about-card-heading {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--site-orange-400);
}

.about-card-title {
  margin: 0;
  color: var(--site-white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-copy {
  margin: 0 0 1rem;
  color: var(--site-white-soft);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-copy:last-of-type {
  margin-bottom: 0;
}

.about-copy-emphasis {
  padding-top: 1rem;
  color: var(--site-white);
  font-weight: 600;
}

.about-list {
  margin: 0;
  padding: 0;
  color: var(--site-white-soft);
  font-size: 1.125rem;
  line-height: 1.7;
  list-style: none;
}

.about-list li {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.about-list-bullet {
  color: var(--site-orange-400);
}

.about-list-ordered {
  padding-left: 1.5rem;
  list-style: decimal;
}

.about-list-ordered li {
  display: list-item;
  gap: 0;
}

.about-bottom-action {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.site-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

.footer-heading,
.footer-subheading {
  margin: 0 0 1.5rem;
  color: var(--site-white);
  font-weight: 700;
}

.footer-heading {
  font-size: 1.5rem;
}

.footer-subheading {
  font-size: 1.25rem;
}

.footer-location-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-location-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--site-orange-400);
}

.footer-location-copy p {
  margin: 0;
  color: var(--site-white);
  line-height: 1.5;
}

.footer-location-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-map-frame {
  height: 16rem;
  overflow: hidden;
  border-radius: var(--site-radius);
}

.footer-copy {
  margin: 0 0 0.5rem;
  color: var(--site-white-muted);
  line-height: 1.5;
}

.footer-copy a,
.footer-nav-column a,
.footer-nav-mobile a {
  color: var(--site-white);
}

.footer-copy a:hover,
.footer-nav-column a:hover,
.footer-nav-mobile a:hover {
  text-decoration: underline;
}

.footer-copy-strong {
  color: var(--site-white);
  font-weight: 600;
}

.footer-nav-desktop {
  display: none;
  margin-top: 2rem;
}

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

.footer-nav-column a {
  color: var(--site-white-muted);
}

.footer-nav-column a[aria-current="page"],
.footer-nav-mobile a[aria-current="page"] {
  color: var(--site-white);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}

.footer-nav-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-divider {
  color: hsla(0, 0%, 100%, 0.4);
}

.footer-copyright {
  margin: 0;
  color: hsla(0, 0%, 100%, 0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .welcome-copy {
    font-size: 1.5rem;
  }

  .schedule-title {
    font-size: 2.25rem;
  }

  .cta-hero-title,
  .feature-card-title {
    font-size: 3rem;
  }

  .cta-hero-copy {
    font-size: 1.5rem;
  }

  .cta-share-title {
    font-size: 1.875rem;
  }

  .button-share-toggle {
    width: auto;
  }

  .benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav-desktop {
    display: block;
  }

  .footer-nav-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .feature-card,
  .about-card {
    padding: 1.5rem;
  }

  .button-learn-more {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .benefits-stamp {
    top: -1rem;
    right: -0.5rem;
    width: 5.5rem;
    height: 5.5rem;
    font-size: 1.125rem;
  }

  .schedule-card {
    gap: 1rem;
    padding: 1rem;
  }

  .schedule-image {
    height: 5rem;
  }

  .cta-contact-row {
    gap: 1rem;
  }

  .cta-contact-link {
    width: 100%;
    justify-content: center;
  }

  .about-card-title,
  .benefits-title {
    padding-right: 3rem;
  }
}
/*# sourceMappingURL=app.d4cebd91.css.map */