/* Pop-up container */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

/* Pop-up content */
.popup-content {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Logo */
.popup-logo {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 120px;
    width: 100%;
    height: auto;
}

/* Popup text */
.popup-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.popup-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Lista dos atendimentos */
.popup-list {
    list-style: none; /* Remove os pontos */
    padding: 0;
    margin-bottom: 2rem;
    text-align: left; /* Alinha o texto à esquerda */
}

.popup-list li {
    font-size: 1rem;
    color: #333;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    display: flex; /* Flex para adicionar ícones ou elementos no futuro */
    align-items: center;
}

/* Popup buttons */
.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.popup-btn {
    padding: 0.8rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-btn:hover {
    background-color: #0056b3;
    color: white;
}

/* WhatsApp button with icon */
.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1DA851;
}

.popup-btn i {
    margin-right: 0.5rem;
}

/* Responsivo */
@media (max-width: 600px) {
    .popup-content {
        padding: 2rem;
        max-width: 90%;
    }

    .popup-text h2 {
        font-size: 1.5rem;
    }

    .popup-list li {
        font-size: 0.9rem;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
