@charset "UTF-8";
/* =========================================================
   Design Tokens
   Fonte: DESIGN_SYSTEM.md
   ========================================================= */
/* =========================================================
   Colors
   ========================================================= */
/* Brand */
/* Brand Filter */
/* Feedback / Semantic */
/* Neutral Palette */
/* =========================================================
   Font Families
   ========================================================= */
/* =========================================================
   Typography
   ========================================================= */
/* Font Sizes (REM) */
/* Font Weights */
/* Line Heights */
/* =========================================================
   Spacing (4px scale / REM)
   ========================================================= */
/* =========================================================
   Border Radius
   ========================================================= */
/* =========================================================
   Shadows
   ========================================================= */
/* =========================================================
   Z-Index Scale
   ========================================================= */
/* =========================================================
   Breakpoints
   ========================================================= */
/* Map para uso em mixins (respond-to, hide-until, etc) */
/* =========================================================
   Transitions
   ========================================================= */
/* PX → REM */
/* Responsive */
/* Hide until breakpoint */
/* Layout */
/* Shadows */
/* Transition */
/* Effects */
/* =========================================================
   Utilities: Hidden helpers
   ========================================================= */
/* =========================================================
   Modern CSS Reset
   Baseado em: Andy Bell + Tailwind + boas práticas
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements inherit font */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Buttons */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Lists — reset apenas quando usadas como layout */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Text overflow safety */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2937;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0073aa;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
  color: #f89622;
}

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

.text-left {
  text-align: left;
}

p ~ p, p ~ ul, p ~ ol, p ~ h2, p ~ h3, p ~ h4, p ~ h5 {
  margin-top: 1rem;
}

ul,
ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.75rem;
  width: 100%;
  z-index: 110;
  background-color: #ffffff;
  border-bottom: 1px solid #d1d5db;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .header {
    top: 2.5rem;
    height: 5rem;
  }
}
.header__top {
  display: none;
}
@media (min-width: 768px) {
  .header__top {
    display: block;
    background-color: #0073aa;
    border-bottom: 1px solid rgba(0, 115, 170, 0.12);
    padding: 0.5rem 0;
    color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 2.5rem;
    z-index: 110;
  }
}
.header__top-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .header__top-inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .header__top-inner {
    padding-inline: 4rem;
  }
}
.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #ffffff;
}
.header__phone a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .header__phone a {
    transition: none;
  }
}
.header__phone a:hover {
  color: #f89622;
}
.header__phone a:hover .svg {
  filter: invert(72%) sepia(16%) saturate(6084%) hue-rotate(344deg) brightness(100%) contrast(95%);
}
.header__phone a .svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(100%);
}
.header__top-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__top-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  transition: color 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .header__top-menu a {
    transition: none;
  }
}
.header__top-menu a .svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(100%);
}
.header__top-menu a:hover {
  color: #f89622;
}
.header__top-menu a:hover .svg {
  filter: invert(72%) sepia(16%) saturate(6084%) hue-rotate(344deg) brightness(100%) contrast(95%);
}
.header__middle-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .header__middle-inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .header__middle-inner {
    padding-inline: 4rem;
  }
}
.header__middle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__logo {
  flex-shrink: 0;
  margin-right: auto;
}
.header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo a picture,
.header__logo a img {
  height: 3.75rem;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .header__logo a picture,
  .header__logo a img {
    height: 5rem;
  }
}
.header input[type=checkbox] {
  display: none;
}
.header input[type=checkbox]:checked ~ .header__toggle .header__toggle-icon {
  background-color: transparent;
}
.header input[type=checkbox]:checked ~ .header__toggle .header__toggle-icon::before {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.12s ease-in-out, transform 0.15s ease-in-out 0.12s, background 0.1s ease-in-out 0.12s;
}
.header input[type=checkbox]:checked ~ .header__toggle .header__toggle-icon::after {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.12s ease-in-out, transform 0.15s ease-in-out 0.12s, background 0.1s ease-in-out 0.12s;
}
.header input[type=checkbox]:checked ~ .header__nav {
  left: 0;
  right: 0;
  visibility: visible;
  opacity: 1;
  display: block;
}
.header__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 3.125rem;
  cursor: pointer;
  margin-left: auto;
  transition: transform 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .header__toggle {
    transition: none;
  }
}
@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle-icon {
  position: relative;
  width: 1.5rem;
  height: 0.125rem;
  display: block;
  background-color: #f89622;
  border-radius: 0.25rem;
}
.header__toggle-icon::before, .header__toggle-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #f89622;
  border-radius: 0.25rem;
  transition: top 0.15s ease-in-out 0.12s, transform 0.12s ease-in-out;
}
.header__toggle-icon::before {
  top: -0.5rem;
}
.header__toggle-icon::after {
  top: 0.5rem;
  right: 0;
}
.header__nav {
  display: none;
  position: absolute;
  top: 3.75rem;
  left: 0;
  right: -100%;
  bottom: 0;
  background-color: #0073aa;
  z-index: 1000;
  overflow-y: auto;
  width: 100%;
  height: calc(100vh - 3.75rem);
  padding: 1rem 2rem;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms ease-in-out;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    background-color: #ffffff;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    position: relative;
    right: 0;
    top: 0;
    height: auto;
    width: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu--top {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .header__menu--top {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .header__menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 2rem;
  }
}
.header .menu-item {
  position: relative;
}
.header .menu-item.current_page_item .header__nav-link {
  color: #f89622;
}
.header .menu-item.current_page_item .header__nav-link::after {
  width: 100%;
}
.header__nav-link {
  display: block;
  padding: 1rem 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .header__nav-link {
    transition: none;
  }
}
@media (min-width: 768px) {
  .header__nav-link {
    color: #1f2937;
    padding: 0;
    height: 1.875rem;
  }
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #020454;
  transition: width 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .header__nav-link::after {
    transition: none;
  }
}
@media (min-width: 768px) {
  .header__nav-link::after {
    width: 0;
    height: 2px;
    bottom: 0;
    background-color: #f89622;
  }
}
.header__nav-link:hover {
  color: #0073aa;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.header__submenu.visible {
  display: block;
}
.header__submenu-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #1f2937;
  text-decoration: none;
  font-weight: 400;
  transition: background-color color;
}
@media (prefers-reduced-motion: reduce) {
  .header__submenu-link {
    transition: none;
  }
}
.header__submenu-link:hover {
  background-color: #f9fafb;
  color: #0073aa;
}

