<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables */
:root {
  --primary-color: #0D9091;
  --primary-color-dark: #0D9091;
  --secondary-color: rgba(164, 212, 238, 1);
  --background-color: #0D9091;
  --text-color-light: #FFF;
  --text-color-dark: #0D9091;
  --footer-text-color: rgba(255, 255, 255, 1);
  --border-color: #030405;
  --overlay-color: rgba(39, 6, 6, 0.5);
  --button-hover-bg: #0D9091;
  --button-outline-hover-bg: #F1F8FF;
  --button-outline: #F1F8FF;
  --input-border-color: #0B76B0;
  --header-bg-color: #0D9091;
  --body-bg-color: #C52E2E;
  --content-bg-color: #0D9091;
  --form-bg-color: #F1F8FF;
}

/* =========================================================
  GLOBAL STYLES
   ========================================================= */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: var(--body-bg-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-home-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
}

.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 1rem 2rem;
}

.center-content span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-light);
  font-weight: 400;
  font-size: 0.7rem;
  text-align: center;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  max-height: 56px;
  transition: all 0.3s;
}

.button:hover {
  background-color: var(--button-hover-bg);
  text-decoration: none;
  color: var(--secondary-color);
}

.button-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  max-height: 56px;
  border: 2px solid  #fff;
  transition: all 0.3s;
}

.button-outline:hover {
  background-color: var(--button-outline);
  text-decoration: none;
  color: var(--text-color-dark);
}

.input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--text-color-light);
  color: #222;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  text-align: left;
  font-weight: 600;
  text-decoration: none;
  max-height: 56px;
  border: 2px solid #222;
  transition: all 0.3s;
}

.label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-color-dark);
  font-size: 1rem;
  text-align: left;
}

.input-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #222;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  text-align: left;
  font-weight: 600;
  text-decoration: none;
  max-height: 56px;
  border: 2px solid #222;
  transition: all 0.3s;
}

/* HEADER */
.navbar-nav {
  align-items: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--header-bg-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  background-color: var(--header-bg-color);
  padding: 1rem 2rem;
}

.header-item {
  color: var(--text-color-light) !important;
}

.header-item:hover {
  color: var(--secondary-color) !important;
}

.header-logo img {
  width: 150px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-nav a {
  color: var(--text-color-light);
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #b3b3b3;
}

.header-button a {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  max-height: 56px;
}

.header-button a:hover {
  background-color: var(--button-hover-bg);
}
/* HEADER */

/* BODY */

.body-container {
  min-height: calc(100vh - 120px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../assets/img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 32%;
}

.min-h {
  min-height: calc(100vh - 200px) !important;
}

.body-container img {
  width: 100%;
  max-width: 768px;
}

.animation-selo {
  animation-name: animation;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	transform-origin: left center;
	transition: all .3s ease-in-out;
}

@keyframes animation {
	0% {
		transform: scale(1);
		transform-origin: center center
	}

	50% {
		transform: scale(1.05);
		transform-origin: center center
	}

	100% {
		transform: scale(1);
		transform-origin: center center
	}
}

/* BODY */
/* *********** */

/* CONTENT */
.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 2rem;
  gap: 0.6rem;
}

.content-item {
  display: flex;
  flex-direction: column;
  width: 379px;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1.2rem;
  line-height: 24px;
  background-color: var(--content-bg-color);
  border-radius: 16px;
  color: var(--text-color-light);
  padding: 3.2rem 1.2rem;
}

.content-item span {
  font-size: 1.2rem;
  font-weight: 600;
}

.content-item h2 {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 4px solid var(--secondary-color);
  width: 60px;
  color: var(--secondary-color);
  height: 60px;
  border-radius: 50%;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 3rem;
}
.content h1 {
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: var(--text-color-light);
  font-size: 3rem;
}

.content-item p {
  font-size: 1.2rem;
  font-weight: 100;
}
/* CONTENT */
/* *********** */

/* PRODUCTS */
.products-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 3rem;
  margin: 0 2rem;
}

.products-content img {
  width: 100%;
  max-width: 1089px;
}

.products-content h1 {
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: var(--text-color-dark);
  font-size: 2rem;
}

.products-content-button {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-radius: 20px;
  background-color: transparent;
  border: 2px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  transition: all 0.3s;
}

.products-content-button:hover {
  background-color: var(--text-color-dark);
  color: var(--text-color-light);
  transition: all 0.3s;
}

.products-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  background-color: var(--form-bg-color);
  border-radius: 16px;
}
/* PRODUCTS */
/* *********** */

/* STORES */
.stores-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  margin: 0 2rem;
}

.stores-content img {
  width: 100%;
  max-width: 768px;
}

/* FOOTER */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--footer-text-color);
  padding: 2rem;
  margin-top: 4rem;
  font-size: 1rem;
  text-align: center;
}

.footer-container a {
  color: var(--footer-text-color);
  text-decoration: underline;
}
/* NAV HOME */
.nav-home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 3rem;
}

.nav-home-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.nav-home-container h1 {
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: var(--text-color-light);
  font-size: 2rem;
}
/* NAV HOME */
/* *********** */

/* FORM CONTACT */
.form-contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.6rem;
  width: 100%;
}

.form-contact-content {
  display: flex;
  background-color: var(--form-bg-color);
  width: 100%;
  flex-direction: column;
  max-width: 1100px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  border-radius: 16px;
  gap: 1rem;
}

.form-contact-container h1 {
  font-weight: 700;
  font-style: normal;
  text-align: left;
  color: var(--text-color-dark);
  font-size: 2rem;
}

/* FORM CONTACT */
/* *********** */

/* LISTS */
.list-container {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.list-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 1rem;
  padding-top: 3rem;
  width: 100%;
  max-width: 1100px;
  border-radius: 16px;
  padding: 2rem;
  margin: 0 2rem;
  background-color: var(--form-bg-color);
}

.list-content h1 {
  font-weight: 700;
  font-style: normal;
  text-align: left;
  color: var(--text-color-dark);
  font-size: 2rem;
}

/* LOGIN */

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 3rem;
  margin: 0 2rem;
  min-height: calc(100vh - 280px) !important;
}

.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 16px;
  background-color: var(--form-bg-color);
}

.login-content h1 {
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: var(--text-color-dark);
  font-size: 2rem;
}

.padding-left {
  padding-left: 3rem;
}

/* MEDIA QUERIES */
@media screen and (max-width: 768px) {
  .header-button {
    display: none;
  }

  .body-container {
    min-height: 50vh !important;
  }

  .body-container img {
    width: 100%;
  }

  .padding-left {
    padding-left: 0rem;
  }
  
}

</pre></body></html>