* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
}

:root {
    --default-pad: 40px;
    --medium-pad: calc(var(--default-pad) / 2);
    --small-pad: calc(var(--medium-pad) / 2);
    --extra-pad: calc(var(--default-pad) / 2.5);
    --mini-pad: calc(var(--small-pad) / 2);
    --graph-font-color: var(--font-color);
    --graph-border-color: var(--border-color);
    --graph-main-content: var(--main-content);
    --graph-shadow: var(--shadow);
    --background-error: #f3e419e3;
    --color-font-error: #ff0101e3;
    --background-pending: #f3e419e3;
    --color-font-pending: #2cec05e3;
    --background-cancelled: #e9b6b4e3;
    --color-font-cancelled: #ff0101e3;
    --background-deferred: #abcdf5e3;
    --color-font-deferred: #152cace3;
    --background-difal: #f5b0abe3;
    --color-font-difal: #cf1b1be3;
    --background-advance: #f8c6aae3;
    --color-font-advance: #cf1b1be3;
}


body {
  background: #f8fafc;
  color: #0f172a;
}

.page {
  display: flex;
}

/* LEFT CONTENT */
.content {
  width: 66%;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/8007397/pexels-photo-8007397.jpeg") center/cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.4rem;
  opacity: 0.95;
  color: #ffffff; /* Branco puro */
}

.badges {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badges span {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

/* SECTIONS */
.feature {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature.white {
  background: #fff;
}

.feature.light {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.feature img {
  width: 100%;
  border-radius: 20px;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tag.cyan { background: #cffafe; color: #0e7490; }
.tag.blue { background: #dbeafe; color: #1e40af; }
.tag.orange { background: #ffedd5; color: #9a3412; }

.feature h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
}

.feature ul {
  list-style: none;
}

.feature li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature li i {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: #cffafe;
  color: #0891b2;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stats div {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfeff, #e0f2fe);
}

.stats strong {
  font-size: 2.5rem;
  color: #0369a1;
}

/* CONTACT */
.contact {
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--warning-color), var(--orange-color));
  color: #fff;
}

.contact a {
  margin-top: 1.5rem;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #0369a1;
  font-weight: 600;
  text-decoration: none;
}

.contact h2, p{
  color: #0369a1;
}

/* ================================================== */
/* ======================LOGIN======================= */
/* ================================================== */

/* O painel que segura o login (lado direito) */
.login-panel {
    width: 34%;
    height: 100vh;
    background-color: #303234; /* Cor de fundo do painel */
    display: flex;
    align-items: center;      /* CENTRALIZA VERTICALMENTE */
    justify-content: center;   /* CENTRALIZA HORIZONTALMENTE */
    position: fixed;
    right: 0;
    top: 0;
}

/* O box de login propriamente dito */
.login-container {
    width: 380px; /* Um pouco mais largo para respiro */
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #303234;
    border-radius: 12px;
}

/* Ajuste do formulário e inputs */
.inputbox {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Estilização manual dos inputs (já que não tem Bootstrap) */
.form-control {
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    background-color: #424242;
    border: 1px solid #555;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
}

.form-control:focus {
    outline: none;
    border-color: #d2baba;
}

/* Grupo do Usuário com o Olho */
.input-group {
    display: flex;
    width: 100%;
}

.input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.visibility-btn {
    background-color: #555;
    border: 1px solid #555;
    border-left: none;
    border-radius: 0 6px 6px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Botão de Log In */
button.btn-light {
    width: 100%;
    height: 45px;
    background-color: #d2baba;
    color: #303234;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button.btn-light:hover {
    background-color: #c4a8a8;
}

.logo_large {
    height: 180px;
    width: auto;
}

.logo_large_div {
    display: flex;
    justify-content: center;
    margin-bottom: 30px; 
}

.eye {
    width: 20px;
    height: auto;
    filter: invert(1); /* Se o ícone for preto, isso o torna visível no fundo escuro */
}

/* ===========================
   RESPONSIVE – MOBILE / TABLET
   =========================== */

@media (max-width: 1023px) {

  .page {
    flex-direction: column;
  }

  .content {
    width: 100%;
  }

  /* LOGIN PANEL */
  .login-panel {
    width: 420px;
    min-width: 380px;
    background: linear-gradient(180deg, #1e1f24, #14151a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.35);
    z-index: 10;
  }

  .login-panel form {
    max-width: 420px;
    margin: 0 auto;
  }

  .login-container {
    width: 100%;
    max-width: 360px;
    background-color: #303234;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  }


  /* HERO */
  .hero {
    height: auto;
    min-height: 70vh;
    padding: 4rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  /* FEATURES */
  .feature {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }

  .feature img {
    height: 280px;
  }

  /* STATS */
  .stats {
    flex-direction: column;
  }

  /* CONTACT */
  .contact {
    padding: 3rem 1.5rem;

  }

}

/* SMALL PHONES */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .feature h2 {
    font-size: 2rem;
  }

  .login-header i {
    width: 48px;
    height: 48px;
  }

}

/* ===========================
   WEB IMAGE HERO SECTION
   =========================== */

.hero {
  position: relative;
  min-height: 75vh;
}

.hero-image {
  background-image: url("/static/web_photo1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 120px 40px;
}