.footer {
  background-color: #0073aa;
  color: #ffffff;
  padding: 4rem 0 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.footer .svg {
  display: none;
}
.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .footer__inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__inner {
    padding-inline: 4rem;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer__section p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #ffffff;
  margin: 0 0 1rem 0;
}
.footer__section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .footer__section a {
    transition: none;
  }
}
.footer__section a:hover {
  color: #f89622;
}
.footer__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.875rem;
}
.footer__info-text {
  flex: 1;
  color: #ffffff;
  line-height: 1.75;
}
.footer__info-text a {
  color: #ffffff;
  text-decoration: none;
}
.footer__info-text a:hover {
  text-decoration: underline;
  color: #f89622;
}
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.footer__hours-item .day {
  font-weight: 500;
  color: #ffffff;
}
.footer__hours-item .time {
  color: #d1d5db;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu-item {
  margin: 0;
  padding: 0;
}
.footer__menu-link {
  display: block;
  padding: 0.25rem 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .footer__menu-link {
    transition: none;
  }
}
.footer__menu-link:hover {
  color: #f89622;
  padding-left: 0.25rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(248, 150, 34, 0.08);
  border-radius: 9999px;
  color: #f89622;
  text-decoration: none;
  font-size: 1.125rem;
  transition: background-color transform;
}
@media (prefers-reduced-motion: reduce) {
  .footer__social-link {
    transition: none;
  }
}
.footer__social-link:hover {
  background-color: #f89622;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer__bottom {
  padding: 0;
  background-color: #f89622;
  color: #ffffff;
  padding: 1rem 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  color: #ffffff;
}
.footer__credits {
  font-size: 0.75rem;
  color: #ffffff;
}
.footer__credits a {
  color: #ffffff;
  text-decoration: underline;
}
.footer__credits a:hover {
  color: #ffffff;
  text-decoration: none;
}
.footer__back-to-top {
  margin-left: auto;
  background: none;
  border: none;
  color: #f89622;
  cursor: pointer;
  padding: 0;
  font-size: 1.125rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .footer__back-to-top {
    transition: none;
  }
}
.footer__back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.footer__back-to-top.visible:hover {
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .footer__back-to-top {
    margin-left: 0;
  }
}
.footer--dark {
  background-color: #000000;
}
.footer--dark .footer__bottom {
  border-top-color: #111827;
}
.footer--light {
  background-color: #f3f4f6;
  color: #1f2937;
}
.footer--light .footer__section-title {
  color: #1f2937;
}
.footer--light .footer__menu-link,
.footer--light .footer__info-text,
.footer--light .footer__copyright,
.footer--light .footer__credits {
  color: #4b5563;
}
.footer--light .footer__social-link {
  background-color: rgba(0, 115, 170, 0.1);
  color: #0073aa;
}
.footer--light .footer__social-link:hover {
  background-color: #0073aa;
  color: #ffffff;
}
.footer--no-bottom .footer__bottom {
  display: none;
}

