/* ========================================================================== 
   SYSTEMA ONLINE - DESIGN MODERNO CORPORATIVO TOP
   Paleta: Azul Corporativo baseado na logo
   ========================================================================== */

:root {
  --primary-blue: #0066cc;
  --primary-blue-dark: #0052a3;
  --primary-blue-light: #e8f4ff;
  --secondary-blue: #56b0f5;
  --accent-blue: #003d99;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-lighter: #f0f4f8;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 102, 204, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 102, 204, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 102, 204, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

/* ========================================================================== 
   LAYOUT GERAL
   ========================================================================== */

.geral {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.geral-conteudo {
  width: 100%;
  height: auto;
  overflow: hidden;
  flex: 1;
}

.geral-conteudo-80 {
  width: 80%;
  height: auto;
  overflow: hidden;
  margin-left: 10%;
}

/* ========================================================================== 
   NAVBAR - DESIGN MODERNO
   ========================================================================== */

.navbar {
  background: var(--white) !important;
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0 !important;
  border-bottom: 4px solid var(--primary-blue);
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  padding: 0.5rem 1rem !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  max-height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  margin: 0 0.75rem;
  padding: 0.5rem 0 !important;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 50%;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 0.75rem;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav .dropdown-item {
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-nav .dropdown-item:hover {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border-left: 4px solid var(--primary-blue);
  padding-left: calc(1.5rem - 4px);
}

.custom-toggler.navbar-toggler {
  border-color: var(--primary-blue);
  padding: 0.25rem 0.5rem;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230066cc' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* ========================================================================== 
   BOTÕES
   ========================================================================== */

.btn {
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  color: var(--white) !important;
}

.btn-outline-primary {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btnlaranja {
  background: linear-gradient(135deg, #ff8c00 0%, #ff9f1c 100%) !important;
  color: var(--white) !important;
  border: none !important;
}

.btnlaranja:hover {
  background: linear-gradient(135deg, #e67e00 0%, #ff8c00 100%) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background-color: var(--text-dark);
  color: var(--white) !important;
}

.btn-dark:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white) !important;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ========================================================================== 
   HERO SECTION - IMPACTANTE
   ========================================================================== */

.imagePrincipal {
  background: url('/res/site/_img/_banners/hero-hospital.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.imagePrincipal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 82, 163, 0.85) 100%);
  z-index: 1;
}

.imagePrincipal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(86, 176, 245, 0.1) 0%, transparent 50%);
  z-index: 2;
}

.opacityWhite {
  position: relative;
  z-index: 3;
  width: 100%;
}

.imagePrincipal .container {
  position: relative;
  z-index: 3;
}

.imagePrincipal h1 {
  color: var(--white);
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out;
}

.imagePrincipal h2 {
  color: var(--white);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.imagePrincipal p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .imagePrincipal {
    min-height: 500px;
  }

  .imagePrincipal h1 {
    font-size: 2.2rem;
  }

  .imagePrincipal h2 {
    font-size: 1.1rem;
  }

  .imagePrincipal p {
    font-size: 1rem;
  }
}

/* ========================================================================== 
   SEÇÕES
   ========================================================================== */

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.bg-light-blue {
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, #f0f8ff 100%);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bg-gradient-blue::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.bg-gradient-blue > * {
  position: relative;
  z-index: 2;
}

/* ========================================================================== 
   DIVISÓRIAS
   ========================================================================== */

.divisoria-azul-centro {
  width: 100px;
  height: 5px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.divisoria-dark-centro {
  width: 100px;
  height: 5px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--text-dark), transparent);
  border-radius: 3px;
}

.divisoria-azul-left {
  width: 80px;
  height: 5px;
  float: left;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.divisoria-dark-left {
  width: 80px;
  height: 5px;
  float: left;
  background: linear-gradient(90deg, var(--text-dark), transparent);
  border-radius: 3px;
}

.divisoria-full {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  opacity: 0.5;
}

.divisoria-azul-full {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* ========================================================================== 
   CARDS
   ========================================================================== */

.card {
  border: none;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-12px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  border: none;
  padding: 2rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.card-header > * {
  position: relative;
  z-index: 2;
}

.card-body {
  padding: 2rem 1.5rem;
}

.card-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.card-hover {
  position: relative;
  overflow: hidden;
}

.card-hover img {
  width: 40%;
  margin-top: 20px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-hover:hover img {
  transform: scale(1.1) rotate(2deg);
}

/* ========================================================================== 
   PRODUTOS SECTION
   ========================================================================== */

.background-fundo1,
.background-fundo2 {
  padding: 4rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.background-fundo1 {
  background: linear-gradient(to right, var(--white) 0%, var(--bg-lighter) 50%, var(--white) 100%);
}

.background-fundo2 {
  background: linear-gradient(to left, var(--white) 0%, var(--bg-lighter) 50%, var(--white) 100%);
}

.product-section {
  padding: 3rem 0;
}

.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.product-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ========================================================================== 
   FOOTER
   ========================================================================== */

.footer-bg {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0a0a0a 100%);
  color: var(--white);
  padding: 4rem 0 0;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.footer-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 2px;
}

.footer-link {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--primary-blue);
  padding-left: 0.75rem;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.footer-social a:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: var(--shadow-lg);
}

.footer-bottom {
  background: linear-gradient(90deg, #000000, #0a0a0a);
  color: #888;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid var(--primary-blue);
  margin-top: 2rem;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #b8b8b8;
}

.footer-info i {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-top: 0.2rem;
  min-width: 25px;
}

/* ========================================================================== 
   BOTÃO FLUTUANTE (WhatsApp)
   ========================================================================== */

.button-rodape {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: var(--shadow-xl);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0.2);
  }
}

.button-rodape:hover {
  color: var(--white);
  transform: scale(1.15) translateY(-8px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ========================================================================== 
   MENU REDES SOCIAIS LATERAL
   ========================================================================== */

#menuRedesSociais {
  position: fixed;
  left: 0;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

#menuRedesSociais .nav-item {
  list-style: none;
}

#menuRedesSociais .btn {
  width: 55px;
  height: 55px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  background-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  margin: 0;
  padding: 0;
}

#menuRedesSociais .btn:hover {
  padding-left: 0.5rem;
  box-shadow: var(--shadow-lg);
}

#menuRedesSociais .facebook {
  background: linear-gradient(135deg, #1877f2, #0a66c2);
}

#menuRedesSociais .facebook:hover {
  background: linear-gradient(135deg, #0a66c2, #053a8a);
}

#menuRedesSociais .youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

#menuRedesSociais .youtube:hover {
  background: linear-gradient(135deg, #cc0000, #990000);
}

#menuRedesSociais .instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

#menuRedesSociais .instagram:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  #menuRedesSociais {
    display: none;
  }
}

/* ========================================================================== 
   HOVER EFFECTS
   ========================================================================== */

.hvrcenter {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}

.hvrcenter::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: var(--primary-blue);
  height: 3px;
  transition: left 0.3s ease-out, right 0.3s ease-out;
}

.hvrcenter:hover::before,
.hvrcenter:focus::before,
.hvrcenter:active::before {
  left: 0;
  right: 0;
}

.efeito-360-icon:hover i {
  transform: rotateZ(-360deg);
  transition-duration: 1s;
}

.color-layout-red-icon-hover:hover i {
  color: #dc483b;
  transition-duration: 1s;
}

.itemhover:hover i {
  color: var(--primary-blue);
  transition: 0.5s;
}

/* ========================================================================== 
   UTILITÁRIOS
   ========================================================================== */

.full-width-image {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.full-width-image img {
  width: 100%;
  display: block;
}

.custom-card,
.custom-card:hover {
  color: inherit;
  text-decoration: none;
}

.text-decoration-none:hover {
  text-decoration: none;
}

.text-indent {
  text-indent: 1.5rem;
}

.text-line-height {
  line-height: 1.8;
}

.carousel-item {
  height: auto;
  background: no-repeat center center scroll;
  background-size: cover;
}

.layoutSoftware {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

@media screen and (max-width: 1360px) {
  .layoutSoftware {
    height: 250px;
  }
}

@media screen and (max-width: 1024px) {
  .layoutSoftware {
    height: 200px;
  }
}

@media screen and (max-width: 574px) {
  .layoutSoftware {
    height: 100px;
  }
}

.floatAlteraMapa {
  visibility: visible;
  width: 100%;
  height: 400px;
}

.floatAlteraMapa2 {
  visibility: hidden;
  width: 0px;
  height: 0px;
}

@media screen and (max-width: 768px) {
  .floatAlteraMapa {
    visibility: hidden;
    width: 0px;
    height: 0px;
  }
  .floatAlteraMapa2 {
    visibility: visible;
    width: 100%;
    height: 400px;
  }
}

/* ========================================================================== 
   CLASSES DE CORES HERDADAS
   ========================================================================== */

.color-layout-azul-1 {
  color: var(--primary-blue);
}

.color-layout-azul-1-hover:hover {
  color: var(--primary-blue);
}

.backgroud-color-layout-preto-1 {
  background-color: var(--text-dark);
  color: var(--white);
}

.backgroud-color-layout-preto-2 {
  background-color: #1a1a1a;
  color: var(--white);
}

.backgroud-color-layout-preto-3 {
  background-color: #0a0a0a;
  color: var(--white);
}

.backgroud-color-layout-azul-1 {
  background-color: var(--primary-blue);
  color: var(--white);
}

.backgroud-color-layout-menu {
  background-color: var(--white);
  border-bottom: 4px solid var(--primary-blue);
}

/* ========================================================================== 
   CLASSES DE FONTES
   ========================================================================== */

.fonte-titulo-1 {
  font-size: 0.95rem;
  font-weight: 600;
}

.fonte-titulo-2 {
  font-size: 1.1rem;
  font-weight: 700;
}

.fonte-titulo-3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.fonte-padrao {
  font-size: 1rem;
  font-weight: 500;
}

.fonte-pequena {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================================================== 
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0 !important;
  }

  .navbar-brand img {
    max-height: 40px;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 1rem !important;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .imagePrincipal h1 {
    font-size: 2rem;
  }

  .imagePrincipal h2 {
    font-size: 1rem;
  }

  .button-rodape {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  .background-fundo1,
  .background-fundo2 {
    background-image: none !important;
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    border-bottom: 1px solid var(--border-color);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-section-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-link {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .imagePrincipal h1 {
    font-size: 1.5rem;
  }

  .imagePrincipal h2 {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ========================================================================== 
   ANIMAÇÕES GERAIS
   ========================================================================== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}


/* ==========================================================================
   LANDING PAGE - BACKGROUNDS
   ========================================================================== */

.imageLanding1 {
  background: url('https://portal.systemaonline.com.br/res/site/_img/_banners/landing_1.webp') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.imageLanding2 {
  background: url('https://portal.systemaonline.com.br/res/site/_img/_banners/landing_2.webp') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.imageLanding3 {
  background: url('https://portal.systemaonline.com.br/res/site/_img/_banners/landing_3.webp') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.imageLanding4 {
  background: url('https://portal.systemaonline.com.br/res/site/_img/_banners/mapa_2.webp') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* ==========================================================================
   EMPRESA - BANNER SOBRE
   ========================================================================== */

.imageEmpresa {
  background: url('/res/site/_img/_banners/sobre-empresa.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}
