/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    background-image: url('../img/Logo-2.jpg'); /* Caminho relativo */
    background-size: cover;        /* Cobrir toda a área */
    background-position: center;  /* Centralizar a imagem */
    background-repeat: no-repeat; /* Não repetir a imagem */
    background-attachment: fixed; /* Fixar ao rolar a página (opcional) */
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;            /* Garante que o body ocupe toda a altura */
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: #0c0c0c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0px;
}

header h2 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: normal;
}

.description {
    width: 75%;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
    color: #c7c7c7;
    font-size: 1.125rem;
}

.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 59px auto;
}

.plan {
    background: #fff;
    border: 6px solid #e6c200;
    border-radius: 8px;
    padding: 20px;
    height: 160px;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.plan h3 {
    margin-bottom: 15px;
    color: #444;
}

.plan span {
    font-size: 1rem;
}

.price {
    font-size: 1.438rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000d4;
}

.buy-btn {
    background: #FFC300;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    
}

.buy-btn:hover {
    background: #e6c200;
    color: #fff;
}

.buy-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.footer-links {
    text-align: center;
    margin-top: 30px;
}

a {
    color: #c7c7c7;
}

a:hover {
    color: #00bfff;
    text-decoration: underline;
}

.link {
    text-decoration: none;
    display: block;
    margin: auto;
    margin-bottom: 15px;
    cursor: pointer;
    width: 130px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #777;
}

.footer-nav a {
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-options {
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        max-width: 100%;
    }
}