.content {
  padding: 2rem 0;
}
.content--page {
  background-color: #e5e7eb;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  transition: fill 0.2s ease, opacity 0.2s ease;
}
.icon--lg {
  width: 1.5em;
  height: 1.5em;
}
.icon--xl {
  width: 2em;
  height: 2em;
}
.icon--spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid currentColor;
  background-color: transparent;
  color: inherit;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out;
}
.btn:hover {
  color: #000000;
  background-color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}
.btn--primary {
  background-color: #0073aa;
  color: #ffffff;
}
.btn--secondary {
  background-color: #f89622;
  color: #ffffff;
}
.btn--white {
  background-color: #ffffff;
  color: #000000;
}
.btn--white:hover {
  color: #ffffff;
  background-color: #0073aa;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}
.btn--raised {
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out, box-shadow 250ms ease-in-out, transform 150ms ease-in-out;
}
.btn--raised:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
  --color-title: #ffffff;
  --color-text: #ffffff;
  --color-strong: #f89622;
  --color-gradient-start: #0073aa;
  --color-gradient-end: #020454;
}

.hero__items {
  display: flex;
  min-height: 80vh;
}

.hero-card {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex 0.4s ease;
}
.hero-card:hover, .hero-card:focus-within {
  flex: 2.5;
}
.hero-card:hover .hero-card__description,
.hero-card:hover .hero-card__cta, .hero-card:focus-within .hero-card__description,
.hero-card:focus-within .hero-card__cta {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  pointer-events: auto;
}
.hero-card--orange {
  --color-title: #ffffff;
  --color-text: #ffffff;
  --color-strong: #0073aa;
  --color-gradient-start: #f89622;
  --color-gradient-end: #ff6600;
}
.hero-card--gray {
  --color-title: #ffffff;
  --color-text: #ffffff;
  --color-gradient-start: #4b5563;
  --color-gradient-end: #111827;
}

.hero-card__media {
  position: absolute;
  inset: 0;
}
.hero-card__media picture {
  height: 100%;
}
.hero-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.75;
  background: linear-gradient(to bottom, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.hero-card__content {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 3rem);
  max-width: 420px;
  color: var(--color-text);
}

.hero-card__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-title);
}

.hero-card__description {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-card__description strong {
  color: var(--color-strong);
}
.hero-card__description {
  transition-delay: 0.05s;
}

.hero-card__cta {
  display: inline-block;
  transition-delay: 0.12s;
}

@media (min-width: 768px) {
  .hero-card__description,
  .hero-card__cta {
    opacity: 0;
    transform: translateY(8px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: background-color 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .hero__items {
    flex-direction: column;
    min-height: auto;
  }
  .hero-card {
    flex: none;
    min-height: 50vh;
  }
  .hero-card:hover, .hero-card:focus-within {
    flex: none;
  }
}
.image-header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-header__media {
  position: relative;
  width: 100%;
  min-height: 350px;
  max-height: 450px;
}
.image-header__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 1920px;
  margin: 0 auto;
}
.image-header__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #0073aa, #020454);
  mix-blend-mode: multiply;
  opacity: 0.75;
  max-width: 1920px;
  margin: 0 auto;
}

.image-header__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.image-header__title {
  max-width: 960px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  text-align: center;
  font-weight: 700;
}

.image-header__description {
  max-width: 960px;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}

/* Mobile */
@media (max-width: 767px) {
  .image-header__media {
    min-height: 35vh;
    max-height: 55vh;
  }
}
.nicho {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.nicho__media {
  position: relative;
  width: 100%;
  min-height: 40vh;
  max-height: 65vh;
}
.nicho__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 1920px;
  margin: 0 auto;
}
.nicho__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #0073aa, #020454);
  mix-blend-mode: multiply;
  opacity: 0.75;
  max-width: 1920px;
  margin: 0 auto;
}

