
body{
    margin:0;
    font-family: 'sans-serif';
   }
   .title{
    color:#310d2c;
    text-align:center;  
   }



/* Estilo base */
.header {
    background-color: #310d2c;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: auto;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    color: white;
}

.nav-link:hover {
    color: yellow;
}

/* Menu toggle button */
/* Menu toggle button styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    position: relative;
    z-index: 10;
}

.icon,
.icon::before,
.icon::after {
    content: '';
    display: block;
    background-color: gold;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.icon {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.icon::before {
    top: -8px;
}

.icon::after {
    top: 8px;
}

/* Active state: turn into an "X" */
/* Active state: turn into an "X" */
.menu-toggle.active .icon::before {
    transform: rotate(45deg);
    top: 0;
}
.menu-toggle.active .icon::after {
    transform: rotate(-45deg);
    top: 0;
}
.menu-toggle.active .icon {
    background-color: transparent;
}


/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #310d2c;
        width: 100%;
        padding: 1.3rem 0;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-link {
        margin-left:25px;
    }
} 




/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #310d2c;
        width: 100%;
        padding: 1rem 0;
        display: none;
    }

    .nav-list.active {
        display: flex; 
    }
}









footer{
    background-color: #310d2c; 
    color:gold;
    padding-top: 35px;
    padding-bottom:5px;
}
.social-media{
  display:flex;
  justify-content: center;
  gap:15px;
}
.social-media img{
  width:65px;
  box-sizing:border-box;
  border-radius:50%;
  transition:transform 0.3s ease;
}
.social-media img:hover{
    transform:scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.parrafoFooter{
    text-align:center;
}
.parrafoFooter a{
    text-decoration: none;
    color:yellow;
}


/* Estilo responsivo */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}
