/* Reset e largura total */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    scroll-behavior: smooth;
    color: #333;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 2px;
    z-index: 1000;
}

header img {
    height: 40px;
    width: auto;
}

header nav a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: #f1c40f;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
    
footer {
  background: #333;
  color: white;
  padding: 30px 20px;
  font-family: sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-contato a {
  color: #CF0730;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

.footer-contato a:hover {
  color: white;
}

.footer-endereco {
  line-height: 1.4;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 10px;
  margin-top: 15px;
  font-size: 12px;
}

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #333;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        gap: 25px;
        border-bottom: 2px solid #222;
    }

    nav a {
        margin: 0;
        font-size: 18px;
    }

    .hamburger {
        display: block;
        font-size: 32px;
        cursor: pointer;
        padding: 10px;
        margin-left: 15px;
    }

    nav.active {
        max-height: 300px; 
    }
}