.nicho__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
}

.nicho__title {
  max-width: 600px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  text-align: left;
  font-weight: 700;
}

.nicho__subtitle {
  max-width: 600px;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  text-align: left;
}
.nicho__subtitle strong {
  color: #f89622;
}

.nicho__description {
  margin: 0 0 1rem;
}

.nicho__box-alert {
  background-color: #fff;
  color: #000;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem auto;
}
.nicho__box-alert a {
  color: #f89622;
  text-decoration: underline;
}
.nicho__box-alert h3 {
  color: #f89622;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .nicho__box-alert {
    position: absolute;
    top: 50%;
    right: 2rem;
    max-width: 300px;
    transform: translateY(-50%);
  }
}

.nicho__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.nicho__actions .btn {
  width: 100%;
}
@media (min-width: 768px) {
  .nicho__actions {
    flex-direction: row;
  }
  .nicho__actions .btn {
    width: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .nicho__media {
    min-height: 35vh;
    max-height: 55vh;
  }
}
.vantagens {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: #f89622;
}

.vantagens__header {
  width: 100%;
  margin-bottom: 3rem;
}

.vantagens__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.vantagens__title strong {
  color: #0073aa;
}

.vantagens__description {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}
.vantagens__description strong {
  color: #0073aa;
}

.vantagens__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .vantagens__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 12.5rem);
    gap: 2rem;
    overflow: visible;
    scroll-snap-type: none;
    justify-content: center;
    padding-inline: 0;
  }
}

.vantagem-item {
  display: flex;
  flex: 0 0 200px;
  padding: 0.75rem;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid #6b7280;
  border-radius: 0.5rem;
  background-color: #ffffff;
  min-height: 16.875rem;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .vantagem-item {
    flex: initial;
  }
}

.vantagem-item__icon .icon {
  width: 40px;
  height: 40px;
  filter: invert(72%) sepia(16%) saturate(6084%) hue-rotate(344deg) brightness(100%) contrast(95%);
  margin-bottom: 1rem;
}

.vantagem-item__title {
  color: #0073aa;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vantagem-item__description {
  font-size: 0.95rem;
}

.plans-preview {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.plans-preview__header {
  max-width: 820px;
  margin: 0 auto 3rem;
}

.plans-preview__header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.plans-preview__header h2 strong {
  color: #ff7a00;
}

.plans-preview__header span {
  color: #ff7a00;
}

.plans-preview__header p {
  font-size: 1rem;
  color: #555;
}

.plans-preview__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.plan-card--featured {
  border: 2px solid #ff7a00;
  transform: scale(1.03);
}

.plan-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff7a00;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.plan-card__price {
  margin-bottom: 1rem;
}

.plan-card__price strong {
  font-size: 2rem;
  color: #111;
}

.plan-card__price span {
  display: block;
  font-size: 0.85rem;
  color: #777;
}

.plan-card__highlight {
  font-size: 0.9rem;
  color: #0066cc;
  margin-bottom: 1.5rem;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.plan-card__features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.plan-card__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff7a00;
}

.plans-preview__note {
  font-size: 0.75rem;
  color: #666;
}

.beneficios {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #0073aa;
}

.beneficios__header {
  width: 100%;
  margin-bottom: 3rem;
}

.beneficios__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.beneficios__title strong {
  color: #0073aa;
}

.beneficios__description {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}
.beneficios__description strong {
  color: #0073aa;
}

.beneficios__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .beneficios__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 18.75rem);
    gap: 2rem;
    overflow: visible;
    scroll-snap-type: none;
    justify-content: center;
    padding-inline: 0;
  }
}

