/* Importando fonte padrão parecida com o Flutter (Roboto) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

/* Mapeamento do arquivo cores.dart */
:root {
  --azul-escuro: #148FBF;
  --laranja: rgb(249, 154, 38);
  --laranja-escuro: rgb(202, 128, 38);
  --cinza-claro: #EDEDED;
  --preto: #1D1B20;
  --background-scaffold: #F8F9FA;
  --laranja-opaco: rgba(249, 154, 38, 0.24);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: var(--background-scaffold);
  color: var(--preto);
}

/* AppBar / Header */
.app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  height: 60px;
  padding: 0 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.115);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

/* Estilo do botão atualizado para suportar a tag <a> */
.btn-entrar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 150px;
  height: 40px;
  background-color: var(--laranja);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn-entrar:hover {
  background-color: var(--laranja-escuro);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to bottom, #ffffff, var(--laranja-opaco));
  padding: 80px 60px;
  display: flex;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 500;
  color: var(--azul-escuro);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.5;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: #FAFAFA;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: bold;
  color: var(--azul-escuro);
  letter-spacing: 1.2px;
  margin-bottom: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #616161;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.social-link i {
  font-size: 16px;
  color: var(--laranja);
}

.divider {
  width: calc(100% - 80px);
  max-width: 800px;
  height: 0.5px;
  background-color: #E0E0E0;
  border: none;
  margin: 30px 0;
}

.copyright p {
  font-size: 12px;
  color: #757575;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Responsividade (Telas menores que 900px) */
@media (max-width: 900px) {
  .app-bar {
    padding: 0 10px;
  }

  .btn-entrar {
    width: 100px;
  }

  .hero-section {
    padding: 40px 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .footer-columns {
    gap: 30px;
  }
}