/* style-privacy.css */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --dark-color: #0f172a;
    --dark-light: #1e293b;
    --gray-color: #64748b;
    --light-color: #f1f5f9;
    --white-color: #ffffff;
    --success-color: #10b981;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.nav__logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--primary-color);
}

/* Privacy Content */
.privacy-content {
    margin-top: 80px;
    padding: 60px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: var(--gradient);
    color: var(--white-color);
    border-radius: 16px;
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-update {
    font-size: 1.1rem;
    opacity: 0.9;
}

.privacy-body {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: var(--white-color);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
}

.privacy-section h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white-color);
}

.privacy-section p {
    color: var(--gray-color);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Highlight Section */
.privacy-section.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 2px solid var(--primary-color);
}

/* Commitment List */
.commitment-list {
    margin-top: 2rem;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.commitment-letter {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.commitment-item p {
    margin: 0;
    color: var(--dark-color);
}

/* Privacy Footer */
.privacy-footer {
    background: var(--white-color);
    padding: 3rem;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.privacy-footer p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-cta {
    margin-top: 2rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn--primary {
    background: var(--gradient);
    color: var(--white-color);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
}

.footer__section p {
    color: var(--gray-color);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__section a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .commitment-item {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Adicionar ao final do arquivo style-privacy.css existente */

/* Terms List Styles */
.terms-list {
    margin: 2rem 0;
}

.terms-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid #ef4444;
    border-radius: 8px;
}

.terms-item svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-item p {
    margin: 0;
    color: var(--dark-color);
    font-size: 1rem;
}

/* Responsive adjustments for terms */
@media (max-width: 768px) {
    .terms-item {
        padding: 0.75rem;
    }

    .terms-item svg {
        width: 20px;
        height: 20px;
    }
}
