/* Reset básico */
body, h1, h2, p, ul, li, a, button, input, select, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Ajuste do container */
.container {
    width: 90%;
    max-width: 1000px; /* Reduzido de 1200px para 1000px */
    margin: 0 auto;
}

/* Header */
#header {
    background: linear-gradient(90deg, #d63509, #ff5733);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Largura total */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px; /* Largura máxima */
    margin: 0 auto;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Espaçamento entre a logo e o título */
}

.logo {
    max-width: 120px; /* Ajuste o tamanho da logo */
    height: auto;
}

.title-chanel {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    flex-grow: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Bandeiras de tradução */
.altera-lingua-menu {
    display: flex;
    gap: 10px; /* Espaçamento entre as bandeiras */
    align-items: center;
}

.altera-lingua {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.altera-lingua:hover {
    transform: scale(1.1); /* Aumenta levemente no hover */
}

.flag-icon {
    width: 24px; /* Tamanho pequeno da bandeira */
    height: 24px;
    transition: transform 0.2s ease; /* Transição suave no hover */
}

/* Menu */
#navbar {
    background: #1e1e2f;
}

#menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-link:hover {
    color: #ff5733;
    border-bottom: 2px solid #ff5733;
}

.nav-link.item-active {
    color: #ff5733;
    border-bottom: 2px solid #ff5733;
}

/* Conteúdo Principal */
main {
    background: #ffffff;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Rodapé */
#footer {
    background: #1e1e2f;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* Estilo para o aviso de alerta */
.alert-box {
    background-color: #d63509;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    line-height: 1.6;
}

.alert-box p {
    margin: 0;
}

.alert-box strong {
    font-weight: bold;
    text-transform: uppercase;
}

/* Botões gerais */
button, .button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #d63509, #ff5733); /* Gradiente moderno */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Largura mínima para uniformidade */
}

button:hover, .button:hover {
    background: linear-gradient(135deg, #b52a07, #e64a19); /* Gradiente mais escuro no hover */
    transform: translateY(-3px); /* Elevação no hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Sombra mais intensa */
}

button:active, .button:active {
    transform: translateY(0); /* Remove a elevação ao clicar */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); /* Sombra reduzida */
}

