/**
 * Policies Page Styles
 * Estilos para páginas de políticas (privacidade e compra)
 */

/* ═══════════════════════════════════════════════════════════════
   LAYOUT PRINCIPAL
   ═══════════════════════════════════════════════════════════════ */

.policy-page {
    min-height: 60vh;
    padding: 2rem 1rem 4rem;
    background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .policy-page {
        padding: 1.5rem 1rem 3rem;
    }

    .policy-container {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TÍTULO E SUBTÍTULO
   ═══════════════════════════════════════════════════════════════ */

.policy-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.policy-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #7a7a7a;
    text-align: center;
    margin: 0 0 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 1.6rem;
    }

    .policy-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÕES
   ═══════════════════════════════════════════════════════════════ */

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0ece8;
}

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

.policy-section h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.policy-section p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0 0 1rem;
}

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

/* ═══════════════════════════════════════════════════════════════
   LISTAS
   ═══════════════════════════════════════════════════════════════ */

.policy-section ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    list-style: none;
}

.policy-section ul li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    background: #c9a96e;
    border-radius: 50%;
}

.policy-section ul li:last-child {
    margin-bottom: 0;
}

.policy-section ul li strong {
    color: #2d2d2d;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   DESTAQUES
   ═══════════════════════════════════════════════════════════════ */

.policy-section strong {
    color: #2d2d2d;
    font-weight: 600;
}

/* Link para Meus Pedidos */
.policy-section a {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.policy-section a:hover {
    color: #a68b4f;
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO MOBILE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .policy-section h2 {
        font-size: 1rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.9rem;
    }

    .policy-section ul {
        padding-left: 1rem;
    }
}
