@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f4f4;
}

/* Cabeçalho */
header {
    background: #ed3237;
    color: white;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header img {
    height: 60px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

/* Conteúdo */
.container {
    max-width: 1100px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Busca */
#search {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Tabela */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #000;
    color: white;
}

th, td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
    background: #fbeaea;
}

/* Destaque Ramal */
td.ramal {
    font-weight: bold;
    color: #ed3237;
}

/* Responsivo */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 10px;
    }

    td {
        border: none;
        padding: 8px 0;
    }

    td::before {
        font-weight: bold;
        display: block;
        color: #000;
    }

    td:nth-child(1)::before { content: "Departamento"; }
    td:nth-child(2)::before { content: "Nome"; }
    td:nth-child(3)::before { content: "Ramal"; }
}

/* =========================
   Rodapé Nitro - Premium+
   ========================= */

.footer-nitro {
    margin-top: 50px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #fff;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Marca */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand img {
    height: 42px;
}

.brand-text strong {
    font-size: 16px;
    color: #ed3237;
    font-weight: 600;
}

.brand-text span {
    font-size: 13px;
    opacity: 0.85;
}

/* Ações */
.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

/* Badge segurança */
.security-badge {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #000;
    padding: 14px 20px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

/* Ícone animado */
.zap-icon {
    font-size: 26px;
    animation: zapPulse 1.6s infinite;
}

/* Texto */
.zap-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.zap-text strong {
    font-size: 14px;
    font-weight: 600;
}

.zap-text small {
    font-size: 12px;
    opacity: 0.8;
}

/* Hover */
.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* Animação WhatsApp */
@keyframes zapPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-actions {
        align-items: center;
    }
}
.whatsapp-svg {
    width: 26px;
    height: 26px;
    animation: zapPulse 1.6s infinite;
}

.security-seals {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.seal {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    letter-spacing: 0.5px;
}