/* Botões secundários */
.button--secondary {
    background: linear-gradient(135deg, #333, #555); /* Gradiente cinza */
    color: #ffffff;
}

.button--secondary:hover {
    background: linear-gradient(135deg, #555, #777); /* Gradiente mais claro no hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.button--secondary:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Botão de Política Anticorrupção */
.button--corruption {
    background: linear-gradient(135deg, #8B0000, #DC143C); /* Gradiente vermelho escuro */
    color: #ffffff;
    border: 2px solid #8B0000;
}

.button--corruption:hover {
    background: linear-gradient(135deg, #DC143C, #FF6347); /* Gradiente mais claro no hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.button--corruption:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Botão de Política de Lavagem de Dinheiro */
.button--money-laundering {
    background: linear-gradient(135deg, #1B4F72, #2874A6); /* Gradiente azul escuro */
    color: #ffffff;
    border: 2px solid #1B4F72;
}

.button--money-laundering:hover {
    background: linear-gradient(135deg, #2874A6, #3498DB); /* Gradiente mais claro no hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.button--money-laundering:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Estilos para Política Anticorrupção */
.politica-anticorrupcao .header-section {
    background: linear-gradient(135deg, #8B0000, #B22222);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
}

.politica-anticorrupcao .content-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.politica-anticorrupcao .indice {
    background: #f8f9fa;
    border-left: 5px solid #8B0000;
    padding: 25px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.politica-anticorrupcao .topico {
    margin: 30px 0;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.politica-anticorrupcao .topico:last-child {
    border-bottom: none;
}

.politica-anticorrupcao .topico h2 {
    color: #8B0000;
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 10px;
}

.politica-anticorrupcao .topico h3 {
    color: #333;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.politica-anticorrupcao .warning-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.politica-anticorrupcao .danger-box {
    background: #f8d7da;
    border-left: 5px solid #dc3545;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.politica-anticorrupcao .highlight {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.politica-anticorrupcao .info-box {
    background: #d1ecf1;
    border-left: 5px solid #17a2b8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.politica-anticorrupcao .back-navigation {
    margin: 20px 0;
}

/* Botões específicos da página de registrar incidente */
.registrar-incidente-buttons .button--secondary {
    background: linear-gradient(135deg, #333, #555);
    color: #ffffff;
    border: 2px solid #333;
}

.registrar-incidente-buttons .button--secondary:hover {
    background: linear-gradient(135deg, #555, #777);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Estilo do formulário */
.form-container {
    background: #ffffff;
    padding: 30px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Alinhamento do texto */
.form-container h2 {
    font-size: 1.8rem;
    color: #d63509;
    margin-bottom: 20px;
    text-align: center;
}

.form-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify; /* Justifica o texto para melhor alinhamento */
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
    text-align: left; /* Alinha os rótulos à esquerda */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d63509;
    box-shadow: 0 0 8px rgba(214, 53, 9, 0.3);
    outline: none;
}

.form-group input[type="file"] {
    padding: 5px;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
}

.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #d63509, #b52a07);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background: linear-gradient(135deg, #b52a07, #8e1f05);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Estilo da seção de botões */
/* Ajuste da seção de botões */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaçamento entre os botões */
    margin-top: 20px;
}

/* Estilo da seção de informações */
.info-container {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d63509;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.info-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.info-list {
    list-style: decimal inside;
    margin-bottom: 20px;
    padding-left: 0;
}

.info-list ul {
    list-style: disc inside;
    margin-top: 10px;
    padding-left: 20px;
}

.info-warning, .info-done, .info-important {
    margin-bottom: 20px;
}

.info-warning h3, .info-done h3, .info-important h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d63509;
    margin-bottom: 10px;
}

.info-warning ul, .info-done ul {
    list-style: disc inside;
    padding-left: 20px;
}

.info-important p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Estilo geral da seção de proteção de dados */
.data-protection {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d63509;
    margin-bottom: 20px;
    text-align: center;
}

.content-block {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d63509;
    margin-bottom: 10px;
}

.content-block p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.content-block ul {
    padding-left: 20px;
    list-style: disc;
}

.content-block ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.content-block ul li strong {
    color: #d63509;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .container {
        max-width: 90%; /* Ajusta a largura para telas menores */
    }

    #menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .form-container {
        padding: 20px;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .button {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .button-container {
        flex-direction: column; /* Botões em coluna */
        align-items: center;
        gap: 15px; /* Espaçamento entre os botões */
    }

    .button {
        width: 100%; /* Botões ocupam toda a largura */
        max-width: 300px; /* Largura máxima */
    }
}

@media (max-width: 480px) {
    .title-chanel {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* ==================== CÓDIGO DE ÉTICA - ESTILOS AVANÇADOS ==================== */

.codigo-etica {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.codigo-etica .container {
    max-width: 1200px;
}

.codigo-etica .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d63509;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.codigo-etica .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d63509, #ff5733);
    margin: 20px auto;
    border-radius: 2px;
}

/* Prefácio */
.prefacio {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #d63509;
    position: relative;
    overflow: hidden;
}

.prefacio::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(214, 53, 9, 0.1), transparent);
    border-radius: 0 0 0 100px;
}

.prefacio h2 {
    font-size: 2rem;
    color: #d63509;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prefacio p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.assinatura {
    text-align: right;
    font-weight: 600;
    font-style: italic;
    color: #d63509 !important;
    font-size: 1.2rem !important;
    margin-top: 30px;
}

/* Índice */
.indice {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.indice h2 {
    font-size: 2rem;
    color: #d63509;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.indice-lista {
    list-style: none;
    padding: 0;
}

.indice-lista li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: linear-gradient(90deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    border-left: 4px solid #d63509;
    transition: all 0.3s ease;
    position: relative;
}

.indice-lista li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(214, 53, 9, 0.2);
    background: linear-gradient(90deg, #fff5f3, #ffffff);
}

.indice-lista a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
}

.indice-lista a:hover {
    color: #d63509;
}

.indice-lista .numero {
    display: inline-block;
    background: linear-gradient(135deg, #d63509, #ff5733);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.indice-lista li:hover .numero {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(214, 53, 9, 0.4);
}

/* Seções de conteúdo */
.content-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #d63509, #ff5733);
}

.content-section h2 {
    font-size: 1.8rem;
    color: #d63509;
    margin-bottom: 25px;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #d63509;
    border-radius: 50%;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: 600;
    padding-left: 15px;
    border-left: 3px solid #ff5733;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
    padding-left: 20px;
}

.content-section ul {
    padding-left: 40px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.content-section li strong {
    color: #d63509;
    font-weight: 600;
}

/* Grade de valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding-left: 0;
}

.valor-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.valor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d63509, #ff5733);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(214, 53, 9, 0.15);
    border-color: #d63509;
}

.valor-item:hover::before {
    transform: scaleX(1);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.valor-item:hover .valor-icon {
    filter: grayscale(0);
}

.valor-item h4 {
    color: #d63509;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.valor-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 0;
    text-align: center;
}

/* Seção destacada */
.content-section.highlight {
    background: linear-gradient(135deg, #fff5f3, #ffffff);
    border: 2px solid #d63509;
    box-shadow: 0 15px 40px rgba(214, 53, 9, 0.15);
}

.content-section.highlight::before {
    width: 10px;
    background: linear-gradient(180deg, #d63509, #ff5733, #d63509);
}

.content-section.highlight h2 {
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Ações rápidas */
.acoes-rapidas {
    background: linear-gradient(135deg, #d63509, #ff5733);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(214, 53, 9, 0.3);
    margin-top: 50px;
}

.acoes-rapidas h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.acoes-rapidas .button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.acoes-rapidas .button {
    background: #ffffff;
    color: #d63509;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.acoes-rapidas .button:hover {
    background: #d63509;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.acoes-rapidas .button--secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.acoes-rapidas .button--secondary:hover {
    background: #ffffff;
    color: #d63509;
}

.button--pdf {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    border: 2px solid transparent;
}

.button--pdf:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}

/* Botão voltar ao topo */
.voltar-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d63509, #ff5733);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(214, 53, 9, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.voltar-topo.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.voltar-topo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 53, 9, 0.6);
}

/* Botão flutuante WhatsApp para PDF */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    font-size: 24px;
    margin-bottom: 2px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.whatsapp-text {
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Animação de pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}

/* Tooltip/Aviso moderno para PDF */
.pdf-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 15px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.whatsapp-float:hover .pdf-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-8px);
}

.tooltip-text {
    display: block;
    background: linear-gradient(45deg, #25d366, #128c7e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tooltip-arrow {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #2c3e50;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.tooltip-arrow::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 1px;
    width: 0;
    height: 0;
    border-left: 7px solid #34495e;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

/* Responsividade para botões flutuantes */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon {
        font-size: 20px;
    }
    
    .whatsapp-text {
        font-size: 9px;
    }
    
    .voltar-topo {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

.content-section:nth-child(even) {
    animation-delay: 0.1s;
}

.content-section:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Responsividade para Código de Ética */
@media (max-width: 768px) {
    .codigo-etica .section-title {
        font-size: 2.2rem;
    }
    
    .prefacio, .indice, .content-section, .acoes-rapidas {
        padding: 25px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .codigo-etica .section-title {
        font-size: 1.8rem;
    }
    
    .prefacio, .indice, .content-section, .acoes-rapidas {
        padding: 20px;
    }
    
    .content-section p {
        font-size: 1rem;
        padding-left: 10px;
    }
    
    .indice-lista li {
        padding: 12px 15px;
    }
}