:root {
    --primary: #FF1100;
    --secondary: #FF8800;
    --footer-bg: #d35400; 
    --text-color: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-attachment: fixed;
}

.top-bar {
    background: rgba(0,0,0,0.3);
    padding: 16px 5%;
    color: white;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.nav-logo {
    height: 40px;
    width: auto;
    margin-right: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.btn-station {
    background: transparent;
    border: 1px solid white;
    color: white;
    height: 38px; 
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 10px;
    line-height: 1;
    box-sizing: border-box;
}

.nav-right a { 
    color: white; 
    text-decoration: none; 
    margin-left: 20px; 
    font-size: 14px; 
    display: inline-flex; 
    align-items: center;
    gap: 8px;
}

.policy-main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.card-privacidade {
    background: rgba(255, 255, 255, 0.96);
    padding: 40px;
    max-width: 900px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

h1 { color: var(--footer-bg); text-align: center; margin-bottom: 25px; font-size: 2.2rem; }
h2 { color: #e67e22; font-size: 1.3rem; margin-top: 25px; margin-bottom: 10px; border-left: 4px solid var(--secondary); padding-left: 10px; }
p, li { line-height: 1.7; font-size: 1.05rem; color: var(--text-color); text-align: justify; margin-bottom: 15px; }
ul { padding-left: 25px; }

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--footer-bg);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn, .btn-station, .nav-right a {
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.back-btn:active, .btn-station:active, .nav-right a:active {
    transform: scale(0.95);
    opacity: 0.8;
}

footer {
    background: var(--footer-bg);
    color: white !important;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    width: 100%;
}

footer p { color: white !important; margin: 0; text-align: center; }

* {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

@media (max-width: 900px) {
    .top-bar {
        padding: 15px 10px;
        margin-bottom: 25px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-logo {
        height: 65px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-left, .nav-right {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
    }

    .nav-left {
        flex-direction: column;
    }

    .nav-right a {
        margin-left: 0;
        font-size: 13px;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 12px;
        border-radius: 5px;
    }
    
    .card-privacidade { padding: 25px; }
}

@media (max-width: 480px) {
    .nav-right a { font-size: 11px; padding: 6px 8px; }
    .btn-station { padding: 6px 10px; font-size: 12px; }
}