@font-face {
    font-family: 'Nunito';
    src: url("/static/fonts/nunito/Nunito-Regular.woff2") format("woff2");
    font-weight: 400;
  }
  
  @font-face {
    font-family: 'Nunito';
    src: url("/static/fonts/nunito/Nunito-Bold.woff2") format("woff2");
    font-weight: 700;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: 'Nunito', sans-serif;
  }
  
  body {
    background-image: url("/static/images/datascience3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .main-container {
    width: 90%;
    max-width: 1400px;
    display: flex;
    background-color: rgba(255,255,255, 0);
  }
  
  .left-panel {
    flex: 1.5;
    padding: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .info-box {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    color: white;
    max-width: 600px;
    width: 100%;
  }
  
  .title-robot {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .titles {
    flex: 1;
  }
  
  .titles h1 {
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .titles h2 {
    font-size: 22px;
    font-weight: 400;
  }
  
  .robot-img {
    width: 110px;
    margin-left: 20px;
  }
  
  .info-box p {
    font-size: 18px;
    margin-top: 20px;
  }
  
  .right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: transparent; /* remove o cinza */
  }

  
  .login-box {
    width: 360px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* sombra mais forte embaixo */
    transition: transform 0.3s ease;
  }

  .login-box:hover {
    transform: translateY(-3px);
  }
  
  .fractalia-logo {
    max-width: 200px;
    margin: 0 auto 20px auto;
    display: block;
  }
  
  .subtitle {
    text-align: center;
    font-size: 16px;
    color: #444;
  }
  
  .welcome {
    text-align: center;
    font-size: 26px;
    color: #1e3a5f;
    margin-top: 10px;
    font-weight: 700;
  }
  
  .login-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .input-group {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
  }
  
  .input-group i {
    margin-right: 8px;
    color: #666;
  }
  
  .input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
  }
  
  .btn-login {
    background-color: #1e3a5f;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-login:hover {
    background-color: #264b8e;
  }
  
  .remember-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 14px;
  }
  



.monthly-chart-wrapper {
  height: 420px;
  padding-bottom: 50px;
}


.customer-satisfaction {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  flex-wrap: wrap;
}

.chart-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  flex: 1;
  min-width: 320px;
  max-width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chart-box h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #1e3a5f;
  text-align: center;
}

.canvas-wrapper {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#monthlyChart, #sentimentChart {
  width: 100% !important;
  height: 100% !important;
  max-height: 350px;
}