/* MENU HAMBÚRGUER - MOBILE */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Esconde o menu em telas pequenas */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 30px;
    }

    nav ul#menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: black;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
    }

    nav ul#menu.active {
        display: flex;
    }

    nav ul li {
        padding: 10px 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }
}

/* ======================= */
/* 🎧 RESPONSIVIDADE TRACK LIST */
/* ======================= */
@media (max-width: 768px) {
    section.tracks h2 {
        font-size: 30px;
    }
    .tracks iframe {
        height: 500px;
    }
}

/* ======================= */
/* 🎟️ RESPONSIVIDADE LICENCIAMENTO */
/* ======================= */
@media (max-width: 768px) {
    .plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
    }
}

/* ======================= */
/* 📞 FORMULÁRIO DE CONTATO RESPONSIVO */
/* ======================= */
@media (max-width: 600px) {
    .contact form {
        width: 90%;
    }

    .contact input,
    .contact textarea {
        font-size: 1rem;
    }

    .button-container {
        width: 100%;
    }
}

/* ======================= */
/* 🚀 FOOTER RESPONSIVO */
/* ======================= */
@media (max-width: 600px) {
    .footer nav {
        flex-direction: column;
        text-align: center;
    }

    .footer nav a {
        display: block;
        margin: 10px 0;
        font-size: 1.4em;
        font-weight: 400;
    }
    .footer .social-icons a {
        display: block;
        margin: 5px 0;
        
    }
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
    text-align: center;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #df0000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* HERO */


.hero input, .hero button {
    padding: 10px;
    margin-top: 10px;
}

.tracks {
    font-size: 2em;
}

/* LICENSING */
.licensing {
    background: black;
    padding: 2em 1.2em 5em 1.2em;
    
}

.licensing h2 {
    font-weight: 900;
    padding-bottom: 4em;
}

.plan h3 {
    font-weight: 900;
    color: #df0000;
}

.plan .price {
    font-size: 2em;
    font-weight: 700;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.plan {
    background: #111;
    padding: 20px;
    border-radius: 10px;
}

.plan button {
    background: #df0000;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.plan ul li {
    font-size: 20px;
}

iframe {
    border: none;
    border-bottom: 4px solid white; /* Define uma borda vermelha */
}

/* CONTACT SECTION */
.contact {
    background: #111; /* Fundo escuro */
    color: white;
    padding: 20px 20px 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white; /* Cor do título */
}

/* FORM CONTAINER */
.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.contact input, 
.contact textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.contact input:focus, 
.contact textarea:focus {
    border-color: #ff7b7b;
}

/* TEXTAREA */
.contact textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.button-container {
    padding: 0px 12px 0 12px ;
    width: 100%;
}

.button-container button {
    width: 100%;  
    background-color: #df0000;
    padding-top: 1.3em;
    padding-bottom: 1.3em;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-container button:hover {
    background-color: #df00009d;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact form {
        width: 90%;
    }
}

/* FOOTER */
.footer {
    background: #000; /* Fundo preto */
    color: white;
    
    padding-top: 8em;
    padding-bottom: 8em;
    text-align: center;
}

/* LINKS DO FOOTER */
.footer a {
    color: #ff4c4c; /* Cor dos links */
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    margin: 0 10px;
}

.footer a:hover {
    color: #ff7b7b;
}

/* SOCIAL MEDIA ICONS */
.footer .social-icons {
    margin-top: 20px;
}

.footer .social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    transform: scale(1.2);
}

/* COPYRIGHT */
.footer .copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .footer a {
        display: block;
        margin: 5px 0;
    }
}
