* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    background-color: #ffffff;
}

header {
    background-color: #b9e3ff;
    padding: 15px 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

nav a:hover { color: #ffffff; }

.logo-item {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.hero {
    background-color: #ffffff;
    text-align: center;
    padding: 13px 20px 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.termos-img {
    max-width: 400px;
    height: auto;
    margin-bottom: 5px;
    padding-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.termos-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0px;
    background-color: #ffffff;
    border-radius: 20px;
}

.termos-container h1 {
    font-family: 'Fredoka', sans-serif;
    color: #a4d8f0;
    font-size: 1.5rem;
    margin-top: 0px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #a4d8f0;
    padding-bottom: 20px;
}

.hero-content {
    opacity: 0;
    transform: translateY(10px);
    animation: pageEnter 0.5s ease forwards;
}

@keyframes pageEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.termos-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
}

.artist-limitations p {
    line-height: 1.0;
    margin-bottom: 8px;
}

.artist-limitations h1 {
    margin-bottom: 20px;
}

.artist-limitations p:last-child {
    margin-top: 15px;
    font-style: italic;
}

.termos-container strong {
    color: #333;
    display: block;
    margin-top: 15px;
}

.btn-twitter {
    display: inline-block;
    padding: 12px 28px;
    background-color: #a4d8f0;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-twitter:hover {
    background-color: transparent;
    color: #5b84ce;
    border: 2px solid #34738e;
    transform: translateY(-2px);
}

.btn-twitter i {
    font-size: 18px;
}

@media (min-width: 769px) {
    .mobile-menu-icon { display: none; }
}

.header-mobile {
    display: none;
}

.header-desktop {
    display: block;
}

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }
}

.menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: 45px;
    cursor: pointer;
    z-index: 300;
}

.menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2.5px;
    background: #333;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 200;
}

.header-mobile nav ul {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: 0.3s;
    z-index: 250;
}

.header-mobile nav ul.active {
    transform: translateX(0);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {

    .termos-img {
    max-width: 270px;
    height: auto;
    margin-bottom: 5px;
    padding-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


    .btn-twitter {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .termos-container {
        margin: 15px 10px;
        padding: 10px;
    }

    .termos-container h1 {
        font-size: 1rem;
    }

    .termos-container p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .termos-container {
        max-width: 95%;
        padding: 20px;
    }
}