/* Estilos compartilhados para páginas legais: LGPD, Política de Privacidade, Termos de Serviço */
body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-bottom: 1px solid rgba(255, 2, 111, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF026F;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF026F;
}

.download-cv-btn {
    background: #FF026F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-cv-btn:hover {
    background: #e6005c;
    transform: translateY(-2px);
}

.page-wrap {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.legal-page .header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-page .subtitle {
    font-size: 1.1rem;
    color: #FF026F;
    margin-bottom: 10px;
    font-weight: 500;
}

.legal-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.legal-page .section-title span {
    color: #FF026F;
}

.content-block {
    margin-bottom: 32px;
}

.content-block h2 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.content-block h3 {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.content-block ul {
    color: #cccccc;
    line-height: 1.7;
    padding-left: 20px;
    margin: 0 0 16px 0;
}

.content-block p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block a {
    color: #FF026F;
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

.contact-alternative {
    margin-top: 40px;
    padding: 24px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
}

.contact-alternative h2,
.contact-alternative h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-alternative p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.contact-alternative a {
    color: #FF026F;
    text-decoration: none;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

.legal-back-link {
    margin-top: 40px;
    margin-bottom: 24px;
}

.legal-back-link a {
    color: #FF026F;
    text-decoration: none;
}

.legal-back-link a:hover {
    text-decoration: underline;
}

.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 40px 0 20px;
}

footer.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%) !important;
}

.footer-bottom {
    border-top: 1px solid #2d2d2d;
    padding-top: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-footer .footer-bottom {
    margin-top: 0;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-legal-links p {
    margin: 0;
}

.footer-legal-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #FF026F;
}

.footer-legal-links .footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-sep {
    color: #666;
}

.footer-copy {
    color: #a0aec0;
    margin-top: 8px;
}

.legal-page .description {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Formulário (página de Solicitação de Exclusão de Dados) */
.contact-form {
    background: #2d2d2d;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #444444;
    border-radius: 10px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF026F;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group .hint {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 6px;
}

.form-group-checkbox {
    margin-bottom: 16px;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    accent-color: #FF026F;
}

.form-group-checkbox label {
    color: #e0e0e0;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    display: inline-block;
    background: #FF026F;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FF026F;
    box-shadow: 0 4px 14px rgba(255, 2, 111, 0.4);
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.btn-primary:hover {
    background: transparent;
    color: #FF026F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 2, 111, 0.45);
}