.beneficio-item {
  display: flex;
  flex: 0 0 300px;
  padding: 0.75rem;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid #6b7280;
  border-radius: 0.5rem;
  background-color: #ffffff;
  min-height: 15rem;
  scroll-snap-align: start;
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
@media (min-width: 768px) {
  .beneficio-item {
    flex: initial;
  }
}
.beneficio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.beneficio-item__icon .icon {
  width: 40px;
  height: 40px;
  filter: invert(72%) sepia(16%) saturate(6084%) hue-rotate(344deg) brightness(100%) contrast(95%);
  margin-bottom: 1rem;
}

.beneficio-item__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.beneficio-item__description {
  font-size: 0.95rem;
}

.faq {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.faq__header {
  margin-bottom: 3rem;
}

.faq__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.faq__title strong {
  color: #0073aa;
}

.faq__description {
  font-size: 1.1rem;
}

.faq__list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0;
}

.faq-item__question {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::after {
  content: "+";
  float: right;
  transition: transform 0.2s ease;
  color: #f89622;
}

.faq-item[open] .faq-item__question::after {
  content: "–";
}

.faq-item__answer {
  padding-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.planos {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.planos__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.planos__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1f2937;
}
.planos__title strong,
.planos__title span {
  color: #f89622;
  font-weight: 600;
}

.planos__description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.planos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .planos__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.plano-card {
  position: relative;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.plano-card--featured {
  border: 2px solid #f89622;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plano-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f89622;
  margin-bottom: 1rem;
  display: block;
}

.plano-card__price {
  margin-bottom: 1rem;
}
.plano-card__price strong {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  display: block;
  line-height: 1;
}
.plano-card__price span {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.35rem;
  font-weight: 400;
}

.plano-card__highlight {
  font-size: 0.875rem;
  color: #0073aa;
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.plano-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  flex-grow: 1;
}
.plano-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 0.65rem;
}
.plano-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f89622;
  font-weight: 700;
  font-size: 1rem;
}
.plano-card__features li strong {
  color: #1f2937;
  font-weight: 600;
}

.plano-card__cta {
  margin-top: auto;
  width: 100%;
}

.planos__extra {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.planos__extra strong {
  font-weight: 600;
  color: #1f2937;
}

.planos__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .planos__splide .splide__track {
    padding: 0 1rem;
  }
  .plano-card {
    min-height: 535px;
  }
  .planos__splide .splide__pagination__page {
    background: #0073aa !important;
    opacity: 0.3;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .planos__splide .splide__pagination__page.is-active {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .planos__list.planos__grid {
    display: grid;
    margin: 0 auto !important;
  }
  .planos__list.planos__grid > .planos__item,
  .planos__list.planos__grid > .splide__slide {
    width: auto !important;
    display: flex;
  }
  .planos__splide {
    overflow: visible;
    visibility: visible !important;
  }
}
.text-video {
  padding: clamp(2rem, 5vw, 3rem) 0;
}
@media (min-width: 768px) {
  .text-video .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    align-items: center;
  }
}
.text-video__content {
  display: flex;
  flex-direction: column;
}
.text-video__content p {
  margin-bottom: 1.25rem;
}
.text-video__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.875rem;
}
.text-video__content ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 0.75rem;
}
.text-video__content ul .svg {
  width: 1.75rem;
  height: 1.75rem;
}
.text-video__image {
  position: relative;
  height: 21.875rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.text-video__image img,
.text-video__image picture {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.text-video__image .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0.5;
}
.text-video__image .btn-play .svg {
  width: 100%;
  height: 100%;
}
.text-video__image:hover .btn-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.cards {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background-color: #e5e7eb;
}
.cards.sindicatos {
  background-color: #ffffff;
}
.cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .cards__grid {
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  }
}
.cards__description {
  margin: 0 0 1rem;
}
.cards .card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
  max-width: 21.875rem;
  margin: 0 auto;
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.cards .card h3 {
  color: #0073aa;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 1rem;
}
.cards .card p {
  color: #1f2937;
  font-size: 1rem;
  text-align: center;
  margin: 0 0 1rem;
}
.cards .card__text {
  min-height: 3rem;
}
.cards .card.sindicato {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #d1d5db;
}
.cards .card.sindicato h3 {
  color: #374151;
}

.mvv {
  background-color: #f89622;
  color: #ffffff;
  padding: 0;
}
@media (min-width: 768px) {
  .mvv__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    gap: 2rem;
    align-items: center;
  }
}
.mvv__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: #f89622;
  padding: clamp(2rem, 5vw, 3rem);
}
.mvv__item:nth-child(odd) {
  background-color: #ff6600;
}
.mvv__item:nth-child(odd) h2 {
  color: #ffffff;
}

