/* style.css */

:root {
    --bg-color: #0c0c14; 
    --card-bg: #1a1a2e;
    --primary-color: #0072ff;
    --primary-glow: #00c6ff; 
    --text-color: #e0e0e0; 
    --text-muted: #888;
    --border-color: #3a3a5e; 
    --success-color: #28a745;
    --error-color: #dc3545; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color); 
    color: var(--text-color); 
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    box-sizing: border-box;
}

.main-container {
    background-color: var(--card-bg); 
    border: 1px solid var(--border-color); 
    border-radius: 15px; 
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.main-container.wider {
    max-width: 1100px; 
}

h1 {
    font-size: 2.2rem; 
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-glow), var(--primary-color)); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    margin: 0 0 1rem 0;
}

p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

a {
    color: var(--primary-glow); 
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-color);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    background-color: var(--bg-color); 
    border: 1px solid var(--border-color); 
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-color); 
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.3);
}

button, .cta-button {
    padding: 1rem; 
    border-radius: 10px; 
    font-weight: 600;
    font-size: 1.1rem; 
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: none;
    display: block;
}

.primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-glow)); 
    color: white; 
}

.secondary {
    background-color: transparent; 
    color: var(--primary-glow); 
    border: 1px solid var(--primary-color);
}

.secondary:hover {
    background-color: var(--primary-color); 
    color: white; 
}

.message {
    padding: 1rem; 
    border-radius: 10px; 
    margin-bottom: 1.5rem; 
    font-weight: 500;
    text-align: center;
}

.error {
    background-color: rgba(220, 53, 69, 0.1); 
    border: 1px solid var(--error-color); 
    color: var(--error-color); 
}

.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color); 
    color: var(--success-color); 
}

.links-footer {
    margin-top: 2rem;
}

.links-footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Estilos para a página Index */
header {
    margin-bottom: 3rem;
}

.plans-container {
    display: flex;
    justify-content: center; 
    gap: 2rem; 
    flex-wrap: wrap; 
    margin-bottom: 3rem;
}

.plan {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color); 
    border-radius: 15px; 
    padding: 2rem;
    width: 320px;
    display: flex;
    flex-direction: column; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.plan:hover {
    transform: translateY(-10px); 
}

.plan.premium {
    border-color: var(--primary-color); 
    box-shadow: 0 0 25px rgba(0, 114, 255, 0.3); 
}

.plan h2 {
    font-size: 1.8rem; 
    font-weight: 700;
    margin-top: 0;
}

.plan ul {
    list-style: none; 
    padding: 0; 
    text-align: left;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.plan ul li {
    margin-bottom: 1rem;
    display: flex; 
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0 1.5rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted); 
}

.footer {
    margin-top: 4rem; 
    color: var(--text-muted); 
    
}