/**
 * Conversa Clara com a IA - Privacy Policy Page Styles
 */

/* ==========================================================================
   Privacy Hero
   ========================================================================== */
.privacy-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(80px + 4rem) var(--container-padding) 4rem;
    position: relative;
    overflow: hidden;
    background: var(--gray-900);
    text-align: center;
}

.privacy-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.privacy-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.privacy-hero__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: -100px;
    right: -100px;
}

.privacy-hero__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--yellow);
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
}

.privacy-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.privacy-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.privacy-hero__title-accent {
    -webkit-text-stroke: 2px var(--yellow);
    color: transparent;
}

@media (max-width: 768px) {
    .privacy-hero__title-accent {
        -webkit-text-stroke: 1.5px var(--yellow);
    }
}

.privacy-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Privacy Content
   ========================================================================== */
.privacy-content {
    padding: var(--section-padding) var(--container-padding);
    background: var(--gray-800);
}

.privacy-content__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Sections */
.privacy-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.privacy-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--yellow);
}

/* Headings */
.privacy-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.privacy-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
.privacy-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Lists */
.privacy-section ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.privacy-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

/* Links */
.privacy-section a {
    color: var(--teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.privacy-section a:hover {
    color: var(--yellow);
    text-decoration: underline;
}

/* Subsection */
.privacy-subsection {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-subsection h3 {
    margin-top: 0;
}

/* List cards */
.privacy-list-cards {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.privacy-list-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-list-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.privacy-list-card p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Rights grid */
.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-right {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
}

.privacy-right:hover {
    border-color: rgba(255, 201, 0, 0.3);
}

.privacy-right strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.privacy-right p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Info box */
.privacy-info-box {
    margin: 1.5rem 0;
    padding: 2rem;
    background: var(--teal-dark);
    border-left: 4px solid var(--teal);
}

.privacy-info-box p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-info-box p:last-child {
    margin-bottom: 0;
}

.privacy-info-box strong {
    color: var(--white);
}

/* Contact section */
.privacy-section--contact {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 0;
}

.privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.privacy-contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.privacy-contact-item a {
    display: block;
    font-size: 1.125rem;
    color: var(--white);
}

.privacy-contact-item span {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.privacy-contact-item address {
    font-style: normal;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.privacy-social-links {
    display: flex;
    gap: 1.5rem;
}

.privacy-social-links a {
    font-size: 1rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .privacy-hero {
        min-height: 40vh;
    }

    .privacy-content {
        padding: 3rem var(--container-padding);
    }

    .privacy-section {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .privacy-intro {
        font-size: 1.125rem;
        padding: 1.5rem;
    }

    .privacy-subsection {
        padding: 1.5rem;
    }

    .privacy-section--contact {
        padding: 2rem;
    }

    .privacy-rights-grid {
        grid-template-columns: 1fr;
    }
}
