/* ============================= */
/* RESET BÁSICO MINIMO           */
/* ============================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  background-color: #fafafa;
  color: #222;
}

/* ============================= */
/* FORMULÁRIOS                   */
/* ============================= */
.form-message {
  margin-top: 0.5rem;
  font-weight: 600;
}

input, textarea {
  outline: none;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================= */
/* HEADER                         */
/* ============================= */
.site-header {
  background-color: #5a0015;
  color: #fff;
  position: relative;
}

.header-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.logo span {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo img {
  height: 3rem;
}

/* ============================= */
/* MENU DESKTOP                   */
/* ============================= */
.menu-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.menu-desktop ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  position: relative;
}

.menu-desktop li {
  position: relative;
}

.menu-desktop a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  display: block;
}
.menu-desktop a:hover {
  text-decoration: underline;
}
.menu-desktop a.active {
  font-weight: 600;
}

/* Submenu Desktop */
.menu-desktop .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #5a0015;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 1000;
  border-radius: 0.25rem;
}

.menu-desktop .submenu li a {
  padding: 0.5rem 1rem;
}

.menu-desktop li:hover > .submenu {
  display: block;
}

/* ============================= */
/* MENU MOBILE                    */
/* ============================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
.menu-toggle svg {
  width: 2rem;
  height: 2rem;
  stroke: #fff;
  stroke-width: 2;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  background-color: #5a0015;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}
.menu-mobile.show {
  display: flex;
}

.menu-mobile ul {
  list-style: none;
  flex-direction: column;
  padding: 1rem 0;
}

.menu-mobile li {
  padding: 0.5rem 1rem;
}

.menu-mobile a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.menu-mobile a:hover,
.menu-mobile a.active {
  font-weight: 600;
}

/* Submenu Mobile */
.submenu-mobile {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
}

.submenu-parent-mobile.active > .submenu-mobile {
  display: flex;
}

/* ============================= */
/* ÍCONES SOCIAIS                 */
/* ============================= */
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons i {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}
.social-icons i:hover {
  color: #facc15;
}

/* ============================= */
/* FOOTER                         */
/* ============================= */
.footer {
  background-color: #5a0015;
  color: #fff;
  padding: 1.5rem 1rem;
}
.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-container nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
}
.footer-container nav a:hover {
  text-decoration: underline;
}
.footer-container .social-icons {
  gap: 0.75rem;
}
.footer-container p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ============================= */
/* RESPONSIVIDADE                 */
/* ============================= */
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
