@charset "utf-8";

html, body { 
  margin: 0; 
  padding: 0; 
  background-color: #ffffff; 
  font-family: 'Inter', sans-serif; 
}

body {  margin: 0; padding: 0; 
  font-family: 'Inter', sans-serif; }

.wrap { display: flex; flex-direction: column;  }

header { 
  border-bottom: 1px solid #e0e0e0; background-color: #ffffff;  }

.empty-line { 
  height: 60px; background-color: #ffffff; 
  border-bottom: 1px solid #e0e0e0;  }

main { 
  flex: 1; 
  padding: 20px; 
  background-color: #ffffff; 
}

main a { 
  font-family: 'Inter', sans-serif; 
  background-color: transparent;  
  font-weight: normal; 
  color: black; 
  text-decoration: none; 
  font-size: 18px; 
}

main a:hover { 
  color: blue; 
  text-decoration: none; 
  font-size: 18px; 
}

.f { 
  font-family: 'Inter', sans-serif; 
  background-color: white;  
  font-weight: normal; 
  color: black; 
  text-decoration: none; 
  font-size: 16px; 
}

.f:hover { 
  color: blue; 
  text-decoration: none; 
  font-size: 16px; 
}

/* LINKS CADASTRO / LOGIN */
.cad, .log { 
  font-family: 'Inter', sans-serif; 
  background-color: transparent;  
  font-weight: normal; 
  color: black; 
  text-decoration: none; 
  font-size: 18px; 
  white-space: nowrap; /* evita quebra feia */
}

.cad:hover, .log:hover { 
  color: blue; 
  text-decoration: none; 
  font-size: 18px; }

.page-title { 
  text-align: center; 
  font-size: 2.5rem;
  font-weight: bold; 
  margin: 40px 0; 
  color: blue;  
}

/* =========================
   FOOTER
========================= */

footer.rod {
  background: transparent;
  padding: 18px 12px 28px;
  overflow-x: hidden; }

.footer-inner {  background: transparent; width: 100%;
  max-width: 1100px; margin: 0 auto; display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative; }

.rod-links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px auto 0;
  box-sizing: border-box;
  padding: 0 20px;
}

footer.rod a.f {
  text-decoration: none;   background: transparent;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  transition: transform .18s ease, color .18s;
}

footer.rod a.f img {   background: transparent;
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

footer.rod a.f:hover {   background: transparent;
  transform: translateY(-4px);
  color: #0a66ff;
}

footer .copy {   background: transparent;
  margin-top: 14px;
  font-size: 14px;
  color: #667;
  width: 100%;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box; }

/* =========================
   RESPONSIVO
========================= */

/* Telas grandes */
@media (min-width: 1200px) {
  .rod-links {
    max-width: 1100px;
    gap: 20px;
    padding: 0 60px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .rod-links {
    max-width: 640px;
    gap: 20px;
    padding: 0 20px;
  }
}

/* MOBILE – CORREÇÃO DO MENU */
@media (max-width: 600px) {

  /* 🔥 MENU LOGIN / CADASTRO */
  .user-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .cad, .log {
    font-size: 14px;
    padding: 4px 6px;
  }

  .user-menu span {
    font-size: 13px;
    white-space: nowrap;
  }

  /* FOOTER */
  .rod-links {
    justify-content: space-around;
    gap: 8px;
    max-width: 100%;
    padding: 0 8px;
  }

  footer.rod a.f img {
    width: 42px;
    height: 42px;
  }

  footer.rod {
    padding: 18px 8px 22px;
  }

  footer .copy {
    font-size: 13px;
    padding: 0 8px;
  }
}

/* EXTRA SMALL (320px) */
@media (max-width: 360px) {

  .cad, .log {
    font-size: 13px;
    padding: 3px 5px;
  }

  .rod-links {
    gap: 6px;
    padding: 0 5px;
  }

  footer.rod a.f img {
    width: 38px;
    height: 38px;
  }
}

/* Corrige texto do seletor de idiomas */
.lang-btn {
  color: #000 !important;
  background-color: #fff !important;
}

/* Corrige cor das opções internas */
.lang-btn option {
  color: #000 !important;
  background-color: #fff !important; }