<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* VariÃ¡veis */
:root {
  --primary-color: #007bff;
  --primary-color-dark: #2569f0;
  --primary-color-light: #a1d2ff;
  --primary-color-light-full: #f4f9ff;
  --typography-color: #3c3c3c;
  --typography-color-secondary: #858585;
  --background: #f9f9f9;
  --gray: #f5f5f5;
  --radius-sm: 2rem;
  --radius-lg: 10rem;
}

/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 15px;
  font-weight: 500;
}

body {
  background-color: var(--background);
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  padding: 0.25rem 1rem;
  background-color: var(--primary-color);
  color: #fff;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

button:hover {
  background-color: var(--primary-color-dark);
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

ul {
  list-style: none;
}

main {
  min-height: 100vh;
}

section {
  margin-top: 9rem;
}

@media (max-width: 768px) {
  section {
    margin-top: 5rem;
  }
}

/* NavegaÃ§Ã£o */
.nav-container {
  position: fixed;
  z-index: 20;
  width: 100%;
}

nav &gt; div {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.nav-card {
  background-color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-items: start;
  gap: 0.5rem;
}

.nav-card a {
  display: flex;
  align-items: center;
  justify-items: start;
}

.mobile-menu {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  background-color: var(--primary-color-light-full);
}

.mobile-menu img {
  width: 1.5rem;
}

.logo-image-desktop {
  width: 8rem;
}
.logo-image-mobile {
  display: none;
}

.btn {
  border-radius: var(--radius-lg);
}

.btn-nav-secondary {
  background-color: #fff;
  border-radius: var(--radius-sm);
  color: var(--typography-color);
}

.btn-nav-secondary:hover {
  background-color: var(--gray);
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-mobile-container {
  position: fixed;
  display: none;
  top: 0;
  padding: 1rem;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  align-items: end;
}

.nav-mobile {
  background-color: #fff;
  border-radius: var(--radius-sm);
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  width: 100%;
}

.btn-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.btn-container .btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

#btn-close {
  background: var(--gray);
  color: var(--typography-color);
}

.show {
  display: flex;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .nav-links {
    display: none;
  }
  .logo-image-desktop {
    padding-right: 1rem;
  }
}
@media (max-width: 425px) {
  .nav-card a:nth-child(1) {
    display: none;
  }
}
@media (max-width: 320px) {
  .logo-image-mobile {
    display: block;
    width: 2.5rem;
  }
  .logo-image-desktop {
    display: none;
  }
}

/* CabeÃ§alho */
header {
  background: var(--primary-color-light);
  color: white;
  padding: 20px 0;
  text-align: center;
  border-radius: var(--radius-sm);
  min-height: 60vh;
  margin-top: 0.5rem;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  position: relative;
}

header h1 {
  font-size: 3rem;
  font-family: "Montserrat";
  text-align: start;
  line-height: 3.5rem;
  font-weight: bold;
  position: relative;
  z-index: 10;
}
header a {
  z-index: 10;
}

.bg-header {
  background-image: url("./public/header-bg.webp");
  background-repeat: no-repeat;
  background-size: 120%;
  width: 100%;
  background-position: calc(100% + 0rem) 70%;
  height: 100%;
  position: absolute;
  border-radius: var(--radius-sm);
  bottom: 0;
  left: 0;
}

@media (max-width: 768px) {
  .bg-header {
    background-size: cover;
    background-position: calc(100% + 0rem) 70%;
  }
}
@media (max-width: 425px) {
  .bg-header {
    background-size: cover;
    background-position: calc(100% + 10rem) 70%;
  }
}

/* Carrosel */

#carrosel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  background-color: var(--background);
}

#carrosel:before,
#carrosel:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    var(--background),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

#carrosel:after {
  right: 0;
  width: 50%;
  background: linear-gradient(
    to left,
    var(--background),
    rgba(255, 255, 255, 0)
  );
  left: auto;
}

#carrosel ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 100%;
  position: relative;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

#carrosel ul li {
  flex: 0 0 auto;
  text-wrap: nowrap;
  font-size: 1.7rem;
  font-family: "Montserrat";
  text-align: start;
  line-height: 3.5rem;
  font-weight: bold;
  color: var(--primary-color-dark);
}

.trace {
  width: 3rem;
  height: 0.75rem;
  background-color: var(--primary-color-light);
  border-radius: var(--radius-lg);
}

/* Por que nos escolher */

#porque-escolher h2 {
  font-size: 3rem;
  font-family: "Montserrat";
  text-align: start;
  line-height: 3.5rem;
  font-weight: bold;
}

#porque-escolher-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

#porque-escolher-header h2 span {
  font-size: 3rem;
  font-family: "Montserrat";
  font-weight: bold;
  color: var(--primary-color);
}

#porque-escolher-header p {
  text-align: center;
  color: var(--typography-color-secondary);
  width: 40%;
}

