/* ===================================
   CSS ESPECÍFICO PARA PÁGINAS LEGAIS
   GR Elevate - Política de Privacidade e Termos de Uso
   =================================== */

/* Importar fonte Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===================================
   VARIÁVEIS CSS
   =================================== */
:root {
    /* Cores principais */
    --primary-color: #00c2ff;
    --secondary-color: #0099cc;
    --accent-color: #00e6ff;
    --text-dark: #1a202c;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00c2ff 0%, #0099cc 100%);
    --gradient-hero: linear-gradient(135deg, #00c2ff 0%, #0099cc 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 194, 255, 0.9) 0%, rgba(0, 153, 204, 0.9) 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transições */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Espaçamentos */
    --container-padding: 1rem;
    --section-padding: 4rem 0;
}

/* ===================================
   RESET E BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

/* ===================================
   HERO SECTION PARA PÁGINAS LEGAIS
   =================================== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.highlight-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   SEÇÃO DE CONTEÚDO DAS PÁGINAS LEGAIS
   =================================== */
.privacy-content {
    padding: 6rem 0;
    background: var(--bg-light);
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   SIDEBAR DE NAVEGAÇÃO
   =================================== */
.policy-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.sidebar-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.policy-nav {
    list-style: none;
    margin-bottom: 2rem;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.policy-nav a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.policy-summary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.policy-summary h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.policy-summary p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* ===================================
   CONTEÚDO PRINCIPAL DAS PÁGINAS LEGAIS
   =================================== */
.policy-main {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.policy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style


: italic;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

/* ===================================
   SEÇÕES DE CONTEÚDO
   =================================== */
.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 2rem;
}

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

.policy-section h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.policy-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.policy-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.policy-section ul, 
.policy-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.policy-section li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   DESTACUES E ALERTAS
   =================================== */
.policy-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.policy-highlight i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.policy-highlight div {
    flex: 1;
}

.policy-highlight strong {
    color: #92400e;
    font-weight: 600;
}

.policy-highlight p {
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   GRIDS E LAYOUTS ESPECIAIS
   =================================== */
.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.definition-item {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.definition-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.definition-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.definition-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   GRIDS DE SERVIÇOS
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.service-item h5 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   GRIDS DE USO PROIBIDO
   =================================== */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.prohibited-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.prohibited-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.prohibited-item i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.prohibited-item div {
    flex: 1;
}

.prohibited-item h5 {
    color: #991b1b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.prohibited-item p {
    color: #7f1d1d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   ITENS DE PROPRIEDADE INTELECTUAL
   =================================== */
.ip-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.ip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    transition: var(--transition-fast);
}

.ip-item:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.ip-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.ip-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   GRIDS DE RESPONSABILIDADES
   =================================== */
.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.responsibility-item {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
}

.responsibility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.responsibility-item i {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    display: block;
}

.responsibility-item h5 {
    color: #0c4a6e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.responsibility-item p {
    color: #075985;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   RESPONSABILIDADES DO CLIENTE
   =================================== */
.client-responsibilities {
    margin: 2rem 0;
}

.client-resp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.client-resp-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.client-resp-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.client-resp-item div {
    flex: 1;
}

.client-resp-item h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.client-resp-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   MÉTODOS DE PAGAMENTO
   =================================== */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-fast);
}

.payment-method:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.payment-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.payment-method span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   ITENS DE GARANTIA
   =================================== */
.warranty-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-fast);
}

.warranty-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.warranty-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

.warranty-item span {
    color: #15803d;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   EXCLUSÕES E LIMITAÇÕES
   =================================== */
.exclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fefce8;
    border: 1px solid #eab308;
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.exclusion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.exclusion-item i {
    color: #eab308;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.exclusion-item div {
    flex: 1;
}

.exclusion-item h5 {
    color: #a16207;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exclusion-item p {
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   GRID DE USO DE DADOS
   =================================== */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.usage-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.usage-item h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.usage-item ul {
    text-align: left;
    padding-left: 1.5rem;
    margin: 0;
}

.usage-item li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* ===================================
   POLÍTICA DE COMPARTILHAMENTO
   =================================== */
.sharing-policy {
    margin: 2rem 0;
}

.no-sharing {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.no-sharing i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
    display: block;
}

.no-sharing h4 {
    color: #15803d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-sharing p {
    color: #166534;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   LISTA DE EXCEÇÕES
   =================================== */
.exception-list {
    margin: 2rem 0;
}

.exception-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.exception-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.exception-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.exception-item div {
    flex: 1;
}

.exception-item h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exception-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.security-item {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.security-item i {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: block;
}

.security-item h4 {
    color: #92400e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.security-item p {
    color: #a16207;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   NOTA DE SEGURANÇA
   =================================== */
.security-note {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-note i {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.security-note p {
    color: #7f1d1d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.security-note strong {
    color: #991b1b;
    font-weight: 600;
}

/* ===================================
   TIPOS DE COOKIES
   =================================== */
.cookies-types {
    margin: 2rem 0;
}

.cookie-type {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.cookie-type:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.cookie-type h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cookie-type h5 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.cookie-type p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.cookie-duration {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

/* ===================================
   CONTROLE DE COOKIES
   =================================== */
.cookie-control {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-control h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-control p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.browser-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.browser-links a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.browser-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.right-item {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.right-item i {
    font-size: 2.5rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    display: block;
}

.right-item h4 {
    color: #0c4a6e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.right-item p {
    color: #075985;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   EXERCER DIREITOS
   =================================== */
.exercise-rights {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.exercise-rights h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.exercise-rights p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-method span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   TIPOS DE DADOS
   =================================== */
.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-type {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.data-type:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.data-type i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.data-type h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.data-type p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   INFORMAÇÕES DE VERSÃO
   =================================== */
.version-info {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.version-info h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.version-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.version-item:last-child {
    border-bottom: none;
}

.version-date {
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    min-width: 100px;
    text-align: center;
}

.version-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    flex: 1;
}

/* ===================================
   INFORMAÇÕES DE CONTATO
   =================================== */
.contact-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-weight: 500;
}

.dpo-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: fit-content;
}

.dpo-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.dpo-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.dpo-info .contact-item {
    justify-content: center;
    color: white;
    font-weight: 500;
}

.dpo-info .contact-item i {
    color: var(--accent-color);
}

/* ===================================
   ACEITAÇÃO DOS TERMOS
   =================================== */
.terms-acceptance {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.terms-acceptance h4 {
    color: #15803d;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.terms-acceptance p {
    color: #166534;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 1200px) {
    .policy-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-sidebar {
        position: static;
        order: 2;
    }
    
    .policy-main {
        order: 1;
    }
    
    .sidebar-content {
        padding: 1.5rem;
    }
    
    .policy-main {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .privacy-content {
        padding: 3rem 0;
    }
    
    .policy-main {
        padding: 1.5rem;
    }
    
    .policy-header h2 {
        font-size: 2rem;
    }
    
    .policy-section h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .definitions-grid,
    .services-grid,
    .prohibited-grid,
    .responsibility-grid,
    .usage-grid,
    .exclusions-grid,
    .rights-grid,
    .security-measures,
    .data-types {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .payment-methods,
    .warranty-items,
    .ip-items {
        flex-direction: column;
    }
    
    .browser-links {
        flex-direction: column;
    }
    
    .browser-links a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .policy-main {
        padding: 1rem;
    }
    
    .sidebar-content {
        padding: 1rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section h4 {
        font-size: 1.2rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-method {
        justify-content: center;
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animações aos elementos quando visíveis */
.policy-section {
    animation: slideInUp 0.6s ease-out;
}

.policy-highlight,
.no-sharing,
.terms-acceptance {
    animation: fadeInScale 0.5s ease-out;
}

/* ===================================
   SCROLL SUAVE PARA ÂNCORAS
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   MELHORIAS DE ACESSIBILIDADE
   =================================== */
.policy-nav a:focus,
.browser-links a:focus,
.contact-method:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhor contraste para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   IMPRESSÃO
   =================================== */
@media print {
    .hero,
    .policy-sidebar,
    .cta-section {
        display: none;
    }
    
    .policy-wrapper {
        grid-template-columns: 1fr;
    }
    
    .policy-main {
        box-shadow: none;
        border: 1px solid #000;
        padding: 2rem;
    }
    
    .policy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .policy-section h3 {
        page-break-after: avoid;
    }
}

/* ===================================
   FIM DO CSS PARA PÁGINAS LEGAIS
   =================================== */



