/* ================== CONFIGURAÇÕES GERAIS ================== */
:root {
  --azul-escuro: #041c3b;
  --azul-medio: #093775;
  --dourado: #f9d990;
  --vidro: rgba(4, 28, 59, 0.7);
}

html { scroll-behavior: smooth; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background-color: var(--azul-escuro);
}

ul, li, a, nav {
  list-style: none;
  text-decoration: none;
}

.bg-image {
  min-height: 100vh;
  background-image: url(Menu.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
}

/* ================== HERO / MENU ================== */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  background: var(--vidro);
  backdrop-filter: blur(8px);
  border-radius: 5px;
  padding: 40px 15%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease forwards;
}

.logo {
  width: 520px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.slogan {
  color: var(--dourado);
  font-size: 26px;
  margin-bottom: 40px;
}

.menu {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 28px;
  justify-content: center;
}

.menu a {
  padding: 5px 0px;
  border: 2px solid var(--dourado);
  border-radius: 30px;
  color: var(--dourado);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
}

.menu a:hover {
  background: var(--dourado);
  color: var(--azul-medio);
  box-shadow: 0.5px 5px 10px rgba(249,217,144,0.5);
}

/* ================== SERVIÇOS ================== */
h1 {
  background-color: var(--azul-escuro);
  grid-column: 1/-1;
  text-align: center;
  color: var(--dourado);
  font-size: 50px;
  padding-top: 25px;
}

.servico {
  background: var(--azul-escuro);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  justify-content: center;
}

.box-dedicado {
  width: 250px;
  border-style: outset;
  border-radius: 16px;
  border-color: var(--dourado);
  padding: 24px;
  height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.box-dedicado:hover {
  transform: translateY(-8px);
  box-shadow: 1px 5px 10px rgba(249,217,144,0.45);
}

.box-dedicado h3 {
  color: var(--dourado);
  font-size: 25px;
  text-align: center;
  margin-bottom: 2px;
  margin-top: -20px;
}

.box-dedicado p {
  color: var(--dourado);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 5px;
  text-align: center;
}

.box-fracionado {
  width: 250px;
  border-style: outset;
  border-radius: 16px;
  border-color: var(--dourado);
  padding: 24px;
  height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.box-fracionado:hover {
  transform: translateY(-8px);
  box-shadow: 1px 5px 10px rgba(249,217,144,0.45);
}

.box-fracionado h3 {
  color: var(--dourado);
  font-size: 25px;
  text-align: center;
  margin-bottom: 2px;
  margin-top: -20px;
}

.box-fracionado p {
  color: var(--dourado);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 5px;
  text-align: center;
}

.box-grande-porte {
  width: 250px;
  border-style: outset;
  border-radius: 16px;
  border-color: var(--dourado);
  padding: 24px;
  height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.box-grande-porte:hover {
  transform: translateY(-8px);
  box-shadow: 1px 5px 10px rgba(249,217,144,0.45);
}

.box-grande-porte h3 {
  color: var(--dourado);
  font-size: 25px;
  text-align: center;
  margin-bottom: 2px;
  margin-top: -20px;
}

.box-grande-porte p {
  color: var(--dourado);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 5px;
  text-align: center;
}

.box-pequeno-porte {
  width: 250px;
  border-style: outset;
  border-radius: 16px;
  border-color: var(--dourado);
  padding: 24px;
  height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.box-pequeno-porte:hover {
  transform: translateY(-8px);
  box-shadow: 1px 5px 10px rgba(249,217,144,0.45);
}

.box-pequeno-porte h3 {
  color: var(--dourado);
  font-size: 25px;
  text-align: center;
  margin-bottom: 2px;
  margin-top: -20px;
}

.box-pequeno-porte p {
  color: var(--dourado);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 5px;
  text-align: center;
}

/* ================== COTAÇÕES ================== */
h2 {
  color: var(--dourado);
  text-align: center;
  font-size: 35px;
  margin-bottom: 10px;
}

.formulario {
  min-height: 100vh;
  padding: 15px 15px;
}

.form {
  max-width: 470px;
  margin: auto;
  background: var(--vidro);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 1px 10px 20px rgba(0,0,0,0.7);
}

.form input {
  background: transparent;
  border: 1.5px solid var(--dourado);
  border-radius: 12px;
  padding: 5px 0px;
  padding-right: 270px;
  padding-left: 10px;
  display: block;
  color: var(--dourado);
  font-size: 13px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form input:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(249,217,144,0.35);
}

.botao {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.botao button {
  padding: 10px 34px;
  border-radius: 30px;
  border: none;
  background: var(--dourado);
  color: var(--azul-escuro);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.botao button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 5px rgba(249,217,144,0.6);
}

.radio-group {
 font-family: heebo-light, sans-serif;
 letter-spacing: 1px;
 display: inline!important;
 font-size: 16px;
 color: var(--dourado);
 display:flex;
 flex-direction: column;
 padding-top: 2%;
 padding-bottom: 2%;
}

.radio-group input {
  display: inline!important;
  inline-size: 10%;
  color: var(--dourado);
}

.form,
.inicio-cotacao,
.final-cotacao {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form ::placeholder {
  color: var(--dourado);
  font-size: 15px;
  padding-left: 8px;
}
/* ================== CONTATO ================== */
.contato {
  min-height: 30vh;
  padding: 10px 20px;
  background-color: var(--vidro);
  color: var(--dourado);
}

.contato h3 {
  font-size: 35px;
  margin-bottom: 20px;
}

/* ================== FOOTER ================== */
footer {
  background: var(--vidro);
  color: var(--dourado);
  text-align: center;
  padding: 2px;
  font-size: 11px;

}

/* ================== ANIMAÇÕES ================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================== TELA LOGIN ================== */
.login-box {
  
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box-content { 
  background: var(--vidro);
  backdrop-filter: blur(3px);
  border-radius: 5px;
  padding: 60px 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease forwards;
}

.login-box-content input {
  background-color: transparent;
  border-radius: 20px;
  border-style: solid;
  border-color: var(--dourado);
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: var(--dourado);
  font-size: 15px;
  padding-left: 10px;
}

.login-box-content ::placeholder {
  color: var(--dourado);
  font-size: 15px;
  padding-left: 8px;
}

.login-box-content h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  text-align: center;
}

.login-box,
.login-box-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.login-box-content button {
  display: flex;
  justify-content: center;
  padding: 5px 60px;
  border-radius: 20px;
  border: none;
  background: var(--dourado);
  color: var(--azul-escuro);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.erro {
  color: var(--dourado);
}

.botao-voltar {
  padding: 5px 30px;
  border-radius: 20px;
  border: none;
  background: var(--dourado);
  color: var(--azul-escuro);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease; 
}

.botao-voltar :hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 5px rgba(249,217,144,0.6);
}

.botao-voltar button {
  color: var(--azul-escuro);
}

/* ================== PAINEL ================== */
.global h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  text-align: center;
  margin-bottom: 10px;
}

.página {
display: flex;
justify-content: center;
gap: 10px;
margin: 20px;
}

.página header ul li {
display: inline;
gap: 10px;
}

.menu-painel { 
  display: grid;
  gap: 20px;
}

.menu-painel a {
  gap: 40px;
  border: 2px solid var(--dourado);
  border-radius: 20px;
  color: var(--dourado);
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  padding: 2px 20px;
}

.menu-painel a:hover {
  background: var(--dourado);
  color: var(--azul-medio);
  box-shadow: 0.5px 5px 10px rgba(249,217,144,0.5);
}

.selecao {
  justify-content: center;
  align-items: center;
  color: var(--dourado);
  font-size: 15px;
}

.selecao input {
  background-color: transparent;
  border: 1px solid var(--dourado);
  border-radius: 10px;
  width: 140px;
  padding: 2px 20px;
  color: var(--dourado);
  text-align: center;
}

.selecao ::placeholder {
  color: var(--dourado);
}

select {
  background-color: transparent;
  border: 1px solid var(--dourado);
  border-radius: 10px;
  width: 140px;
  padding: 2px 20px;
  color: var(--dourado);
  text-align: center;
}

select option {
  background-color: var(--azul-escuro);
  color: var(--dourado);
}

.mapa {
  margin: 0;
  padding: 0;
}

.importar-planilha p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: none;
  color: var(--dourado);
  padding: 5px 10px;
}

.importar-planilha input {
 color: var(--dourado);
}

/* ================== RESPONSIVO (CELULAR) ================== */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: auto;
    padding: 40px 10px;
  }

  .hero-content {
    padding: 30px 15px;
  }

  .logo {
    width: 100%;
    max-width: 300px;
  }

  .slogan {
    font-size: 18px;
    margin-bottom: 25px;
  }

  /* MENU */
  .menu {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu a {
    font-size: 14px;
    padding: 8px;
  }

  /* SERVIÇOS */
  h1 {
    font-size: 32px;
  }

  .servico {
    padding: 30px 15px;
  }

  .servico > div {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* FORMULÁRIO */
  .form {
    width: 100%;
    padding: 15px;
  }

  .form input {
    width: 100%;
    padding: 10px;
  }

  .radio-group input {
    inline-size: auto;
    color: var(--dourado)!important;
  }

  h2 {
    font-size: 26px;
  }

  /* CONTATO */
  .contato h3 {
    font-size: 26px;
  }

  /* LOGIN */
  .login-box-content {
    padding: 30px 20px;
    width: 100%;
  }

  .login-box-content h2 {
    font-size: 32px;
  }

  .login-box-content input {
    width: 100%;
  }

  /* PAINEL */
  .global h1 {
    font-size: 32px;
  }

  .página {
    flex-direction: column;
    align-items: center;
  }

  .menu-painel {
    grid-template-columns: 1fr;
  }

  .selecao {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #mapa {
    height: 300px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  footer {
    font-size: 10px;
  }
}
