/* ===== PÁGINA DE POLÍTICA DE PRIVACIDADE ===== */
.privacy-policy-page {
    display: flex;
    flex-wrap: wrap;
}

.privacy-content,
.content-sections-info {
    width: 100%;
    margin: 20px auto 0;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid #000;
    padding-top: 20px;
}
.content-sections{
    margin-bottom: 20px;
}
.content-sections span strong{
    font-weight: 500;
    font-size: 17px;
    text-decoration: underline;
}
.content-sections p{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.content-sections h4{
    font-size: 19px;
    font-weight: bold;
}
/* ===== SEÇÕES ===== */
.privacy-section {
    padding: 2.5rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
}

.title-sections h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.section-content {
    line-height: 1.7;
    color: #495057;
}

.section-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.section-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== GRID DE PRINCÍPIOS ===== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.principle-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.principle-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.principle-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.principle-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #6c757d;
}

/* ===== DIREITOS DO USUÁRIO ===== */
.user-rights {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.user-rights h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rights-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.rights-list li:last-child {
    border-bottom: none;
}

.rights-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    min-width: 16px;
}

.rights-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== INFORMAÇÕES DE CONTATO ===== */
.contact-info {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #2196f3;
}

.contact-info ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.contact-info li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* ===== RECURSOS DE SEGURANÇA ===== */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.security-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.security-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.security-item span {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

/* ===== MÉTODOS DE CONTATO ===== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== INFORMAÇÕES DA EMPRESA ===== */
.company-info {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.company-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-details p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.company-details strong {
    font-weight: 600;
}

/* ===== LISTAS ===== */
.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.75rem;
    color: #495057;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 1rem 0;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .principle-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .principle-item i {
        margin: 0 auto 0.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-method i {
        margin: 0 auto 0.5rem;
    }

    .security-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .security-item {
        padding: 0.75rem;
    }

    .security-item i {
        font-size: 1.25rem;
    }

    .rights-list li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .rights-list li i {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .principles-grid {
        gap: 0.75rem;
    }

    .principle-item {
        padding: 0.75rem;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding: 0.75rem;
    }

    .company-info {
        padding: 1.5rem;
    }

    .company-details h3 {
        font-size: 1.25rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section {
    animation: fadeInUp 0.6s ease-out;
}

.privacy-section:nth-child(1) {
    animation-delay: 0.1s;
}

.privacy-section:nth-child(2) {
    animation-delay: 0.2s;
}

.privacy-section:nth-child(3) {
    animation-delay: 0.3s;
}

.privacy-section:nth-child(4) {
    animation-delay: 0.4s;
}

.privacy-section:nth-child(5) {
    animation-delay: 0.5s;
}

.privacy-section:nth-child(6) {
    animation-delay: 0.6s;
}

.privacy-section:nth-child(7) {
    animation-delay: 0.7s;
}

/* ===== ESTILOS ESPECÍFICOS PARA TÍTULO DA PÁGINA ===== */
.titlebar .page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .titlebar .page-title {
        font-size: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .titlebar .page-title {
        font-size: 1.75rem;
        padding: 1rem 0;
    }
}