/* ===========================
   CONFIGURAÇÕES GERAIS
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top,
            rgba(79, 164, 222, 0.75) 0%,
            rgba(45, 112, 180, 0.45) 32%,
            transparent 58%
        ),
        linear-gradient(
            180deg,
            #347fbc 0%,
            #245b9f 50%,
            #173b80 100%
        );
}

/* ===========================
   CABEÇALHO
=========================== */

.header {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 38px 20px 22px;
    text-align: center;
}

.logo img {
    display: block;
    width: 145px;
    height: auto;
    margin: 0 auto 18px;
}

.header h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.header p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   LISTA DE ATENDENTES
=========================== */

.atendentes {
    width: 100%;
    max-width: 880px;
    margin: 20px auto 55px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===========================
   CARTÃO DO ATENDENTE
=========================== */

.card-atendente {
    width: 100%;
    min-height: 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(7, 31, 77, 0.22);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card-atendente:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(7, 31, 77, 0.3);
}

/* ===========================
   FOTO
=========================== */

.foto-atendente {
    width: 155px;
    height: 190px;
    flex-shrink: 0;
    border-radius: 18px;
    border: 4px solid #2456a2;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0 8px 20px rgba(19, 55, 117, 0.22);
    transition: transform 0.25s ease;
}

.card-atendente:hover .foto-atendente {
    transform: scale(1.03);
}

/* ===========================
   INFORMAÇÕES
=========================== */

.dados-atendente {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dados-atendente h2 {
    margin-bottom: 6px;
    font-size: 25px;
    line-height: 1.2;
    color: #142344;
}

.dados-atendente p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #667085;
}

/* ===========================
   BOTÃO DO WHATSAPP
=========================== */

.btn-whatsapp {
    width: 100%;
    max-width: 320px;
    min-height: 50px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: #20bd63;
    border-radius: 13px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(32, 189, 99, 0.24);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btn-whatsapp:hover {
    background: #179d50;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.icone-whatsapp {
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #20bd63;
    background: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

/* ===========================
   RODAPÉ
=========================== */

.footer {
    padding: 5px 20px 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 700px) {

    .header {
        padding-top: 30px;
    }

    .logo img {
        width: 130px;
    }

    .header h1 {
        font-size: 28px;
    }

    .header p {
        font-size: 16px;
    }

    .card-atendente {
        gap: 18px;
    }

    .foto-atendente {
    width: 180px;
    height: 225px;
}

    .dados-atendente h2 {
        font-size: 22px;
    }
}

/* ===========================
   CELULAR
=========================== */

@media (max-width: 520px) {

    .header {
        padding: 26px 18px 15px;
    }

    .logo img {
        width: 115px;
        margin-bottom: 14px;
    }

    .header h1 {
        font-size: 25px;
    }

    .header p {
        font-size: 15px;
        line-height: 1.5;
    }

    .atendentes {
        margin-top: 14px;
        padding: 0 14px;
        gap: 16px;
    }

    .card-atendente {
        min-height: auto;
        padding: 22px 18px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .foto-atendente {
        width: 155px;
        height: 155px;
    }

    .dados-atendente {
        align-items: center;
    }

    .dados-atendente h2 {
        font-size: 23px;
    }

    .dados-atendente p {
        margin-bottom: 16px;
    }

    .btn-whatsapp {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .foto-elias {
        object-position: center 20%;
    }
}