@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0398ff;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #16c472;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #37393a;
  --bs-primary: #0398ff;
  --bs-secondary: #e6e6e6;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #cecece;
  --bs-dark: #18191a;

  --input-color: #141414;

  --border-default: 2px solid rgba(50, 50, 50, 0.9);
  --bg-blue: linear-gradient(to right, rgba(0, 242, 255, 0.2), transparent), rgb(56, 56, 56, 0) !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

header {
  display: flex;
  justify-content: center;
}

main {
  flex: 1;
  /* Faz o main ocupar o espaço restante */
  padding: 20px;
  padding-bottom: 80px;
  min-height: 100vh;

}

/* ESTILOS FONTE */
h1 {
  font-size: 40px;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--bs-gray);
  margin: 0;
  text-transform: uppercase;
}

h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  letter-spacing: -1px
}

/* ESTILOS FONTE */
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--bs-gray);
  margin: 0;
}


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: gray;
  background-color: rgb(20, 20, 20);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  min-height: 100vh;
  /* Garante que o body ocupe toda a altura da tela */
}

section {
  margin: 10px 15%;
  height: 80%;
}


/* NAV */
.container-nav {

  background-color: var(--bs-dark);
  border-bottom: 3px solid rgba(70, 70, 70, 0.3);
  height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 5px;
  justify-content: space-around;
}

/* NAV LOGO */
.logo-nav img {
  height: 50px;
  display: flex;
}


/* NAV CONTENT */
.content-nav {
  margin: 15px;
  display: flex;
  gap: 1rem;
  /* Espaçamento de 15px à esquerda e à direita de cada link */
}

.content-nav a {
  color: var(--bs-gray)
}


/* NAV UTILS */
.utils-nav {
  border-radius: 10px;
  color: white !important;
  height: 70%;
  margin: auto 0;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 1rem
}

.utils-nav a {
  color: var(--bs-light);
}

/* Pesos personalizados */
.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: var(--bs-gray);
}

.text-white {
  color: white !important;
}

.text-blue {
  color: var(--bs-primary) !important;
}

/* Estilos de texto */

.text-upper {
  text-transform: uppercase;
}

/* Estilos do footer */
footer {
  background-color: var(--bs-dark);
  border-top: 3px solid rgba(70, 70, 70, 0.3);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 5px;
  justify-content: space-around;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Espaço entre o logo e o texto */
}

.footer-logo {
  height: 30px;
  /* Ajuste o tamanho do logo conforme necessário */
}


.img-desc-landpage {
  width: 500px;
}

/* Estilos Card */

.card {
  border-radius: 10px;
  padding: 0px 40px;
  background-color: var(--bs-dark);
  margin: 20px 0;
  padding: 20px 30px;
  border: 3px solid rgba(70, 70, 70, 0.3);
}

/* Estilos LP */
.landinpage {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Estilo BTN */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  display: contents;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  display: inline-block;
  color: var(--bs-white);
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px 0 10px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.1s ease;
  transform: scale(1);
  background:
    linear-gradient(to right, rgba(114, 114, 114, 0.2), transparent), rgb(56, 56, 56, 0) !important;
  border: var(--border-default);

}

.btn:hover {
  transform: scale(1.02);
  transition-delay: 0.0s;
}

.btn-generate {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  display: contents;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  display: inline-block;
  color: var(--bs-white);
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0px 5px 0px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.1s ease;
  transform: scale(1);
  background-color: var(--bs-primary);
}

/* Badge */
.badge {
  border-radius: 5px;
  background-color: var(--bs-primary);
  padding: 5px;
  color: white;
}

/* Estyle Messages return process */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* Estilos para a mensagem de feedback */
#password-match-message {
  margin-top: 5px;
  font-size: 0.9em;
}

/* Estilos de cores */
.bg-blue {
  background:
    var(--bg-blue) !important;
  border: 2px solid rgba(0, 242, 255, 0.4) !important;
}

.bg-green {
  background:
    linear-gradient(to right, rgba(9, 255, 0, 0.2), transparent), rgb(56, 56, 56, 0) !important;
  color: white !important;
  border: 2px solid rgba(9, 255, 0, 0.3) !important;
}

.bg-red {
  background:
    linear-gradient(to right, rgba(255, 0, 0, 0.2), transparent), rgb(56, 56, 56, 0) !important;
  color: white !important;
  border: 2px solid rgba(255, 0, 0, 0.3) !important;
}

.bg-white {
  background:
    linear-gradient(to right, rgba(114, 114, 114, 0.2), transparent), rgb(56, 56, 56, 0) !important;
  border: var(--border-default);
}

.text-green {
  color: var(--bs-green) !important;
}

/* Alinhamentos */
.m-auto {
  margin: auto !important;
}