.cdd-form-wrapper {
  max-width: 56.25rem;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
}

.cdd-custom-form h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 0.5rem;
  color: #0073aa;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cdd-custom-form .cdd-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.cdd-custom-form .cdd-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 12.5rem;
}
.cdd-custom-form .cdd-form-group.flex-2 {
  flex: 2;
}
.cdd-custom-form .cdd-form-group.flex-1 {
  flex: 1;
}
.cdd-custom-form .cdd-form-group label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}
.cdd-custom-form .cdd-form-group input,
.cdd-custom-form .cdd-form-group select,
.cdd-custom-form .cdd-form-group textarea {
  padding: 0.75rem 0.9375rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 150ms ease-in-out;
}
.cdd-custom-form .cdd-form-group input:focus,
.cdd-custom-form .cdd-form-group select:focus,
.cdd-custom-form .cdd-form-group textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.cdd-custom-form .cdd-radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}
.cdd-custom-form .cdd-radio-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.cdd-custom-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 400 !important;
  cursor: pointer;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}
.cdd-custom-form .employee-row {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #0073aa;
}
.cdd-custom-form .employee-row .row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cdd-custom-form .employee-row .row-header h4 {
  margin: 0;
  color: #0073aa;
  font-family: "Poppins", sans-serif;
}
.cdd-custom-form .employee-row .row-header .remove-row {
  background: #fee2e2;
  color: #d9534f;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 150ms ease-in-out;
}
.cdd-custom-form .employee-row .row-header .remove-row:hover {
  background: #fecaca;
}
.cdd-custom-form .add-employee-row {
  width: 100%;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
  background: #f3f4f6;
  color: #0073aa;
  border: 2px dashed #0073aa;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: all 150ms ease-in-out;
}
.cdd-custom-form .add-employee-row:hover {
  background: #e5e7eb;
}
.cdd-custom-form .cdd-form-footer {
  margin-top: 4rem;
  text-align: center;
}
.cdd-custom-form .field-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.cdd-custom-form .conditional-field {
  display: none;
}
.cdd-custom-form .form-message {
  margin-top: 2rem;
}
.cdd-custom-form .form-message .success {
  color: rgb(46.2466960352, 134.7533039648, 97.2775330396);
  font-weight: 700;
  background: rgb(218.8920704846, 242.6079295154, 232.5660792952);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #56c596;
}
.cdd-custom-form .form-message .error {
  color: #d9534f;
  font-weight: 700;
  background: rgb(253.2242990654, 246.9626168224, 246.7757009346);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d9534f;
}

@media (min-width: 768px) {
  .cdd-custom-form .cdd-form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cdd-form-wrapper {
    padding: 1rem;
  }
  .cdd-form-wrapper.cdd-form-contact-layout {
    max-width: 75rem;
  }
  .cdd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cdd-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .cdd-contact-info p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1rem;
  }
  .cdd-contact-info p strong {
    color: #020454;
  }
  .cdd-contact-info .cdd-contact-deadline {
    color: #6b7280;
    font-size: 1rem;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  margin-top: 3.75rem;
}
@media (min-width: 768px) {
  body {
    margin-top: 7.5rem;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 4rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.px-md {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 2rem;
}

@media (max-width: 320px) {
  .hidden-until-xs {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hidden-until-sm {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-until-md {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hidden-until-lg {
    display: none !important;
  }
}

@media (max-width: 1280px) {
  .hidden-until-xl {
    display: none !important;
  }
}

@media (max-width: 1536px) {
  .hidden-until-2xl {
    display: none !important;
  }
}
/*# sourceMappingURL=main.css.map */
