/* ============================================================ */
/* GENERAL */
/* ============================================================ */

:root {
  --default-font-size: 18px;
  /* font size */
  --font-size-nano: 0.6rem;
  --font-size-small: 0.8rem;
  --font-size-regular: 1.0rem;
  --font-size-medium: 2.5rem;
  --font-size-big: 3.0rem;
  /* weight */
  --font-weight-light: 100;
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 800;
  /*  colors */
  --color-primary: #C8086D;
  --color-neutral: #f0f0f0;
  --color-secondary: #360021;
  /* text colors */
  --text-color-primary: #fff;
  --text-color-secondary: #ccc;
  --text-color-accent: #C8086D;
  /* link colors */
  --link-color: #5E2849;
  --link-color-hover: #C8086D;
  --link-color-active: #360021;
  --link-color-disabled: #ccc;
  /* button colors */
  --btn-color-primary: #C8086D;
  --btn-color-primary-border: #5E2849;
  --btn-color-primary-active: #360021;
}

body {
  font-size: var(--default-font-size);
}

h1 {
  font-size: var(--font-size-big);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
}

.margin-bt-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.padding-bt-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.show-mobile {
  display: none;
}

.show-desktop {
  display: block;
}

/* Link Padrão */
a.custom-link-bg {
   background-color: #c8086d;
   color: #fff !important;
}
a.custom-link-bg:hover{
  background-color: #b30357;
  color: #fff !important;
}
a.custom-link-bg:focus {
  background-color: #b30357;
  color: #fff !important;
}
a.custom-link-bg:active {
  background-color: #b30357;
  color: #fff !important;
}

/* Link Padrão */
a.custom-link,
a.custom-link:hover,
a.custom-link:focus,
a.custom-link:active {
  color: var(--link-color);
  text-decoration: none;
}

/* Cor do texto do link ao passar o mouse */
a.custom-link:hover,
a.custom-link:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* Cor do texto do link ao clicar */
a.custom-link:active {
  color: var(--link-color-active);
  text-decoration: none;
}

a.custom-link:disabled, a.nav-link.disabled {
  color: var(--link-color-disabled);
  text-decoration: none;
}

button.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--btn-color-primary);
  --bs-btn-border-color: var(--btn-color-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--btn-color-primary-border);
  --bs-btn-hover-border-color: var(--btn-color-primary-active);
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--btn-color-primary-active);
  --bs-btn-active-border-color: var(--btn-color-primary-border);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--btn-color-primary);
  --bs-btn-disabled-border-color: var(--btn-color-primary);
}


/* Estilos personalizados para botões */
/* Botão Padrão */
.custom-btn,
.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active {
  background-color: #ff0000; /* Cor de fundo do botão */
  border-color: #ff0000; /* Cor da borda do botão */
  color: #ffffff; /* Cor do texto do botão */
}

/* Cor de fundo do botão ao passar o mouse */
.custom-btn:hover,
.custom-btn:focus {
  background-color: #00ff00;
  border-color: #00ff00;
}

/* Cor de fundo do botão ao clicar */
.custom-btn:active {
  background-color: #0000ff;
  border-color: #0000ff;
}

/* ============================================================ */
/* PAGE HOME:MENU (TOP) */
/* ============================================================ */

#menu {
  background: #fff;
}

#menu .navbar {
  background-color: inherit !important;
}

#menu .navbar a {
  font-size: var(--font-size-small);
}

/* ============================================================ */
/* PAGE HOME:HERO */
/* ============================================================ */

#hero-section {
  color: var(--text-color-primary);
}

#hero-section .hero-background {
  height: 100%;
  background: top right url('/a/img/bg-hero.jpeg');
  background-size: cover;
}

#hero-section .text-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px; /* adicionado temporariamente */
}

#hero-section .text-box .headline {
  font-size: var(--font-size-big);
  line-height: 3rem;
  font-weight: 800;
}

#hero-section .text-box .space {
  height: 30px;
}

#hero-section .text-box .headline .headline-highlight{
  color: var(--text-color-accent);
  font-weight: 800;
}

#hero-section .text-box .headline-complement {
  font-size: var(--font-size-normal);
}

#hero-section .text-box .action {
  width: 100%;
}

#hero-section .text-box .action .btn{
  text-transform: uppercase;
  font-weight: 700;
}

#hero-section .image-box {
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-section .image-box img {
  width: 100%;
}

/* ============================================================ */
/* PAGE HOME:WhyUs */
/* ============================================================ */

#whyus-section .card-header {
  font-weight: 700;
  text-transform: uppercase;
}

#whyus-section .box-img {
  background-color: var(--btn-color-primary);
}

#whyus-section .card-header .oimg {
  width: 150px;
  /* filter: grayscale(.59); */
  mix-blend-mode: luminosity;
}

#whyus-section .card-body {
  font-weight: 100;
  height: 350px;
}

/* ============================================================ */
/* PAGE HOME:Partner */
/* ============================================================ */

#partners-section .partners-background {
  height: 100%;
  background-color: var(--color-neutral);
}

#partners-section .box-img {
  max-width: 250px;
}

#partners-section .box-img img{
  width: 100%;
  filter: grayscale(0.89);
  mix-blend-mode: luminosity;
}

/* ============================================================ */
/* PAGE HOME:Product */
/* ============================================================ */

#products-section .products-background {
  height: 100%;
  background-color: #fff;
}

#products-section .box-img {
  max-width: 250px;
}

#products-section .box-img img{
  width: 100%;
}

#products-section .box-button .btn{
  font-size: var(--font-size-small) !important;
}

#products-section .card {
  background-color: #f8f8f8;
  border: 0;
}

/* ------------------------------------------------------ */
/* FOOTER */
/* ------------------------------------------------------ */

footer {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--color-secondary);
  color: var(--text-color-secondary);
}

footer .zone-container {
  display: flex;
  padding: 5%;
}

footer .container-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

footer .container-footer.container {
  padding-left: 0;
  padding-right: 0;
}

footer .enterprise {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  width: var(--col-inner-width);
  font-weight: 400;
}

footer .enterprise-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .enterprise-info p{
  margin: 0.3rem;
  font-weight: 200;
}

footer .policies {
  width: calc(var(--col-inner-width) * 70%);
  font-weight: 400;
}

footer .policies .list .list-items-footer{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
  font-weight: 200;
}

footer .policies .list a {
  color: var(--text-color-secondary);
}

footer #copyright {
  padding: var(--padding-default);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: var(--font-size-small);
}

footer #copyright p{
  margin: 0;
  font-size: var(--font-size-small);

}

#copyright p .hightlight{
  color: var(--text-color-secondary);
  font-weight: bold;
}