/* ================================================
   AVALIAR ATENDENTES - Fullano Praia
   Mesma identidade visual do style.css principal
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    overflow-x: hidden;
}

body {
    background: #003448;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Outfit", sans-serif;
    padding-top: 3rem;
    padding-bottom: 2rem;
    gap: 1rem;
    min-height: 100vh;
}

/* ================================================
   Se voce usa as fontes customizadas locais,
   descomente os @font-face abaixo e ajuste o caminho
   ================================================ */
/*
@font-face {
    font-family: 'Laviossa-Medium';
    src: url('./fonts/Laviossa-Medium.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Yftoow-R';
    src: url('./fonts/Yftoow-R.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*/

/* ================================================
   LOGO (mesmo estilo do site principal)
   ================================================ */
.my-photo {
    width: 8rem;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    border: 2px solid #f1e8db;
}

/* ================================================
   TITULO E SUBTITULO
   ================================================ */
.tituloft {
    text-align: center;
    color: #ffffff;
    /* Se tiver a fonte Laviossa, troque por: font-family: 'Laviossa-Medium', sans-serif; */
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.slogan {
    text-align: center;
    /* Se tiver a fonte Yftoow, troque por: font-family: 'Yftoow-R', sans-serif; */
    font-family: "Outfit", sans-serif;
    color: #f1e8db;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.85;
}

/* ================================================
   CONTAINER DOS CARDS (grid responsivo)
   - Celular: 2 por linha
   - Tablet: 3 por linha
   - Desktop: 4 por linha
   ================================================ */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    width: 90%;
    max-width: 900px;
    margin-top: 1rem;
}

/* Tablet (a partir de 600px) */
@media (min-width: 600px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (a partir de 900px) */
@media (min-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================
   CARD DO ATENDENTE
   Mesmo estilo dos link-cards do site principal:
   - border-radius: 20px
   - border: 2px solid #f1e8db
   - box-shadow: 8px 10px 0 #011d29
   - background: #003448
   ================================================ */
.card {
    background-color: #003448;
    border: 2px solid #f1e8db;
    border-radius: 20px;
    box-shadow: 8px 10px 0 #011d29;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.8rem;
    gap: 0.7rem;
    transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
    border-color: #ffffff;
    transform: translateY(-4px);
}

/* ================================================
   FOTO DO ATENDENTE (responsiva dentro do card)
   ================================================ */
.foto-atendente {
    width: 80%;
    max-width: 140px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #f1e8db;
}

/* ================================================
   NOME DO ATENDENTE
   ================================================ */
.nome {
    /* Se tiver a fonte Laviossa, troque por: font-family: 'Laviossa-Medium', sans-serif; */
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* ================================================
   ESTRELAS DOURADAS COM ANIMACAO
   Cada estrela cresce e diminui suavemente,
   uma apos a outra, criando um efeito de onda
   ================================================ */
.estrelas {
    display: flex;
    gap: 0.25rem;
}

.estrelas .star-animated {
    font-size: 1.2rem;
    color: #FFD700;
    display: inline-block;
}

/* Animacao de pulso suave */
@keyframes star-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Cada estrela tem um delay diferente pra criar o efeito de onda */
.star-animated:nth-child(1) {
    animation: star-pulse 2s ease-in-out infinite;
    animation-delay: 0s;
}
.star-animated:nth-child(2) {
    animation: star-pulse 2s ease-in-out infinite;
    animation-delay: 0.3s;
}
.star-animated:nth-child(3) {
    animation: star-pulse 2s ease-in-out infinite;
    animation-delay: 0.6s;
}
.star-animated:nth-child(4) {
    animation: star-pulse 2s ease-in-out infinite;
    animation-delay: 0.9s;
}
.star-animated:nth-child(5) {
    animation: star-pulse 2s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* ================================================
   BOTAO "AVALIAR"
   Mesmo estilo do link-card, com cor de destaque
   ================================================ */
.btn-avaliar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background-color: #f1e8db;
    color: #003448;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-avaliar:hover {
    background-color: #ffffff;
    transform: scale(1.03);
}

.btn-avaliar i {
    font-size: 1rem;
}

/* ================================================
   BOTAO VOLTAR
   ================================================ */
.btn-voltar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #003448;
    color: #f1e8db;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #f1e8db;
    border-radius: 20px;
    box-shadow: 8px 10px 0 #011d29;
    transition: border-color 0.3s, transform 0.2s;
}

.btn-voltar:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-voltar i {
    font-size: 1.2rem;
}

/* ================================================
   RODAPE (mesmo do site principal)
   ================================================ */
.copyright {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    /* Se tiver a fonte Yftoow, troque por: font-family: 'Yftoow-R', sans-serif; */
    font-family: "Outfit", sans-serif;
}

.copyright img {
    width: 10rem;
}
