@import "./bootrstap-4-grid.css";

/* Display */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

/* Opacity */
.opacity-80 {
  opacity: 0.8;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-50 {
  opacity: 0.5;
}

/* Flexbox */
/* Flex - Direction */
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
/* Flex - Gap */
.gap-05 {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
/* Flex - Justify */
.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-stretch {
  justify-content: stretch;
}
/* Flex - Align */
.align-start {
  align-items: start;
}
.align-end {
  align-items: end;
}
.align-center {
  align-items: center;
}
.align-between {
  align-items: space-between;
}
.align-around {
  align-items: space-around;
}
.align-stretch {
  justify-content: stretch;
}

/* height & width */
.h-fit-content {
  height: fit-content;
}
.w-fit-content {
  width: fit-content;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

/* Padding */
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-025 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-05 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-025 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-05 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-075 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.pr-0 {
  padding-right: 0;
}
.pr-025 {
  padding-right: 0.25rem;
}
.pr-05 {
  padding-right: 0.5rem;
}
.pr-1 {
  padding-right: 1rem;
}
.pr-2 {
  padding-right: 2rem;
}
.pr-3 {
  padding-right: 3rem;
}
.pr-4 {
  padding-right: 4rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-025 {
  padding-bottom: 0.25rem;
}
.pb-05 {
  padding-bottom: 0.5rem;
}
.pb-075 {
  padding-bottom: 0.75rem;
}
.pb-1 {
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 2rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-025 {
  padding-top: 0.25rem;
}
.pt-05 {
  padding-top: 0.5rem;
}
.pt-1 {
  padding-top: 1rem;
}
.pt-2 {
  padding-top: 2rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pt-4 {
  padding-top: 4rem;
}

/* Margim */
.mb-0 {
  margin-bottom: 0;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mr-0 {
  margin-right: 0;
}
.mr-05 {
  margin-right: 0.5rem;
}
.mr-1 {
  margin-right: 1rem;
}
.mr-2 {
  margin-right: 2rem;
}
.mr-3 {
  margin-right: 3rem;
}
.mr-4 {
  margin-right: 4rem;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-05 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}
.mx-05 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-3 {
  margin-left: 3rem;
  margin-right: 3rem;
}
.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}

/* Text */
/* Size */
.fs-06 {
  font-size: 0.675rem;
}
.fs-08 {
  font-size: 0.825rem;
}
.fs-1 {
  font-size: 1rem;
}
.fs-11 {
  font-size: 1.1rem;
}
.fs-125 {
  font-size: 1.25rem;
}
.fs-15 {
  font-size: 1.5rem;
}
.fs-2 {
  font-size: 2rem;
}
/* Weight */
.fw-normal {
  font-weight: normal;
}
.fw-bold {
  font-weight: bold;
}
.fw-bolder {
  font-weight: bolder;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
/* Style */
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
/* Color */
.text-white {
  color: #f1f1f1;
}
.text-black {
  color: #303030;
}
.text-gray {
  color: #6d6360;
}
.text-turquesa {
  color: #009f8f;
}
.text-verde-claro {
  color: #c8d200;
}
.text-verde-medio {
  color: #79b51c;
}

/* Helper */
.text-clamp-1,
.text-clamp-2,
.text-clamp-3,
.text-clamp-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.text-clamp-1 {
  -webkit-line-clamp: 1;
}
.text-clamp-2 {
  -webkit-line-clamp: 2;
}
.text-clamp-3 {
  -webkit-line-clamp: 3;
}
.text-clamp-4 {
  -webkit-line-clamp: 4;
}

/* Visual */
.box {
  border-radius: 6px;
  background-color: #f9f9f9;
}

/* Images */

.image-link {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
}

.image-bg {
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.image-cover {
  background-size: cover !important;
}

.image-contain {
  background-size: contain !important;
}

.teste {
  background-color: red !important;
}

/* SM Breakpoint */
@media (min-width: 576px) {
  /* Display */
  .d-sm-flex {
    display: flex;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }

  /* Flex - Direction */
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }

  /* Flex - Justify */
  .justify-sm-start {
    justify-content: start;
  }
  .justify-sm-end {
    justify-content: end;
  }
  .justify-sm-center {
    justify-content: center;
  }
  .justify-sm-between {
    justify-content: space-between;
  }
  .justify-sm-around {
    justify-content: space-around;
  }
  .justify-sm-stretch {
    justify-content: stretch;
  }

  /* Flex - Align */
  .align-sm-start {
    align-items: start;
  }
  .align-sm-end {
    align-items: end;
  }
  .align-sm-center {
    align-items: center;
  }
  .align-sm-between {
    align-items: space-between;
  }
  .align-sm-around {
    align-items: space-around;
  }
  .align-sm-stretch {
    align-items: stretch;
  }

  /* Padding */
  .py-sm-0 {
    padding-bottom: 0;
    padding-top: 0;
  }
  .px-sm-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pl-sm-0 {
    padding-left: 0;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pr-sm-0 {
    padding-right: 0;
  }

  /* height & width */
  .h-sm-fit-content {
    height: fit-content;
  }
  .w-sm-fit-content {
    width: fit-content;
  }
  .w-sm-auto {
    width: auto;
  }
  .w-sm-100 {
    width: 100%;
  }
  .h-sm-100 {
    height: 100%;
  }
}

/* MD Breakpoint */
@media (min-width: 768px) {
  /* Display */
  .d-md-flex {
    display: flex;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }

  /* Flex - Direction */
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }

  /* Flex - Justify */
  .justify-md-start {
    justify-content: start;
  }
  .justify-md-end {
    justify-content: end;
  }
  .justify-md-center {
    justify-content: center;
  }
  .justify-md-between {
    justify-content: space-between;
  }
  .justify-md-around {
    justify-content: space-around;
  }
  .justify-md-stretch {
    justify-content: stretch;
  }
  /* Flex - Align */
  .align-md-start {
    align-items: start;
  }
  .align-md-end {
    align-items: end;
  }
  .align-md-center {
    align-items: center;
  }
  .align-md-between {
    align-items: space-between;
  }
  .align-md-around {
    align-items: space-around;
  }
  .align-md-stretch {
    align-items: stretch;
  }

  /* Padding */
  .py-md-0 {
    padding-bottom: 0;
    padding-top: 0;
  }
  .px-md-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pl-md-0 {
    padding-left: 0;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pr-md-0 {
    padding-right: 0;
  }

  /* height & width */
  .h-md-fit-content {
    height: fit-content;
  }
  .w-md-fit-content {
    width: fit-content;
  }
  .w-md-auto {
    width: auto;
  }
  .w-md-100 {
    width: 100%;
  }
  .h-md-100 {
    height: 100%;
  }
}

/* LG Breakpoint */
/* Limite do Container Estático */
@media (min-width: 992px) {
  /* Display */
  .d-lg-flex {
    display: flex;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }

  /* Flex - Direction */
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }

  /* Flex - Justify */
  .justify-lg-start {
    justify-content: start;
  }
  .justify-lg-end {
    justify-content: end;
  }
  .justify-lg-center {
    justify-content: center;
  }
  .justify-lg-between {
    justify-content: space-between;
  }
  .justify-lg-around {
    justify-content: space-around;
  }
  .justify-lg-stretch {
    justify-content: stretch;
  }
  /* Flex - Align */
  .align-lg-start {
    align-items: start;
  }
  .align-lg-end {
    align-items: end;
  }
  .align-lg-center {
    align-items: center;
  }
  .align-lg-between {
    align-items: space-between;
  }
  .align-lg-around {
    align-items: space-around;
  }
  .align-lg-stretch {
    align-items: stretch;
  }

  /* Padding */
  .py-lg-0 {
    padding-bottom: 0;
    padding-top: 0;
  }
  .px-lg-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pl-lg-0 {
    padding-left: 0;
  }
  .pl-lg-025 {
    padding-left: 0.25rem;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pr-lg-0 {
    padding-right: 0;
  }

  /* height & width */
  .h-lg-fit-content {
    height: fit-content;
  }
  .w-lg-fit-content {
    width: fit-content;
  }
  .w-lg-auto {
    width: auto;
  }
  .w-lg-100 {
    width: 100%;
  }
  .h-lg-100 {
    height: 100%;
  }
}

/* Limite do Container Estático */
@media (max-width: 992px) {
  /* Container pode se adaptar ao tamanho do container onde está em telas inferiores a 992px */
  .container {
    width: auto !important;
  }
}

/* XL Breakpoint */
@media (min-width: 1200px) {
  /* Display */
  .d-xl-flex {
    display: flex;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }

  /* Flex - Direction */
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }

  /* Flex - Justify */
  .justify-xl-start {
    justify-content: start;
  }
  .justify-xl-end {
    justify-content: end;
  }
  .justify-xl-center {
    justify-content: center;
  }
  .justify-xl-between {
    justify-content: space-between;
  }
  .justify-xl-around {
    justify-content: space-around;
  }
  .justify-xl-stretch {
    justify-content: stretch;
  }
  /* Flex - Align */
  .align-xl-start {
    align-items: start;
  }
  .align-xl-end {
    align-items: end;
  }
  .align-xl-center {
    align-items: center;
  }
  .align-xl-between {
    align-items: space-between;
  }
  .align-xl-around {
    align-items: space-around;
  }
  .align-xl-stretch {
    align-items: stretch;
  }

  /* Padding */
  .py-xl-0 {
    padding-bottom: 0;
    padding-top: 0;
  }
  .px-xl-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .pb-xl-0 {
    padding-bottom: 0;
  }
  .pl-xl-0 {
    padding-left: 0;
  }
  .pt-xl-0 {
    padding-top: 0;
  }
  .pr-xl-0 {
    padding-right: 0;
  }

  /* height & width */
  .h-xl-fit-content {
    height: fit-content;
  }
  .w-xl-fit-content {
    width: fit-content;
  }
  .w-xl-auto {
    width: auto;
  }
  .w-xl-100 {
    width: 100%;
  }
  .h-xl-100 {
    height: 100%;
  }
}

/* Permite que o container se adapte a tamanhos responsivos */
.container {
  width: min(940px, 100%);
}
