:root {
    --primary-dark: #0a3a6a;
    --primary: #0b5394;
    --primary-light: #e1f0ff;
    --primary-lighter: #f0f7ff;
    --white: #ffffff;
    --text: #0a3a6a; /* Texto em azul escuro */
    --text-light: #5c7c9c; /* Azul mais claro para texto secundário */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.highlight, .license-terms, .contact-info {
    background-color: var(--primary-lighter);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(11, 83, 148, 0.15); /* Adicionando sombreamento azulado */
}

.warning-box {
    background-color: var(--primary-lighter);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(11, 83, 148, 0.15); /* Adicionando sombreamento azulado */
}
/* Header */
.header-top {
    background: linear-gradient(to top, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top h1 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.header-top h1 i {
    color: white; /* Ícone branco no header */
}
body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f5f8fa;
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    padding-bottom: 180px; /* Mais espaço para o footer */
}

.main-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    margin-top: 1rem;
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1, h2, h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h1 {
    text-align: center;
    padding-bottom: 1rem;
}

h2 {
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
    position: relative;
}

.last-update {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.95rem;
}

.section {
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(11, 83, 148, 0.1);
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateY(-3px);
}

.highlight, .license-terms, .contact-info {
    background-color: var(--primary-lighter);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
}

.warning-box {
    background-color: var(--primary-lighter);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
}

ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

li {
    margin-bottom: 0.8rem;
    color: var(--text);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.acceptance-box {
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(11, 83, 148, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-container:hover {
    background-color: var(--primary-lighter);
}

.checkbox-container input {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-container label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text);
}

.accept-button {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.accept-button:hover {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(11, 83, 148, 0.2);
}

.accept-button:disabled {
    background: #a0bcd4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
footer {
    background: linear-gradient(to top, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 2rem 0 1.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.footer-link i {
    color: white; /* Ícones brancos no footer */
}
.footer-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text p {
    margin-bottom: 0.5rem;
}

/* Ícones */
i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        padding-bottom: 180px;
    }

    .logo {
        max-width: 150px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .accept-button {
        max-width: 100%;
    }

    .header-top-container,
    .main-container,
    .footer-container {
        width: 92%;
    }

    .section, .highlight, .warning-box, .license-terms, .contact-info {
        padding: 1.2rem;
    }
}
