/* style-revised.css */

:root {
  --bg-color: #000000;
  --text-color: #FFFFFF;
  --accent-color: #CCCCCC;
  --separator-color: #444444;
  --construction-color: #ffcc00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  width: 100%;
  position: relative;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.logo-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background-color: var(--bg-color); /* Fundo preto */
  padding: 2rem 0;
  width: 100%;
  position: relative;
}

.footer-separator {
  height: 1px;
  background-color: var(--separator-color);
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.construction-notice {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--construction-color);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--construction-color);
  border-radius: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--construction-color);
}

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--construction-color);
}

.logo-container:hover::before {
  opacity: 1;
}

/* Responsividade */
@media (max-width: 1200px) {
  .logo-container {
    max-width: 700px;
  }
  
  header {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .logo-container {
    max-width: 90%;
  }
  
  header {
    height: 60vh;
  }
  
  .footer-content {
    gap: 1rem;
  }
  
  .contact-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-separator {
    width: 90%;
  }
}

@media (max-width: 480px) {
  header {
    height: 50vh;
  }
  
  .construction-notice {
    font-size: 1rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
}