#porque-escolher-cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.porque-escolher-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--radius-sm);
  min-height: 25rem;
  background-repeat: no-repeat;
  flex: 1;
  transition: 0.3s ease;
}

.porque-escolher-card:first-child {
  background-image: url("public/contract-card-image.svg");
  background-position: calc(100% + 4rem) 110%;
  background-size: 80%;
}
.porque-escolher-card:first-child:hover {
  background-position: calc(100% + 4rem) 100%;
}
.porque-escolher-card:nth-child(2) {
  background-image: url("public/safe-card-image.svg");
  background-position: calc(100% + 0rem) 110%;
  background-size: 60%;
}
.porque-escolher-card:nth-child(2):hover {
  background-position: calc(100% + 0rem) 100%;
}
.porque-escolher-card:nth-child(3) {
  background-image: url("public/transfer-card-image.svg");
  background-position: calc(100% + 1rem) 110%;
  background-size: 60%;
}
.porque-escolher-card:nth-child(3):hover {
  background-position: calc(100% + 1rem) 100%;
}

@media (max-width: 768px) {
  .porque-escolher-card {
    width: 100%;
  }
  .porque-escolher-card:first-child {
    background-position: calc(100% + 1rem) 100%;
  }
  .porque-escolher-card:nth-child(2) {
    background-position: calc(100% + 0rem) 100%;
  }
  .porque-escolher-card:nth-child(3) {
    background-position: calc(100% + 0rem) 100%;
  }
  #porque-escolher-header p {
    text-align: left;
    width: 100%;
  }
  #porque-escolher-cards-container {
    gap: 1rem;
    flex-direction: column;
  }
}

.porque-escolher-card h3 {
  font-size: 1.25rem;
  font-family: "Montserrat";
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.porque-escolher-card p {
  color: var(--typography-color-secondary);
}

/* Para orgnanizadores e fornecedores */

#organizadores,
#fornecedores {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

@media (max-width: 768px) {
  #organizadores,
  #fornecedores {
    align-items: start;
  }
  #fornecedores {
    flex-direction: column-reverse;
  }
  #organizadores {
    flex-direction: column;
  }
}

#organizadores h2,
#fornecedores h2 {
  font-size: 3rem;
  font-family: "Montserrat";
  font-weight: bold;
  color: var(--typography-color);
  line-height: 3.5rem;
}

#organizadores p,
#fornecedores p {
  color: var(--typography-color-secondary);
}

#organizadores ul,
#fornecedores ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#organizadores li,
#fornecedores li {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background-color: #fff;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 2;
}

#organizadores img,
#fornecedores img {
  margin-right: 0.5rem;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.container-image {
  flex: 1;
  height: 100%;
  width: 100%;
}

.container-image img {
  height: 100%;
  width: 100%;
  border-radius: var(--radius-sm);
}

/* Sobre nos */

#sobre-nos {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
  background-color: #fff;
  border-radius: var(--radius-sm);
  padding: 5rem 3rem;
}

#sobre-nos h2 {
  font: bold 3rem "Montserrat";
  text-align: start;
  line-height: 3.5rem;
  position: relative;
  z-index: 10;
  width: min-content;
}

#sobre-nos div {
  max-width: 70%;
}

#sobre-nos div p {
  margin-bottom: 1rem;
}

#sobre-nos span {
  font: bold 3rem "Montserrat";
  text-align: start;
  line-height: 3.5rem;
  position: relative;
  z-index: 10;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  #sobre-nos {
    justify-content: start;
    flex-direction: column;
  }
  #sobre-nos div {
    max-width: 100%;
  }
  #sobre-nos h2 {
    width: 100%;
  }
}

/* Phone */

.phone-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  width: 50rem;
}

@media (max-width: 425px) {
  .phone {
    width: 100%;
  }
}

/* Footer */

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #202020;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.line {
  width: 100%;
  border: 1px solid #454545;
}

.call-to-action-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3rem;
}

.call-to-action-footer h2 {
  font-size: 2rem;
  font-family: "Montserrat";
  text-align: start;
  line-height: 3.5rem;
  position: relative;
  z-index: 10;
  color: #fff;
}

.btn-footer {
  border-radius: 100%;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  background-color: #454545;
  justify-content: center;
}

.btn-footer img {
  width: 4rem;
}

.info-footer {
  display: flex;
  padding: 3rem;
  width: 100%;
  justify-content: space-between;
}

.info-footer img {
  width: 8rem;
}

.social * {
  color: var(--typography-color-secondary);
}

.social {
  display: flex;
  gap: 1rem;
}

.social img {
  width: 1.5rem;
}

.social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copyright {
  padding: 1rem;
  text-align: center;
  color: var(--typography-color-secondary);
}

@media (max-width: 425px) {
  .info-footer {
    flex-direction: column;
    gap: 2rem;
  }
}
</pre></body></html>