@layer global-styles {/* Landing page global styles
 * Note: Tailwind is handled by app-web's Tailwind 4 setup in tailwind-entry.css
 * These are the non-Tailwind styles from the landing page.
 */

/* Box sizing rules */

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

/* Prevent font size inflation */

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */

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

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */

textarea:not([rows]) {
  min-height: 10em;
}

input::placeholder {
  color: #dddddd;
  color: var(--color-neutral-200);
  opacity: 0.35;
}

input:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  outline: none;
}

  input:focus:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

/* Anything that has been anchored to should have extra scroll margin */

:target {
  scroll-margin-block: 5ex;
}

:root {
  --font-inter: 'Inter', sans-serif;
  --font-asul: 'Asul', serif;
  --font-lusitana: 'Lusitana', serif;
  --foreground: #ffffff;
  --background: #0a0a0a;
  --color-neutral-white: #ffffff;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
}

html,
body,
main {
  width: 100%;
  margin: 0;
}

body {
  color: #ffffff;
  color: var(--foreground);
  background: #0a0a0a;
  background: var(--background);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.slider-example-split-line {
  --divider-width: 2px;
  --divider-color: #ddd;
}

#thumbs-prev,
#thumbs-next,
#updates-prev,
#updates-next,
#testimonials-prev,
#testimonials-next {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border-radius: var(--Dimensions-Corner-Radius-radius-m, 5px);
  background: rgba(255, 255, 255, 0.1);
  background: var(--color-grayscale-white-10, rgba(255, 255, 255, 0.1));
}
  #thumbs-prev:hover, #thumbs-next:hover, #updates-prev:hover, #updates-next:hover, #testimonials-prev:hover, #testimonials-next:hover {
    background: rgba(255, 255, 255, 0.15);
    background: var(--color-grayscale-white-10, rgba(255, 255, 255, 0.15));
  }
  #thumbs-prev,
#thumbs-next,
#updates-prev,
#updates-next,
#testimonials-prev,
#testimonials-next {
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

  #thumbs-prev svg, #thumbs-next svg, #updates-prev svg, #updates-next svg, #testimonials-prev svg, #testimonials-next svg {
    height: 30px;
  }

#testimonials-prev,
#testimonials-next {
  background: rgba(0, 0, 0, 0.5);
  background: var(--color-grayscale-white-10, rgba(0, 0, 0, 0.5));
}
  #testimonials-prev:hover, #testimonials-next:hover {
    background: rgba(255, 255, 255, 0.15);
    background: var(--color-grayscale-white-10, rgba(255, 255, 255, 0.15));
  }
  #testimonials-prev,
#testimonials-next {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

:root {
  --swiper-navigation-size: 35px;
  --swiper-navigation-top-offset: unset;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: #fff;

  --swiper-pagination-color: #fff;
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bullet-width: 14px;
  --swiper-pagination-bullet-height: 14px;

  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

  @media screen and (max-width: 551px) {

:root {
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-height: 10px;
    --swiper-pagination-bullet-horizontal-gap: 6px
}
  }

.swiper-pagination-bullets {
  width: auto !important;
  display: flex;
}

.swiper-pagination-bullet {
  border: 2px solid white;
  opacity: 1 !important;
}

body.ReactModal__Body--open {
  overflow: hidden;
}

.ReactModal__Overlay {
  z-index: 100;
  background: rgba(0, 0, 0, 0.5) !important;
  background: var(--color-grayscale-black-75, rgba(0, 0, 0, 0.5)) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.ReactModal__Content {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 32px !important;
  gap: var(--Dimensions-Spacing-spacing-xl, 32px) !important;
  border-radius: 7px !important;
  border-radius: var(--Dimensions-Corner-Radius-radius-l, 7px) !important;
  border: 2px solid #1f1f1f !important;
  border: 2px solid var(--Color-Grayscale-Neutral-800, #1f1f1f) !important;
  background: rgba(0, 0, 0, 0.5) !important;
  background: var(--color-grayscale-black-50, rgba(0, 0, 0, 0.5)) !important;
  /* Panel Blur & Shadow */
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.7) !important;
  -webkit-backdrop-filter: blur(50px) !important;
          backdrop-filter: blur(50px) !important;
  margin: auto !important;

  width: 413px !important;
  height: fit-content !important;
  inset: 0 !important;
  max-height: 90vh !important;
  overflow: auto;
}

  @media screen and (max-width: 551px) {

.ReactModal__Content {
    max-height: unset !important;
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important
}
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
}
