/* Variables */
:root {
  --primary-color: #FFB900;
  --primary-color-dark: #FFB900;
  --secondary-color: #FFB900;
  --background-color: #662976;
  --text-color-light: #FFF;
  --text-color-dark: #650566;
  --footer-text-color: rgba(255, 255, 255, 1);
  --border-color: #030405;
  --overlay-color: rgba(39, 6, 6, 0.5);
  --button-hover-bg: #650566;
  --button-outline-hover-bg: #F1F8FF;
  --button-outline: #F1F8FF;
  --input-border-color: #0B76B0;
  --header-bg-color: #650566;
  --body-bg-color: #662976;
  --content-bg-color: #662976;
  --form-bg-color: #FFFAF1;
}

/* =========================================================
  FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&display=swap');

/* =========================================================
  GLOBAL STYLES
   ========================================================= */

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: url('../assets/img/bg.jpg');
  background-color: #662976;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.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-dark);
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  max-height: 56px;
  transition: all 0.3s;
  border: 2px solid var(--secondary-color);
}

.button:hover {
  background: none;
  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-principal {
  margin-bottom: 80px;
}

/* 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: bottom;
}

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

.body-container img {
  width: 70%;
  max-height: 90vh;
}

.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;
}

.font-2 {
  font-family: "Asap", sans-serif;
  background: linear-gradient(90deg, #FFCD48 0%, #FFB900 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
}

/* 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 */
a#info{
    color:#fff;
    font-size: small;
}



/* *********** */

/* 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: 90%;
  }

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

}

.bg-button {
  background-color: var(--primary-color);
  color: #650566;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
}

.btn-header {
  color: #650566;
}

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

.btn.button.col-md-12{
  background-color: var(--background-color);
  color: var(--button-outline);
  border-color: var(--button-outline);
}

.btn.button.col-md-12:hover {
  background-color: var(--primary-color-dark);
  color: var(--text-color-dark);
}