/**
 * Wizebot Download - Estilos de Frontend
 * Cores principais: Azul #1968f0, Verde #09e37d
 */

/* Container de downloads */
.wizebot-downloads-container {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #1968f0;
}

.wizebot-downloads-title {
    color: #1968f0;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Lista de downloads */
.wizebot-downloads-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wizebot-download-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.wizebot-download-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Botão de download */
.wizebot-download-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1968f0 0%, #09e37d 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(25, 104, 240, 0.2);
}

.wizebot-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 104, 240, 0.3);
    color: white;
}

.wizebot-download-button:active {
    transform: translateY(0);
}

.wizebot-download-icon {
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .wizebot-downloads-container {
        padding: 15px;
    }
    
    .wizebot-download-button {
        display: block;
        text-align: center;
    }
}

/* Notificação de download */
.wizebot-download-notice {
    background-color: #f0f9ff;
    border-left: 4px solid #1968f0;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.wizebot-download-notice p {
    margin: 0;
    color: #333;
}

/* Estilo para a página Minha Conta */
.woocommerce-account .wizebot-downloads-container {
    margin-top: 0;
}

/* Estilo para email */
.wizebot-email-downloads {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
}

.wizebot-email-downloads h3 {
    color: #1968f0;
    margin-top: 0;
    font-size: 16px;
}

.wizebot-email-download-link {
    color: #1968f0;
    text-decoration: underline;
}

.wizebot-email-download-link:hover {
    color: #09e37d;
}