.m-center {
  display: flex;
  flex-direction: column;
  align-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.mt-10 {
  margin-top: 1rem;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.m-10 {
  margin: 1rem;
}

/* Planos container */
.plans-list {
  display: grid;
  gap: 10px;
}

.plans-item {
  display: inline-flex;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: var(--border-default);
  justify-content: space-between;
}

.plans-item:hover {
  background: var(--bg-blue) !important;
  /* Ou use uma cor específica, como #007bff */
  transform: scale(1.02);
  transition-delay: 0.0s;
  cursor: pointer;
  
  border: 2px solid rgba(0, 242, 255, 0.4) !important;

}

.plan-info {
  padding: 10px 20px;

}

/* Estilos Registro */
.logo-register {
  height: 100px;
}

.register-container {
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.form-register {
  padding: 20px;
  width: 100%;
  max-width: 50%;
  text-align: center;
}


.form-group {
  margin-bottom: 15px;
  text-align: left;
  padding: 2rem 2rem 0;
}



.input-group {
  margin-bottom: 15px;
}


label {
  display: block;
  margin-bottom: 5px;
  color: var(--bs-gray);
}

input {
  width: 100%;
  padding: 10px;
  border: var(--border-default);
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  color: var(--bs-gray);
  background-color: var(--input-color)
}

input:focus {
  border: 2px solid var(--bs-gray);
}

select {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

select:focus {
  border-color: var(--bs-blue);
}




/* Elemento User */
.content-user {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  gap: 1rem;
}


.logo-menu {
  height: 50px;
  display: flex;

}

.menu-user {
  background-color: var(--bs-dark);
  border: var(--border-default);
  min-height: 100vh;
  min-width: 300px;
  padding-top: 20px;
  padding: 1rem;
  color: #212529;
  font-size: 14px;
  border-radius: 10px;
}

.btn-user-menu {
  border: var(--border-default);
  border-radius: 10px;
  background-color: var(--bs-dark);
  margin-bottom: 10px;
  height: 3rem;
  align-content: center;
  padding-inline: 20px;
  transition: all 0.5s ease;
  color: var(--bs-white);

}

.btn-user-menu:hover {
  transition-delay: 0.0s;
  background:
    linear-gradient(to right, rgba(0, 242, 255, 0.2), transparent), rgb(56, 56, 56, 0);
  color: white !important;
  border: 2px solid rgba(0, 242, 255, 0.4);

  color: var(--bs-dark);
}

.btn-user-menu.active {
  transition-delay: 0.0s;
  background:
    linear-gradient(to right, rgba(0, 242, 255, 0.2), transparent), rgb(56, 56, 56, 0);
  color: white !important;
  border: 2px solid rgba(0, 242, 255, 0.4);

  color: var(--bs-dark);
}


.main-user {
  width: 100%;
}


/* Elemento Login */
.login-container {
  margin: 13% auto;
  display: flex;
  width: 70%;
  max-width: 500px;
  justify-content: center;
  align-items: center;
}

.login-container img {
  width: 50%;
}

.login-form {
  padding: 40px;
}



.login-form input[type="checkbox"] {
  width: auto;
}

.footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Elemtos VMs */
.card-vms {
  display: flex;
  gap: 30px;
}

/* Elementos Status */
.card-content {
  padding: 30px 0px;
  margin-bottom: 2rem;
}


.card-content-title {
  background-color: var(--bs-blue);
  border-radius: 0px 10px 10px 0px;
  width: fit-content;
  padding: 0px 30px;
  align-content: center;
  /* align-content: end; */
  height: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.card-content-description {
  padding: 20px 30px 0px;
}

.card-content-date {
  padding: 20px 30px 0px;
  color: var(--bs-white);
}

/* Elemtos para organizar em colunas */
.colunm {
  display: flex;
  justify-content: space-around;
}


.chat-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-title {
  padding: 10px;
  background-color: #00000017;
  border-radius: 10px;
  margin-bottom: 10px;
}

.message {
  max-width: 70%;
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.message-time {
  font-size: 10px;
  color: #0000004f;
}

.message.user {
  align-self: flex-end;
  background-color: #16c4724a;
  margin-left: auto;
  color: var(--bs-gray-dark);
}

.message.support {
  align-self: flex-start;
  background-color: #0398ff45;
  margin-right: auto;
  color: var(--bs-gray-dark);
}

.user-name {
  font-size: 14px;
  font-weight: bold;
}

.message-text {
  margin: 0;
  font-size: 14px;
}

.chat-send-message {
  display: flex;
  gap: 10px;
}

.input-message {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.button-send-message {
  margin-top: 10px;
  display: flex;
  /* flex-direction: column; */
  width: 50px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
  background-color: #0398ff;

}

/* Style form create VM */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}


.info-box {
  background-color: #e7f3fe;
  border-left: 6px solid #2196F3;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.password-container {
  display: flex;
  align-items: center;
}

.password-container input {
  flex: 1;
}

.full-width {
  grid-column: span 2;
}

.validation-error {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 0.25rem;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.is-valid {
  border-color: #28a745 !important;
}

/* Adicione isso se quiser ícones de validação */
.is-valid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Table Machines */
/* Adicione ao seu arquivo styles.css */
.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-gray);
  border-collapse: collapse;
  font-size: 11px;
}

.table th,
.table td {
  padding: 5px 0 5px 0;
  vertical-align: top;
  text-align: center;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

/* Style button action */
/* Adicione ao seu styles.css */
.action-btns {
  display: flex;
  gap: 0.5rem;
}

.btn-sm {
  padding: 1px 5px;
  font-size: 0.775rem;
  margin: 0px 2px;
}


/* Button WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  width: max-content;
  background: #075e54;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}