@charset "utf-8";

/* =============================
   RESET BÁSICO
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============================
   BODY
============================= */
body {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  font-size: 1.1em;
  padding: 0;
  margin: 0;
}

/* =============================
   HEADER FIXO
============================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 900;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: 2%;
}

.logo-container a {
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 45px;
}

.company-name {
  font-family: "Monotype Corsiva", cursive;
  color: #f5a623;
  font-size: 1.8em;
  margin-left: 10px;
}

.menu-icon {
  font-size: 30px;
  color: #f5a623;
  cursor: pointer;
  margin-right: 2%;
}

/* =============================
   MENU HAMBURGUER
============================= */
.menu {
  display: none;
  position: fixed;
  right: 0;
  top: 70px;
  background-color: rgba(0, 0, 0, 0.9);
  width: 200px;
  border-left: 1px solid #f5a623;
  z-index: 1000;
}

.menu-active {
  display: block;
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 15px;
}

.menu a {
  color: #f5a623;
  text-decoration: none;
  font-size: 18px;
}

/* =============================
   MAIN
============================= */
.main {
  overflow: hidden;
  padding: 120px 20px 40px 20px; /* espaço para header fixo */
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  color: #ffa500;
  text-align: center;
  margin-bottom: 20px;
}

/* =============================
   FORMULÁRIO
============================= */
label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #f5a623;
}

input,
select,
textarea,
button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
}

input,
select,
textarea {
  background-color: #222;
  color: #fff;
}

button {
  background-color: #ffa500;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.9;
}

.hidden {
  display: none;
}

.message {
  margin-top: 15px;
  font-weight: bold;
}

.success {
  color: #0f0;
}

.error {
  color: #f00;
}

/* =============================
   MODAL PADRÃO (SE UTILIZAR)
============================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #000;
  color: #f5a623;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #f5a623;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
}

.close {
  color: #f5a623;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* =============================
   FOOTER AJUSTADO E RESPONSIVO
============================= */
footer {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin: 10px;
}

.footer-section h2 {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.icon-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-section img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-section img:hover {
  transform: scale(1.1);
}

.footer-section.videos img {
  height: 65px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f5a623;
}

/* =============================
   RESPONSIVIDADE
============================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin: 20px 0;
  }

  .icon-container {
    gap: 15px;
  }

  .footer-section img {
    height: 40px;
  }

  .footer-section.videos img {
    height: 50px;
  }
}
