/* ===== CSS inspirado no OnlyFans real ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00b0f0;
    --primary-dark: #0093c0;
    --bg: #f6f8fb;
    --card: #ffffff;
    --border: #e6e9ef;
    --text: #111827;
    --text-muted: #6b7280;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    font-size: 14px;
}

header div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: var(--primary);
    text-decoration: none;
}

header button {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

header button:hover {
    background-color: var(--primary-dark);
}

/* ===== MAIN ===== */
main {
    flex: 1;
    display: flex;
    align-items: stretch;
}

main > div {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: calc(100vh - 60px);
}

/* LADO ESQUERDO: imagem */
.side-image {
    flex: 1;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,176,240,0.06) 0%, rgba(0,176,240,0.02) 100%);
}

.side-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LADO DIREITO: formulário */
.side-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--card);
    padding: 400px 1 0px;
}

.side-form form {
    width: 90%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.side-form label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 14px;
}

.side-form input {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
}

.side-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(0,176,240,0.1);
}

.side-form button {
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.side-form button:hover {
    background-color: var(--primary-dark);
}

/* Texto abaixo do formulário */
.side-form p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 20px 0;
    text-align: center;
    line-height: 1.4;
}

/* Links auxiliares */
.side-form .links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.side-form .links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.side-form .links a:hover {
    text-decoration: underline;
}

/* Botões sociais */
.side-form .social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-form .social button {
    padding: 10px;
    background: #23b7f1;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
}

.side-form .social button:hover {
    background-color: #f5f5f5;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 20px;
    background: var(--card);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
    main > div {
        flex-direction: column;
    }

    .side-image {
        display: none; /* Esconde a imagem no mobile */
    }

    .side-form {
        padding: 30px 20px;
    }

    .side-form form {
        width: 100%;
    }
}
