/* style/sbscript_styles */

a {
    color: #ffffff; /* Branco para texto */
    text-decoration: underline; /* Adiciona sublinhado */
    font-size: inherit; /* Herda o tamanho da fonte do elemento pai */
}

a:visited {
    color: #ffffff; /* Mesmo branco para links visitados */
    text-decoration: underline; /* Garante consistência com links não visitados */
    font-size: inherit; /* Herda o tamanho da fonte do elemento pai */
}

a:hover {
    color: #f0f0f0; /* Branco mais claro ao passar o mouse (opcional) */
    text-decoration: none; /* Remove sublinhado ao passar o mouse (opcional) */
}

a:active {
    color: #dcdcdc; /* Branco suave ao clicar (opcional) */
    text-decoration: underline; /* Mantém o sublinhado ao clicar */
}

/* Main section styles */
.subscription-container {
    text-align: center;
    margin-top: 20px; /* Add some space at the top */
}

.subscription-container p {
    text-align: center;
    margin-bottom: 20px; /* Add some space at the top */    
    }

/* Plan selection styles */
.subscription-container form {
    margin-top 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px; /* Space between the plans */
}

.subscription-container .plan {
    background-color: #1C2B3D;
    padding: 20px;
    width: 48%; /* Adjust width for two items */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Align contents inside */
    height: 100%; /* Ensure both plans grow to the same height */
    min-height: 200px; /* Set a minimum height if needed */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.subscription-container .plan h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.subscription-container .plan p {
    font-size: 18px;
    margin-bottom: 20px;
}

.subscription-container .plan button {
    padding: 10px;
    background-color: #00B0F0;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.subscription-container .plan button:hover {
    background-color: #008CBA;
}

/* Boas-vindas */
.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(10, 27, 40, 0.95); /* Fundo levemente opaco */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Destaque sutil */
    max-width: 400px;
    width: 90%;
    margin: 20px auto; /* Centralizado horizontalmente */
}

.welcome-container h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.welcome-container p {
    color: #c0c0c0;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.welcome-container .btn-primary {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.welcome-container .btn-primary:hover {
    background-color: #0056b3;
}

.user-info {
    background-color: rgba(10, 27, 40, 0.9); /* Fundo similar ao registro */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
    margin: 20px auto;
    color: #c0c0c0;
    font-size: 14px;
    text-align: center;
}

.user-info p {
    margin: 10px 0;
    color: #ffffff;
}

.user-info strong {
    color: #DE5A07; /* Destaque em laranja */
    font-weight: bold;
}

.action-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.action-button .button {
    display: inline-block;
    text-align: center;
    background-color: #007bff; /* Blue background */
    color: white;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.action-button .button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #004085;
}

.action-button .button:active {
    background-color: #004085;
    border-color: #003366;
}

/* Ajuste para dispositivos com largura entre 768px e 1280px */
@media (min-width: 769px) and (max-width: 1280px) {
    .confirmation-container {
        max-width: 600px; /* Limita a largura máxima */
        width: 90%; /* Adapta-se à tela */
        margin: 0 auto; /* Centraliza horizontalmente */
        padding: 20px; /* Espaçamento interno */
    }

    .confirmation-container p {
        font-size: 16px; /* Ajuste do texto para telas médias */
        line-height: 1.5; /* Espaçamento entre linhas */
        margin-bottom: 12px; /* Espaçamento entre os parágrafos */
    }

    .action-button .button {
        font-size: 16px; /* Tamanho do texto no botão */
        padding: 12px 24px; /* Botão com dimensões adequadas */
        margin-top: 20px; /* Espaço acima do botão */
    }
}

/* Ajustes para telas menores que 768px */
@media (max-width: 768px) {
    .confirmation-container {
        max-width: 100%; /* Adapta-se à largura da tela */
        width: 90%; /* Garante espaçamento lateral */
        margin: 0 auto; /* Centraliza o container */
        padding: 20px; /* Espaçamento interno */
        text-align: center; /* Centraliza o texto */
    }

    .confirmation-container p {
        font-size: 14px; /* Texto menor e proporcional */
        line-height: 1.5; /* Espaçamento confortável entre linhas */
        margin-bottom: 12px; /* Espaçamento entre os parágrafos */
    }

    .action-button .button {
        font-size: 14px; /* Texto menor no botão */
        padding: 10px 20px; /* Botão compacto */
    }
}

/* Ajustes para telas ainda menores (máximo de 480px) */
@media (max-width: 480px) {
    .confirmation-container p {
        font-size: 12px; /* Reduz o tamanho do texto */
        margin-bottom: 10px; /* Margem inferior menor */
    }

    .action-button .button {
        font-size: 12px; /* Texto menor no botão */
        padding: 8px 16px; /* Botão mais compacto */
    }
}