/* FOLHA DE ESTILOS DOS TERMOS DE USO */

:root {
    --primary: #002d5b; /* Azul SMT Profundo */
    --secondary: #0056b3; /* Azul Interativo */
    --accent: #00a8cc; /* Azul de Destaque */
    --bg-light: #f8f9fa;
    --text-main: #333;
    --text-muted: #6c757d;
    --card-shadow: 0 10px 30px rgba(0, 45, 91, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
    overflow: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hero Section */
.hero-terms {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: -60px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* Container Principal */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.modern-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.section-title i {
    color: var(--accent);
}

/* Itens de Termos */
.term-box {
    background: #fdfdfd;
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.term-box:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

.term-box h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.term-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Grid de Segurança */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Footer da Página */
.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
}

.contact-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-btn:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 168, 204, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-terms { padding: 60px 0; text-align: center; }
    .modern-card { padding: 25px; }
}
