/* Estilo para páginas de Política de Privacidade e Termos de Uso */

body {
    font-family: 'PT Sans', sans-serif;
    background-color: #4c5c6d;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.header {
    background-color: #2a3f54;
    color: white;
    padding: 30px;
    text-align: center;
}

.header img {
    max-width: 180px;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.2em;
}

.last-update {
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}

.content {
    padding: 30px 40px;
}

.important-note {
    background-color: #ffebeb;
    border-left: 4px solid #ff3b30;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(255, 59, 48, 0.1);
}

.important-note strong {
    color: #e60000;
}

.tip-box {
    background-color: #fffaed;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
}

section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #2a3f54;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 24px;
}

h3 {
    color: #2a3f54;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

strong {
    color: #2a3f54;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
}

.footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    transition: all 0.2s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: #2980b9;
}

@media (max-width: 768px) {
    .container {
        border-radius: 0;
        box-shadow: none;
    }
    
    .header {
        padding: 20px;
    }
    
    .content {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 1.8em;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s;
    display: none;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}
