/* Margem para main em privacidade.html */
body.privacidade-pg main {
  margin: 32px 0 32px 0;
}
/* === Estilos para privacidade.html === */
.privacidade-intro {
  text-align: center;
  margin: 32px 0 0 0;
}
.privacidade-intro h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.privacidade-intro p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 18px auto;
  line-height: 1.5;
}
.privacidade-section {
  background: #222;
  border-radius: 8px;
  box-shadow: 0 2px 12px #000a;
  padding: 32px 24px;
  max-width: 800px;
  margin: 32px auto 48px auto;
  color: #fff;
}
.privacidade-section h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #fff;
}
.privacidade-section p, .privacidade-section a {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}
.privacidade-section a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.privacidade-section a:hover {
  color: #e60000;
}
@media (max-width: 900px) {
  .privacidade-section {
    max-width: 95vw;
    padding: 18px 6px;
  }
}
/* === Footer moderno === */
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 4px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e60000;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a img {
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: none;
}
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
  margin-top: 8px;
  padding-bottom: 2px;
}
@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-links {
    gap: 10px;
    font-size: 0.97rem;
  }
  .footer-bottom {
    font-size: 0.7rem;
  }
}
/* === Layout root para sticky footer === */
.layout-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 1 auto;
  display: block;
}
footer {
  flex-shrink: 0;
}
/* === Estilos para projetos.html === */
.projetos-em-desenvolvimento {
  text-align: center;
  margin: 64px 0 0 0;
}
.projetos-em-desenvolvimento h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.projetos-em-desenvolvimento .restrito-msg {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 24px;
  background: #222;
  border-radius: 8px;
  box-shadow: 0 2px 12px #000a;
  display: inline-block;
  padding: 18px 32px;
}
/* === Modal de login restrito === */
.restrito-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
.restrito-modal-content {
  background: #222;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px #000a;
  padding: 32px 24px 24px 24px;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  text-align: center;
}
.restrito-modal-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.restrito-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
}
.restrito-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.restrito-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.restrito-form label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.restrito-form input {
  background: #181818;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.restrito-form input:focus {
  border-color: #e60000;
  outline: none;
}
.restrito-btn {
  background: #e60000;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.restrito-btn:hover {
  background: #b80000;
}
.restrito-modal-message {
  color: #e60000;
  font-size: 1rem;
  margin-top: 12px;
  min-height: 20px;
}
.restrito-modal-message.error {
  color: #e60000;
}
.restrito-msg {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 32px;
  text-align: center;
}
/* === Modal de feedback do formulário de contato === */
.contato-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

