/*=============== GLOBAL STYLES ===============*/
html, body {
    margin: 0;
    padding: 0;
    font-family: 'inter', sans-serif;
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: inherit;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    z-index: 50;
    box-sizing: border-box;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 0.5;
}

.header .logo img {
    height: 32px;
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav a {
    margin-right: 1.5rem;
    color: #fff;
    transition: color 0.3s;
}

.nav a:hover {
    color: #1DB954;
}

/*=============== HERO SECTION ===============*/
.hero {
    background: linear-gradient(to bottom, #1db954, #000);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1 rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: slidedown 1s ease-out;
}

.hero p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.cta {
    background: #1DB954;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta:hover {
    background: #1ED760;
    transform: scale(1.05); 
}

.subtext {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 0,5rem;
}

/*=============== PLANOS / PRICING ===============*/
.planos {
    background: #121212;
    padding: 6rem 2rem;
    text-align: center;
}

.planos h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    width: 250px;
    padding: 2rem;
    background: #000;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;

    transform: translateY(20px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    color: #1DB954;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    background: #1DB954;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background: #1ed760;
    transform: scale(1.05);
}

/*=============== Beneficios / Benefits  ===============*/
.beneficios {
    padding: 6rem 2rem;
    text-align: center;
}

.beneficios h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit {
    width: 150px;
    padding: 1rem;
    background: #121212;
    border-radius: 20px;
    transition: transform 0.3s, opacity 0.5s;
   transform: translateY(20px);
   animation: fadeIn 1s forwards;
   animation-delay: 0.2s;
}

.benefit:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/*=============== FAQ ===============*/
.faq {
    padding: 6rem 2rem;
    background: #121212;
    text-align: center;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: #000;
    color: #fff;    
    border: none;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #1db954;
    color: #000;
}

.faq-answer {
    display: none;
    background: #121212;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    color: #ccc;
}

/*=============== FOOTER ===============*/
.footer {
    padding: 2rem;
    text-align: center;
    color: #777;
    background: #000;
}

/*=============== ANIMATIONS ===============*/
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown { 
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in ao scroll */
.appear {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}