/**
 * Calcato Suggestions Component Styles
 * Estilos para o componente de sugestões das calculadoras
 */

/* Estilos do componente de sugestões */
.calcato-suggestion {
    margin: 30px 0;
    padding: 24px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;    
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.calcato-suggestion.show {
    opacity: 1;
    transform: translateY(0);
}

.calcato-suggestion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.calcato-suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calcato-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.calcato-suggestion-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2196F3;
}

.calcato-suggestion-text {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.calcato-suggestion-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calcato-suggestion-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.calcato-suggestion-link:hover {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.calcato-suggestion-link .emoji {
    font-size: 20px;
    flex-shrink: 0;
}

.calcato-suggestion-link span:last-child {
    font-weight: 500;
}

.calcato-suggestion-link small {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    font-weight: normal;
}

/* Responsividade */
@media (max-width: 768px) {
    .calcato-suggestion {
        margin: 20px 0;
        padding: 16px;
    }

    .calcato-suggestion-title {
        font-size: 16px;
    }

    .calcato-suggestion-text {
        font-size: 14px;
    }

    .calcato-suggestion-link {
        padding: 10px 12px;
    }
}

/* Ocultar nas impressões */
@media print {
    .calcato-suggestion {
        display: none !important;
    }
}
