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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #412868;
  text-align: center;
   z-index: 1; 
  background-image: url("../imagens/fundo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: 0.6s;
  
}
h1 {
        font-size: clamp(36px, 8vw, 60px);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        color: #00aaff;
        padding-top: 5%;
        text-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
        margin-bottom: 40px;
      }
.accordion {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 400px;
  gap: 16px;
  transition: 0.3s;
  filter: brightness(0.9);
}

.accordion:hover {
  gap: 0;
}

.accordion li {
  position: relative;
  overflow: hidden;
  flex: 0 0 80px;
  border-radius: 50px;
  opacity: 0.75;
  cursor: pointer;
}

.accordion li img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
}

.accordion li,
.accordion li img,
.accordion li .content,
.accordion li .content span {
  transition: 0.3s;
}

.accordion h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 45px;
  border-bottom: 2px solid #fff;
  margin-bottom: 10px;
  white-space: nowrap;
}

.accordion li .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  padding: 15px;
  background: #02022e;
  background: linear-gradient(
    0deg,
    rgb(0 0 0 / 70%) 10%,
    rgb(255 255 255 / 0%) 100%
  );
  opacity: 0;
  visibility: hidden;
}

.accordion li .content span {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 50px;
  translate: -50%;
  scale: 0.85;
  visibility: hidden;
  opacity: 0;
}

.accordion li:hover {
  flex: 0 1 260px;
  scale: 1;
  z-index: 10;
  opacity: 1;
}

.accordion li:hover .content {
  opacity: 1;
  visibility: visible;
}

.accordion li:hover span {
  scale: 1;
  opacity: 1;
  visibility: visible;
}
 
      /* ======== ESTILOS DE PROJECTOS (versão musical com secções extras) ======== */
   
      .values>h1 {
        text-align: center;
        color: #1e90ff;
        letter-spacing: 1px;
      }
     .values>h2 {
        text-align: center;
        color: #1e90ff;
        letter-spacing: 1px;
      }

     .values h1 {
        font-size: 2.5rem;
        margin-bottom: 50px;
      }

      .values h2 {
        font-size: 2rem;
        margin: 80px 0 40px;
      }

      /* ======== Secção de valores ======== */
      .values {
        margin-top: 100px;
        text-align: center;
      }

      .values-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
      }

      .value-item {
        background: rgba(30, 30, 60, 0.7);
        padding: 15px 25px;
        border-radius: 12px;
        border: 1px solid #1e90ff;
        font-weight: 500;
        color: #fff;
        transition: transform 0.3s;
      }

      .value-item:hover {
        transform: scale(1.1);
        background: rgba(30, 144, 255, 0.15);
      }

      /* ======== Slogan ======== */
      .slogan {
        margin-top: 80px;
        text-align: center;
        font-size: 1.4rem;
        color: #66a6ff;
        font-weight: 600;
        letter-spacing: 1px;
      }

      @media (max-width: 600px) {
        h1 { font-size: 2rem; }
        h2 { font-size: 1.6rem; }
        .slogan { font-size: 1.2rem; }
      }
 
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "Poppins", sans-serif;
        color: #f9f9f9;
        overflow-x: hidden;
        transition: background 0.4s ease;
      }

      body.open .background {
        filter: blur(20px) brightness(0.3);
      }

      /* MENU HAMBURGUER */
      .burger {
        z-index: 4;
        top: 20px;
        left: 20px;
        display: grid;
        place-items: center;
        width: 60px;
        height: 60px;
        opacity: 0.8;
        transition: 0.3s;
        position: fixed;
      }

      .burger:hover {
        opacity: 1;
      }

      .burger-icon {
        position: relative;
        width: 32px;
        scale: 1.2;
        border: 0;
      }

      .burger-icon,
      .burger-icon::before,
      .burger-icon::after {
        display: block;
        border-radius: 2px;
        height: 2px;
        background: #f9f9f9;
        transition: 0.5s;
      }

      .burger-icon::before,
      .burger-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
      }

      .burger-icon::before {
        top: -8px;
      }

      .burger-icon::after {
        top: 8px;
      }

      .burger input {
        position: absolute;
        scale: 0;
      }

      .burger input:checked ~ .burger-icon::before,
      .burger input:checked ~ .burger-icon::after {
        width: 20px;
      }

      .burger input:checked ~ .burger-icon::before {
        transform: rotate(-45deg) translate(-4px, -2px);
      }

      .burger input:checked ~ .burger-icon::after {
        transform: rotate(45deg) translate(-4px, 2px);
      }

      /* MENU */
      .menu {
        z-index: 3;
        inset: 0;
        display: grid;
        place-items: center;
        background: rgba(0, 0, 0, 0.85);
        translate: -100% 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.6s ease;
        position: fixed;
      }

      body.open .menu {
        opacity: 1;
        translate: 0;
        visibility: visible;
      }

      .menu nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60%;
      }

      .menu a {
        position: relative;
        color: #f9f9f9;
        font-size: clamp(22px, 5vw, 32px);
        font-weight: 500;
        padding: 18px 0;
        width: 100%;
        text-decoration: none;
        text-align: center;
        transition: 0.4s;
      }

      .menu nav:hover a {
        opacity: 0.25;
      }

      .menu nav a:hover {
        opacity: 1;
        padding-left: 10px;
      }

      .menu a::before,
      .menu a::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        translate: -10px -50%;
        width: 20px;
        height: 20px;
        opacity: 0;
        transition: 0.3s;
        background: #f7f7f7;
      }

      .menu a::before {
        border-radius: 2px;
        height: 2px;
        width: 30px;
        right: 18px;
      }

      .menu a::after {
        background: transparent;
        border: 2px solid #f7f7f7;
        border-bottom: 0;
        border-left: 0;
        rotate: 45deg;
      }

      .menu a:hover::before,
      .menu a:hover::after {
        opacity: 1;
        translate: 0 -50%;
      }

      /* CONTEÚDO PRINCIPAL */
      main {
        z-index: 2;
        position: relative;
        text-align: center;
        padding: 120px 20px;
        max-width: 900px;
        margin: auto;
        transition: 0.5s ease;
      }

      body.open main {
        filter: blur(6px) brightness(0.6);
        pointer-events: none;
      }

      main h1 {
        font-size: clamp(36px, 8vw, 60px);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        color: #00aaff;
        text-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
        margin-bottom: 40px;
      }

    
   