/* === Loader para envio do formulário de contato === */
.contato-loader {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contato-loader-spinner {
  border: 6px solid #eee3;
  border-top: 6px solid #e60000;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  animation: contato-spin 1s linear infinite;
  margin-bottom: 18px;
}
.contato-loader-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}
@keyframes contato-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.contato-modal-content {
  background: #222;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px #000a;
  padding: 32px 24px 24px 24px;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  text-align: center;
}
.contato-modal-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.contato-modal-message {
  font-size: 1.05rem;
  margin-bottom: 0;
}
.contato-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
}
.contato-modal.success .contato-modal-content { border: 2px solid #1db954; }
.contato-modal.error .contato-modal-content { border: 2px solid #e60000; }
@media (max-width: 600px) {
  .contato-modal-content { min-width: 0; padding: 18px 6px 12px 6px; }
}
/* === Estilos para contato.html === */
.contato-intro {
    text-align: center;
    margin: 32px 0 0 0;
}
.contato-intro h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.contato-texto {
    font-size: 1.1rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 18px auto;
    line-height: 1.5;
}
.contato-form-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin: 48px 0 0 0;
}
.contato-form {
    background: #222;
    border-radius: 8px;
    box-shadow: 0 2px 12px #000a;
    padding: 32px 24px;
    min-width: 320px;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contato-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contato-form label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}
.contato-form input,
.contato-form textarea {
    background: #181818;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    transition: border-color 0.2s;
}
.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #e60000;
    outline: none;
}
.contato-btn {
    background: #e60000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.contato-btn:hover {
    background: #b80000;
}
.contato-info {
    min-width: 220px;
    max-width: 320px;
    background: #181818;
    border-radius: 8px;
    box-shadow: 0 2px 12px #000a;
    padding: 24px 18px;
    color: #fff;
    font-size: 1rem;
    margin-top: 12px;
}
.contato-info h2 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.contato-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contato-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.contato-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.contato-info a:hover {
    color: #e60000;
}
@media (max-width: 900px) {
    .contato-form-section {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .contato-form, .contato-info {
        max-width: 80vw;
    }
}
/* === Estilos para sobre.html === */
.sobre-intro {
    text-align: center;
    margin: 32px 0 0 0;
}
.sobre-intro h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.sobre-texto {
    font-size: 1rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 18px auto;
    line-height: 1.5;
}
.sobre-missao-valores {
    margin: 48px 0 0 0;
}
.sobre-colunas {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.sobre-col {
    min-width: 220px;
    max-width: 320px;
    text-align: left;
}
.sobre-col h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}
.sobre-col ul {
    margin: 0 0 16px 0;
    padding-left: 18px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}
.sobre-col li {
    margin-bottom: 6px;
}
.sobre-historia {
    margin: 48px 0 0 0;
    text-align: center;
}
.sobre-historia h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 18px;
}
.sobre-como-trabalhamos, .sobre-diferenciais, .sobre-tecnologias {
    margin: 48px 0 0 0;
    text-align: center;
}
.sobre-como-trabalhamos h2, .sobre-diferenciais h2, .sobre-tecnologias h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 14px;
}
.sobre-lista {
    list-style: disc inside;
    color: #ccc;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 18px auto;
    text-align: left;
}
.sobre-tec-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}
.sobre-tec-icons span {
    background: #222;
    color: #fff;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px #0006;
    margin-bottom: 8px;
}
.sobre-cta {
    text-align: center;
    margin: 48px 0 0 0;
}
.sobre-cta .sobre-texto {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.sobre-tec-img {
    width: 80%;
}

@media (max-width: 900px) {
    .sobre-colunas {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .sobre-col {
        width: 95vw;
    }
}
@media (max-width: 700px) {
    .sobre-intro h1 {
        font-size: 1.4rem;
    }
    .sobre-texto {
        font-size: 1rem;
    }
    .sobre-historia h2, .sobre-como-trabalhamos h2, .sobre-diferenciais h2, .sobre-tecnologias h2 {
        font-size: 1.1rem;
    }
    .sobre-lista {
        font-size: 0.97rem;
    }
    .sobre-tec-icons span {
        font-size: 0.97rem;
        padding: 6px 12px;
    }
}
/* Import Metropolis font */
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
/* Container centralizado e largura máxima */
.container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Metropolis', 'Segoe UI', Arial, sans-serif;
    line-height: 1.2;
    background: #181818 url('../img/bg-hex.png') repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background: transparent;
    padding: 32px 0 0 0;
}
.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Estilos desktop - esconder menu hambúrguer */
.menu-toggle {
    display: none;
}

.logo-center {
    display: none;
}

.menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu li {
    margin: 0 24px;
    position: relative;
}
.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 4px;
    border-bottom: 2px solid #333;
    transition: border-color 0.2s;
}
.menu a:hover {
    border-bottom: 2px solid #e60000;
}
.menu .logo {
    margin: 0 32px;
}
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 24px 0;
    width: 100%;
    height: 338px;
    max-width: 1000px;
    box-sizing: border-box;
    position: relative;
}
.banner img {
    border-radius: 8px;
    box-shadow: 0 4px 24px #000a;
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 1000 / 338;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.projetos {
    text-align: center;
    margin: 32px 0;
}
.projetos h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}
.projetos p {
    font-size: 1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 32px auto;
}
.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.hex-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hex,
.hex-vazio {
    width: 180px;
    height: 160px;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px #000a;
    transition: transform 0.2s;
    margin: -5px -18px;
}
.hex {
    background: #222;
}
.hex img {
    width: 180px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}
.hex:hover {
    transform: scale(1.05);
    background: #333;
}
footer {
    background: #111;
    padding: 24px 32px;
    flex-shrink: 0;
    position: static;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}
.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: end;
    height: 100%;
}
.footer-logo img {
    vertical-align: middle;
    width: 180px;
    height: 33px;
}
/* === Estilos para experiencia.html === */
.experiencia-apresentacao {
    text-align: center;
    margin: 32px 0 0 0;
}
.experiencia-apresentacao h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.experiencia-apresentacao h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 24px;
}
.apresentacao-texto {
    font-size: 1rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 12px auto;
    line-height: 1.5;
}
.apresentacao-foto-social {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    min-height: 220px;
    justify-content: center;
    transform: translateX(-14px);
}
.foto-perfil {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 24px #000a;
    margin-bottom: 0;
    z-index: 1;
}
.social-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 2;
}
.social-icons a {
    position: absolute;
    display: block;
    transition: transform 0.2s;
    pointer-events: auto;
    /* Posição padrão, será sobrescrita abaixo */
}
.social-icons a:hover {
    transform: scale(1.1);
}

/* Posicionamento dos ícones ao redor da foto */
.social-icons a:nth-child(1) { /* Facebook - topo direito */
    top: 94px;
    right: 45px;
}
.social-icons a:nth-child(2) { /* Instagram - meio direito */
    top: 141px;
    right: 59px;
}
.social-icons a:nth-child(3) { /* LinkedIn - base direita */
    bottom: -12px;
    right: 93px;
}
.social-icons a:nth-child(4) { /* WhatsApp - base centro */
    bottom: -31px;
    left: 172px;
}

.experiencia-historia {
    margin: 48px 0 0 0;
    text-align: center;
}
.experiencia-historia h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 18px;
}
.historia-texto {
    font-size: 1.05rem;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 14px auto;
    line-height: 1.6;
}

.experiencia-formacao {
    margin: 48px 0 0 0;
}
.formacao-colunas {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.formacao-col {
    min-width: 260px;
    max-width: 350px;
    text-align: left;
}
.formacao-col h2, .formacao-col h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}
.formacao-col ul {
    margin: 0 0 16px 0;
    padding-left: 18px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}
.formacao-col li {
    margin-bottom: 6px;
}
.curriculo-link {
    text-align: right;
    margin: 32px 0 0 0;
    font-size: 1rem;
    color: #ccc;
}
.curriculo-link a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.curriculo-link a:hover {
    color: #e60000;
}

@media (max-width: 900px) {
    .formacao-colunas {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .formacao-col {
        max-width: 95vw;
    }
}

@media (max-width: 700px) {
    .experiencia-apresentacao h1 {
        font-size: 1.4rem;
    }
    .experiencia-apresentacao h2 {
        font-size: 1.1rem;
    }
    .apresentacao-texto {
        font-size: 1rem;
    }
    .experiencia-historia h2 {
        font-size: 1.1rem;
    }
    .historia-texto {
        font-size: 0.97rem;
    }
    .formacao-col h2, .formacao-col h3 {
        font-size: 1rem;
    }
    .formacao-col ul {
        font-size: 0.97rem;
    }
    .curriculo-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 1100px) {
    .container {
        max-width: 100%;
        padding: 0 8px;
    }
    .banner {
        max-width: 100%;
        height: auto;
        min-height: 180px;
    }
    .banner img {
        width: 100%;
        max-width: 100vw;
        height: auto;
        aspect-ratio: 1000 / 338;
        min-width: 0;
        min-height: 0;
    }
    .menu li {
        margin: 0 15px;
    }
    .menu a {
        font-size: 1.9vw;
    }
}

@media (max-width: 780px) {
    .hex-grid {
        max-width: 650px;
    }
    .projetos {
    justify-items: center;
    }
    .hex-col:nth-child(5) {
        padding-left: 145px;
        margin-top: -74px;
    }
}

@media (max-width: 640px) {
    .hex-grid {
        max-width: 470px;
    }
    .hex-col:nth-child(4)>.hex-vazio {
        display: none;
    }
    .hex-col:nth-child(4),
    .hex-col:nth-child(5) {
        margin-top: -74px;
    }
}

@media (max-width: 470px) {
    .hex-grid{
        width: 360px;
    }
    .hex-col:nth-child(3) {
        margin-top: -150px;
    }
    .hex-col:nth-child(4), .hex-col:nth-child(5) {
        margin-top: unset;
    }
    .hex-col:nth-child(5) {
        padding-left: 37px;
        margin-top: -74px;
        width: 100%;
    }
}

@media (max-width: 700px) {
    /* Mostrar elementos mobile */
    .menu-toggle {
        display: flex !important;
    }
    
    .logo-center {
        display: flex !important;
    }
    
    /* Esconder menu desktop */
    .menu ul {
        display: none;
    }
    /* Garante que o menu hamburguer só aparece quando ativo */
    .menu-items {
        display: none;
    }
    .menu-items.active {
        display: flex;
        max-height: 300px;
        padding: 10px;
        line-height: 30px;
    }
    
    .menu-items li:nth-child(3)::after {
        display: none;
    }
    
    .menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }
    
    .menu-toggle {
        position: absolute;
        left: 16px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 24px;
        justify-content: space-between;
        z-index: 101;
    }
    
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: #fff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .logo-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-center img {
        width: 40px;
        height: 40px;
    }
    
    .menu-items {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 100;
    }
    
    .menu-items div {
        display: none;
    }
    
    .menu-items.active {
        max-height: 300px;
        padding: 10px;
        line-height: 30px;
    }
    
    .menu-items li {
        margin: 8px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .menu-items.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .menu-items a {
        padding: 10px 20px;
        border-bottom: none;
        font-size: 1.1rem;
    }
    
    .banner {
        height: unset !important;
        min-height: 120px;
        max-height: 180px;
        margin: unset !important;
        margin-top: 20px !important;
    }
    .banner img {
        aspect-ratio: 1000 / 338;
        height: 100%;
        max-height: 180px;
        min-height: 120px;
    }
    .menu ul {
        flex-wrap: wrap;
        gap: 8px;
        display: none;
    }
    .menu li {
        margin: 0 8px;
    }
    .projetos h1 {
        font-size: 1.5rem;
    }
    .projetos p {
        font-size: 0.95rem;
        max-width: 95vw;
    }
    /* Removidas configurações de responsividade para hex-grid e objetos internos */
    .footer-logo img {
        width: 120px;
        height: 22px;
    }
    footer {
        padding: 16px 8px;
        position: static !important;
    }
}
